:root {
  --bg: #081219;
  --bg-2: #0e1a22;
  --bg-3: #13232d;
  --surface: #ffffff;
  --surface-2: #f4f8f7;
  --surface-dark: rgba(255, 255, 255, 0.05);
  --text: #11222a;
  --text-soft: #52656d;
  --text-strong: #09161c;
  --text-on-dark: #eef7f5;
  --muted-on-dark: rgba(238, 247, 245, 0.74);
  --line: rgba(17, 34, 42, 0.1);
  --line-soft: rgba(255, 255, 255, 0.1);
  --accent: #39ddb6;
  --accent-2: #78efda;
  --accent-deep: #0d6b59;
  --accent-soft: rgba(57, 221, 182, 0.13);
  --shadow: 0 18px 48px rgba(6, 18, 23, 0.1);
  --shadow-strong: 0 24px 64px rgba(3, 9, 12, 0.22);
  --radius: 22px;
  --radius-sm: 16px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 10px 18px;
  background: var(--accent);
  color: var(--text-strong);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 8px;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: top 0.2s ease, opacity 0.2s ease;
}

.skip-link:focus {
  top: 12px;
  opacity: 1;
  pointer-events: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'DM Sans', "Segoe UI", system-ui, sans-serif;
  font-optical-sizing: auto;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(57, 221, 182, 0.05), transparent 18%),
    linear-gradient(180deg, #edf5f4 0%, #f8fbfb 48%, #f3f7f6 100%);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin-top: 0;
}

ul {
  margin: 0;
  padding: 0;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  border: 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8, 18, 25, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header.scrolled {
  box-shadow: 0 16px 34px rgba(3, 9, 12, 0.24);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 38px;
  flex: 0 0 34px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0;
}

.brand-name {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .nav-toggle span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(3) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-panel {
  display: flex;
  align-items: center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav a {
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.91rem;
  font-weight: 650;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav a.active {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* ── Nav Dropdown ─────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: none;
  color: rgba(255, 255, 255, 0.8);
  font: inherit;
  font-size: 0.91rem;
  font-weight: 650;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav-dropdown__trigger:hover,
.nav-dropdown__trigger.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav-dropdown__arrow {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown__arrow {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 300px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(9, 18, 24, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 48px rgba(3, 9, 12, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  z-index: 50;
}

.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}

.nav-dropdown__menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: rgba(238, 247, 245, 0.82);
  transition: background-color 0.15s ease;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a.active {
  background: rgba(255, 255, 255, 0.06);
}

.nav-dropdown__menu a strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.nav-dropdown__menu a span {
  display: block;
  color: rgba(238, 247, 245, 0.5);
  font-size: 0.8rem;
  font-weight: 500;
}

.nav-cta {
  margin-left: 10px;
  background: rgba(57, 221, 182, 0.12);
  border-color: rgba(57, 221, 182, 0.18) !important;
  color: #dffff7 !important;
}

.nav-cta:hover,
.nav-cta.active {
  background: rgba(57, 221, 182, 0.18) !important;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--text-on-dark);
  background:
    radial-gradient(circle at top right, rgba(57, 221, 182, 0.14), transparent 26%),
    radial-gradient(circle at bottom left, rgba(13, 107, 89, 0.18), transparent 28%),
    linear-gradient(180deg, #081219 0%, #0d1a21 54%, #10212a 100%);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -36% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 221, 182, 0.16) 0%, rgba(57, 221, 182, 0) 68%);
  pointer-events: none;
}

.hero {
  padding: 72px 0 58px;
}

 .page-hero {
  padding: 42px 0 48px;
}

.hero-grid,
.page-hero-grid,
.split-grid {
  display: grid;
  gap: 32px;
}

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

.page-hero-grid,
.split-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.84fr);
  align-items: start;
}

.feature-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 36px;
  align-items: center;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.breadcrumb a:hover {
  color: #fff;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(13, 107, 89, 0.3);
  background: linear-gradient(180deg, #e9faf5 0%, #dbf7ef 100%);
  color: #063f35;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.012em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.hero .eyebrow,
.page-hero .eyebrow,
.section-dark .section-kicker {
  border-color: rgba(57, 221, 182, 0.22);
  background: rgba(57, 221, 182, 0.14);
  color: #c9fff2;
}

.section-kicker {
  margin-bottom: 14px;
}

.hero h1,
.page-hero h1 {
  margin: 16px 0 16px;
  font-size: clamp(2.2rem, 3.6vw, 3.85rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 820px;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 3.45rem);
  max-width: 700px;
}

.hero p,
.page-hero p {
  margin: 0 0 24px;
  max-width: 690px;
  color: var(--muted-on-dark);
  font-size: 1.03rem;
}

.hero-actions,
.inline-actions,
.footer-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.96rem;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #06261e;
  box-shadow: 0 14px 30px rgba(21, 147, 118, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}

.hero-points,
.check-list,
.plain-list,
.link-list,
.footer-links {
  list-style: none;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.hero-points li,
.check-list li,
.plain-list li,
.link-list li {
  position: relative;
  padding-left: 20px;
}

.hero-points li::before,
.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.check-list,
.plain-list {
  display: grid;
  gap: 12px;
}

.hero-panel,
.surface-card,
.feature-card,
.step-card,
.faq-item,
.contact-card,
.preview-card,
.stack-link,
.cta-box {
  border-radius: var(--radius);
}

.hero-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(57, 221, 182, 0.14);
  box-shadow: var(--shadow-strong);
}

.hero-panel h2,
.surface-card h3,
.cta-box h2,
.feature-card h3,
.faq-item h3,
.contact-card h3,
.step-card h3 {
  margin: 0 0 14px;
  line-height: 1.2;
}

.hero-panel h2 {
  font-size: 1.4rem;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.product-shot {
  margin: 0;
  width: 100%;
  max-width: 680px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(89, 224, 190, 0.14);
  background: rgba(10, 18, 28, 0.88);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.product-shot--hero {
  max-width: 720px;
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.feature-copy p {
  max-width: 620px;
}

.preview-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #8beed8;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.preview-card strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  line-height: 1.2;
}

.preview-card small,
.preview-note {
  color: rgba(255, 255, 255, 0.7);
}

.flow-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.flow-track span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(57, 221, 182, 0.1);
  border: 1px solid rgba(57, 221, 182, 0.16);
  color: #a7f5e6;
  font-size: 0.9rem;
  font-weight: 700;
}

.preview-note {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255,255,255,0.05);
}

.preview-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.038);
  border: 1px solid rgba(255,255,255,0.05);
}

.preview-summary strong {
  color: #fff;
  font-size: 0.96rem;
}

.preview-summary small {
  color: rgba(255,255,255,0.66);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(57, 221, 182, 0.12);
  border: 1px solid rgba(57, 221, 182, 0.16);
  color: #a7f5e6;
  font-size: 0.77rem;
  font-weight: 700;
  white-space: nowrap;
}


.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  background: rgba(8, 18, 25, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px 0;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(238, 247, 245, 0.86);
  font-size: 0.9rem;
  font-weight: 650;
}

.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(57, 221, 182, 0.12);
}

.modules-band {
  position: relative;
  overflow: hidden;
  padding: 38px 0 56px;
  color: var(--text-on-dark);
  background:
    radial-gradient(circle at top left, rgba(57, 221, 182, 0.14), transparent 22%),
    radial-gradient(circle at bottom right, rgba(13, 107, 89, 0.18), transparent 26%),
    linear-gradient(180deg, #09131a 0%, #0e1b22 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.modules-band .section-kicker {
  margin-bottom: 14px;
  border-color: rgba(57, 221, 182, 0.22);
  background: rgba(57, 221, 182, 0.14);
  color: #c9fff2;
}

.modules-band__intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.modules-band__intro h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.9rem, 2.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.modules-band__intro p,
.modules-band__hint {
  margin: 0;
  color: rgba(238, 247, 245, 0.74);
}

.modules-ticker {
  position: relative;
}

.modules-ticker__viewport {
  position: relative;
  overflow: hidden;
  padding: 8px 0 14px;
  cursor: grab;
  touch-action: pan-y;
}

.modules-ticker__viewport.is-dragging {
  cursor: grabbing;
}

.modules-ticker__viewport::before,
.modules-ticker__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 74px;
  z-index: 2;
  pointer-events: none;
}

.modules-ticker__viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(9, 19, 26, 1) 0%, rgba(9, 19, 26, 0) 100%);
}

.modules-ticker__viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(9, 19, 26, 1) 0%, rgba(9, 19, 26, 0) 100%);
}

.modules-ticker__track,
.modules-ticker__group {
  display: flex;
  width: max-content;
}

.modules-ticker__track {
  gap: 18px;
  will-change: transform;
}

.modules-ticker__group {
  gap: 18px;
}

/* --- Module card base --- */
.module-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  flex: 0 0 clamp(220px, 22vw, 276px);
  min-height: 232px;
  padding: 26px 24px;
  border-radius: 24px;
  background: linear-gradient(168deg, rgba(255,255,255,0.97) 0%, #f0f9f6 100%);
  border: 1px solid rgba(17, 34, 42, 0.08);
  box-shadow: 0 14px 34px rgba(3, 9, 12, 0.12);
  color: var(--text);
  outline: none;
  overflow: hidden;
  transition: transform 0.38s cubic-bezier(.22,.61,.36,1),
              box-shadow 0.38s cubic-bezier(.22,.61,.36,1),
              border-color 0.38s ease;
}

.module-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  opacity: 0;
  background: radial-gradient(ellipse at 30% 15%, rgba(57,221,182,0.12), transparent 65%);
  transition: opacity 0.38s ease;
  pointer-events: none;
}

.module-card__num {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(13, 107, 89, 0.48);
  background: linear-gradient(135deg, rgba(57, 221, 182, 0.16) 0%, rgba(57, 221, 182, 0.06) 100%);
  border: 1px solid rgba(57, 221, 182, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.module-card:hover {
  transform: translateY(-7px) scale(1.025);
  box-shadow:
    0 24px 56px rgba(3, 9, 12, 0.20),
    0 0 0 1px rgba(57,221,182,0.22),
    0 0 32px rgba(57,221,182,0.08);
  border-color: rgba(57,221,182,0.32);
}

.module-card:hover::before { opacity: 1; }
.module-card:hover .module-card__num {
  color: rgba(13, 107, 89, 0.68);
  background: linear-gradient(135deg, rgba(57, 221, 182, 0.24) 0%, rgba(57, 221, 182, 0.10) 100%);
  border-color: rgba(57, 221, 182, 0.28);
  transform: translateY(-1px);
}

.module-card:focus-visible {
  border-color: rgba(57, 221, 182, 0.4);
  box-shadow: 0 0 0 3px rgba(57, 221, 182, 0.18), 0 14px 34px rgba(3, 9, 12, 0.12);
}

.module-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(57, 221, 182, 0.12);
  border: 1px solid rgba(13, 107, 89, 0.12);
  color: var(--accent-deep);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.module-card:hover .module-card__icon {
  background: linear-gradient(135deg, rgba(57,221,182,0.22) 0%, rgba(13,107,89,0.14) 100%);
  border-color: rgba(13, 107, 89, 0.22);
  transform: scale(1.08);
}

.module-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.module-card h3 {
  margin: 18px 0 10px;
  color: var(--text-strong);
  font-size: 1.08rem;
  line-height: 1.15;
}

.module-card p {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.52;
}

/* --- Tags por categoría --- */
.module-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  margin-top: auto;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module-card:hover .module-card__tag {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.module-card__tag--pos       { background: rgba(57,221,182,0.15); border: 1px solid rgba(13,107,89,0.18); color: #0a4f42; }
.module-card__tag--comercial { background: rgba(59,130,246,0.12); border: 1px solid rgba(37,99,235,0.18); color: #1e40af; }
.module-card__tag--inventario{ background: rgba(245,158,11,0.12); border: 1px solid rgba(217,119,6,0.18); color: #92400e; }
.module-card__tag--crm       { background: rgba(139,92,246,0.12); border: 1px solid rgba(124,58,237,0.18); color: #5b21b6; }
.module-card__tag--cobranza  { background: rgba(236,72,153,0.12); border: 1px solid rgba(219,39,119,0.18); color: #9d174d; }
.module-card__tag--fiscal    { background: rgba(20,184,166,0.12); border: 1px solid rgba(13,148,136,0.18); color: #115e59; }
.module-card__tag--compras   { background: rgba(249,115,22,0.12); border: 1px solid rgba(234,88,12,0.18); color: #9a3412; }
.module-card__tag--analisis  { background: rgba(99,102,241,0.12); border: 1px solid rgba(79,70,229,0.18); color: #3730a3; }

.module-card__tag:not([class*="--"]) {
  background: rgba(57,221,182,0.13);
  border: 1px solid rgba(13,107,89,0.16);
  color: #0a4f42;
}

/* --- Nav arrows --- */
.modules-nav {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.modules-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
  backdrop-filter: blur(6px);
}

.modules-nav__btn:hover {
  background: rgba(57,221,182,0.16);
  border-color: rgba(57,221,182,0.32);
  color: #fff;
  transform: scale(1.08);
}

.modules-nav__btn:active { transform: scale(0.95); }

.modules-nav__btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Progress dots --- */
.modules-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 20px;
}

.modules-dots__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}

.modules-dots__dot.is-active {
  width: 22px;
  border-radius: 4px;
  background: rgba(57,221,182,0.6);
}

.modules-dots__dot:hover:not(.is-active) {
  background: rgba(255,255,255,0.32);
  transform: scale(1.2);
}

/* --- Footer --- */
.modules-band__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.modules-band__hint {
  max-width: 740px;
  font-size: 0.95rem;
}

.section {
  padding: 76px 0;
}

.section-dark {
  color: var(--text-on-dark);
  background:
    radial-gradient(circle at top right, rgba(57, 221, 182, 0.08), transparent 18%),
    linear-gradient(180deg, #0a151b 0%, #0e1b22 100%);
}

.section h2 {
  margin: 0 0 16px;
  color: var(--text-strong);
  font-size: clamp(1.9rem, 2.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark li,
.section-dark a {
  color: var(--text-on-dark);
}

.section-lead {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--text-soft);
  font-size: 1.04rem;
}

.section-dark .section-lead {
  color: var(--muted-on-dark);
}

.feature-grid,
.faq-grid,
.contact-grid,
.steps-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.contact-form-layout {
  align-items: start;
}

.contact-form-shell {
  width: min(820px, 100%);
}

.feature-card,
.contact-card,
.faq-item,
.step-card,
.surface-card,
.stack-link {
  background: var(--surface);
  border: 1px solid rgba(17, 34, 42, 0.07);
  box-shadow: 0 2px 6px rgba(6, 18, 23, 0.05), 0 14px 40px rgba(6, 18, 23, 0.1);
}

.feature-card,
.contact-card,
.faq-item,
.step-card {
  padding: 24px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.contact-card:hover,
.faq-item:hover {
  border-color: rgba(57, 221, 182, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(6, 18, 23, 0.05), 0 20px 48px rgba(6, 18, 23, 0.12), 0 0 0 1px rgba(57, 221, 182, 0.06);
}

.surface-card {
  padding: 28px;
}

.contact-form-card,
.contact-form-side {
  display: grid;
  gap: 18px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-strong);
}

.form-input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid rgba(17, 34, 42, 0.12);
  background: #fff;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-input:focus {
  border-color: rgba(57, 221, 182, 0.55);
  box-shadow: 0 0 0 4px rgba(57, 221, 182, 0.12);
}

.form-input.is-invalid {
  border-color: rgba(216, 77, 77, 0.45);
  box-shadow: 0 0 0 4px rgba(216, 77, 77, 0.08);
}

.form-textarea {
  min-height: 160px;
  padding: 14px;
  resize: vertical;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-note,
.form-error {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.form-error {
  color: #bf3b3b;
}

.form-alert {
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  animation: form-alert-in 0.34s ease;
}

.form-alert-success {
  background: rgba(57, 221, 182, 0.12);
  border-color: rgba(57, 221, 182, 0.2);
  color: #0b5a4b;
}

.form-alert-error {
  background: rgba(216, 77, 77, 0.1);
  border-color: rgba(216, 77, 77, 0.18);
  color: #9f2e2e;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-shell {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.turnstile-shell.has-error .cf-turnstile {
  outline: 2px solid rgba(216, 77, 77, 0.18);
  border-radius: 12px;
}

.contact-submit {
  position: relative;
  min-width: 210px;
  gap: 10px;
}

.contact-submit__spinner {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(6, 38, 30, 0.18);
  border-top-color: rgba(6, 38, 30, 0.82);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.contact-submit.is-loading {
  pointer-events: none;
  opacity: 0.92;
}

.contact-submit.is-loading .contact-submit__spinner {
  opacity: 1;
  transform: scale(1);
  animation: button-spin 0.8s linear infinite;
}

.contact-form.is-submitting {
  opacity: 0.88;
}

.contact-form.is-submitting .form-input,
.contact-form.is-submitting .form-textarea {
  background: rgba(244, 249, 247, 0.95);
}

.contact-form-card.is-submitting {
  box-shadow: 0 2px 6px rgba(6, 18, 23, 0.05), 0 18px 40px rgba(6, 18, 23, 0.08), 0 0 0 1px rgba(57, 221, 182, 0.08);
}

@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes form-alert-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-number {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-deep);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.section-dark .surface-card,
.section-dark .step-card {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.link-stack {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.stack-link {
  display: block;
  padding: 20px 22px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.stack-link:hover {
  transform: translateY(-2px);
  border-color: rgba(57, 221, 182, 0.32);
  box-shadow: 0 6px 24px rgba(57, 221, 182, 0.08), 0 2px 8px rgba(6, 18, 23, 0.06);
}

.stack-link strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-strong);
}

.stack-link span {
  color: var(--text-soft);
}

.link-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.link-list a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(57, 221, 182, 0.48);
  text-underline-offset: 3px;
}

.cta-box {
  padding: 38px;
  background: linear-gradient(140deg, #091820 0%, #0c2018 100%);
  border: 1px solid rgba(57, 221, 182, 0.18);
  color: var(--text-on-dark);
  box-shadow: 0 24px 64px rgba(3, 9, 12, 0.22);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -70px;
  right: -70px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(57, 221, 182, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2,
.cta-box h3 {
  color: #fff;
}

.cta-box p {
  margin-bottom: 22px;
  color: var(--muted-on-dark);
}

.contact-link {
  display: inline-block;
  max-width: 100%;
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--text-strong);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-card p,
.form-note,
.form-error,
.check-list li,
.plain-list li {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.muted {
  color: var(--text-soft);
}

.site-footer {
  color: var(--text-on-dark);
  background:
    radial-gradient(circle at top right, rgba(57, 221, 182, 0.08), transparent 18%),
    linear-gradient(180deg, #081219 0%, #0a151b 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(160px, 1fr));
  gap: 22px;
  padding: 46px 0 28px;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.footer-brand-lockup img {
  width: 30px;
  height: 34px;
  object-fit: contain;
}

.footer-copy {
  max-width: 380px;
  margin-bottom: 18px;
  color: rgba(238, 247, 245, 0.72);
}

.footer-cta-row a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #fff;
  font-weight: 600;
}

.footer-cta-row a:first-child {
  background: rgba(57, 221, 182, 0.12);
  border-color: rgba(57, 221, 182, 0.22);
  color: #d8fff6;
}

.footer-whatsapp {
  background: rgba(255, 255, 255, 0.04);
}

.footer-title {
  display: block;
  margin-bottom: 14px;
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(238, 247, 245, 0.72);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(238, 247, 245, 0.6);
  font-size: 0.94rem;
}

 .page-hero-contact .page-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: center;
}

.page-hero-contact h1 {
  max-width: 12ch;
}

.page-hero-contact p {
  max-width: 58ch;
}

.page-hero-contact .hero-panel {
  max-width: 420px;
  width: 100%;
  justify-self: end;
  padding: 24px;
}

@media (max-width: 1100px) {
  .feature-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .feature-showcase,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-copy {
    max-width: none;
  }

  .trust-items {
    gap: 10px;
  }

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

  .product-shot,
  .product-shot--hero {
    max-width: 860px;
  }
}

@media (max-width: 860px) {
  .page-hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .page-contacto .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-contacto .page-hero-contact .hero-panel {
    max-width: none;
    justify-self: stretch;
  }

  .page-contacto .contact-form-shell {
    width: 100%;
  }
}

@media (max-width: 920px) {
  .header-inner {
    min-height: 64px;
  }

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

  .nav-panel {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    z-index: 39;
    padding: 0 16px 20px;
    display: none;
  }

  body.nav-open .nav-panel {
    display: block;
  }

  .nav {
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(9, 18, 24, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-strong);
  }

  .nav a,
  .nav-cta,
  .nav-dropdown__trigger {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px;
  }

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

  .nav-dropdown {
    position: static;
  }

  .nav-dropdown__menu {
    position: static;
    transform: none;
    width: 100%;
    padding: 4px 0 4px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: none;
    backdrop-filter: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, max-height 0.3s ease, visibility 0s linear 0.3s;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 400px;
    transform: none;
    transition: opacity 0.2s ease, max-height 0.3s ease, visibility 0s linear 0s;
  }

  .hero {
    padding: 60px 0 54px;
  }

  .page-hero {
    padding: 34px 0 40px;
  }

  .page-hero-contact .hero-panel {
    max-width: none;
    justify-self: stretch;
  }

  .page-contacto .form-actions {
    align-items: stretch;
  }

  .page-contacto .contact-submit {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .page-contacto .form-note {
    width: 100%;
  }

  .page-contacto .form-field-footer {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .page-contacto .form-char-counter {
    margin-left: 0;
  }

  .product-body,
  .faq-grid,
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .preview-summary {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

}

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

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  .section {
    padding: 58px 0;
  }

  .feature-grid,
  .steps-grid,
  .faq-grid,
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .contact-card,
  .faq-item,
  .step-card,
  .surface-card,
  .hero-panel {
    padding: 22px;
  }

  .btn {
    width: 100%;
  }

  .page-contacto .page-hero-contact h1 {
    max-width: none;
  }

  .page-contacto .contact-card,
  .page-contacto .surface-card,
  .page-contacto .hero-panel {
    overflow: hidden;
  }

  .page-contacto .form-field--float .form-label {
    white-space: normal;
    max-width: calc(100% - 28px);
    line-height: 1.2;
  }

  .page-contacto .form-field-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-contacto .form-char-counter {
    margin-left: 0;
  }

  .hero-actions,
  .inline-actions,
  .footer-cta-row,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .flow-track {
    grid-template-columns: 1fr;
  }

  .trust-item {
    width: 100%;
    justify-content: flex-start;
  }

  .modules-band {
    padding: 34px 0 48px;
  }

  .modules-ticker__viewport::before,
  .modules-ticker__viewport::after {
    width: 44px;
  }
}

@media (max-width: 820px) {
  .module-card {
    flex-basis: 250px;
    min-height: 214px;
  }

  .modules-band__footer {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .modules-band__intro {
    margin-bottom: 22px;
  }

  .module-card {
    flex-basis: 78vw;
    max-width: 280px;
    padding: 20px;
  }

  .modules-band__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .modules-band__footer .btn {
    width: 100%;
  }
}


@media (max-width: 640px) {
  .cta-box {
    padding: 26px 22px;
  }
}

.story-carousel {
  margin-top: 26px;
}

.story-carousel__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.story-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(17, 34, 42, 0.12);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: visible;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.story-dot__label {
  position: relative;
  z-index: 1;
}

.story-dot__contour {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.story-dot__contour svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.story-dot__contour-value {
  fill: none;
  stroke: #39ddb6;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 5px rgba(57, 221, 182, 0.34));
}

.story-dot__contour-head-image {
  filter: drop-shadow(0 0 4px rgba(57, 221, 182, 0.28));
}

.story-dot.is-active {
  border-color: transparent;
  background: rgba(226, 248, 243, 0.96);
  color: #063f35;
  box-shadow: inset 0 0 0 1px rgba(57, 221, 182, 0.12);
}

.story-dot.is-active .story-dot__contour {
  opacity: 1;
}

.story-dot.is-popping {
  animation: story-dot-pop 0.48s cubic-bezier(0.2, 0.9, 0.25, 1);
}

/* Respeta preferencia de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  .story-dot {
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }

  .story-dot.is-popping {
    animation: none;
  }
}

.story-dot:hover {
  transform: translateY(-1px);
}

@keyframes story-dot-pop {
  0% {
    transform: translateY(0) scale(1);
  }
  34% {
    transform: translateY(-5px) scale(1.04);
  }
  62% {
    transform: translateY(1px) scale(0.99);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.story-carousel__viewport {
  position: relative;
  display: grid;
  align-items: start;
}

.story-slide {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 30px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(17, 34, 42, 0.07);
  box-shadow: 0 2px 6px rgba(6, 18, 23, 0.04), 0 18px 52px rgba(6, 18, 23, 0.11);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 10px, 0) scale(0.996);
  transform-origin: center center;
  will-change: opacity, transform;
  transition:
    opacity 0.34s ease,
    transform 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.46s;
}

.story-slide.is-active,
.story-slide.is-leaving {
  visibility: visible;
  transition:
    opacity 0.34s ease,
    transform 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

.story-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  z-index: 2;
}

.story-slide.is-leaving {
  opacity: 0;
  transform: translate3d(0, -4px, 0) scale(0.998);
  z-index: 1;
}

.story-slide__copy,
.story-slide__media {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  will-change: opacity, transform;
  transition:
    opacity 0.34s ease,
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-slide.is-active .story-slide__copy,
.story-slide.is-active .story-slide__media {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.story-slide.is-active .story-slide__copy {
  transition-delay: 0.04s;
}

.story-slide.is-active .story-slide__media {
  transition-delay: 0.1s;
}

.story-slide.is-leaving .story-slide__copy {
  opacity: 0;
  transform: translate3d(0, -2px, 0);
  transition-delay: 0s;
}

.story-slide.is-leaving .story-slide__media {
  opacity: 0;
  transform: translate3d(0, -2px, 0) scale(0.998);
  transition-delay: 0s;
}

@media (prefers-reduced-motion: reduce) {
  .story-slide,
  .story-slide__copy,
  .story-slide__media {
    transition: none;
    transform: none;
  }
}

.story-slide__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(57, 221, 182, 0.12);
  border: 1px solid rgba(13, 107, 89, 0.18);
  color: #0a4f42;
  font-size: 0.82rem;
  font-weight: 800;
}

.story-slide__copy h3 {
  margin: 14px 0 14px;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.1;
  color: var(--text-strong);
}

.story-slide__copy p {
  margin-bottom: 18px;
  color: var(--text-soft);
}

.story-slide__media {
  max-width: 760px;
  justify-self: end;
  background: #f9fcfb;
  border-color: rgba(17, 34, 42, 0.08);
  box-shadow: 0 20px 46px rgba(6, 18, 23, 0.12);
}

.story-slide__media img {
  background: #fff;
}

@media (max-width: 980px) {
  .story-slide {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .story-slide__media {
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .story-dot {
    width: 100%;
    justify-content: flex-start;
  }

  .story-slide {
    gap: 20px;
    padding: 18px;
  }
}

/* ── WhatsApp flotante ────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 0 16px;
  height: 52px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
}

.whatsapp-fab.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.whatsapp-fab:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.15);
}

.whatsapp-fab__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.whatsapp-fab__icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.whatsapp-fab__label {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .whatsapp-fab {
    bottom: 16px;
    right: 16px;
    padding: 0 14px;
    height: 48px;
    font-size: 0.85rem;
  }
}

/* ══════════════════════════════════════════════
   FLOATING LABELS
   ══════════════════════════════════════════════ */

.form-field--float {
  position: relative;
  display: block;
}

/* The floating label sits inside the input area */
.form-field--float .form-label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-soft);
  pointer-events: none;
  transform-origin: left center;
  transition:
    top 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    font-size 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.22s ease;
  white-space: nowrap;
  z-index: 1;
}

/* Textarea: label starts higher */
.form-field--textarea .form-label {
  top: 22px;
  transform: translateY(0);
}

/* Floated state: input focused OR has value */
.form-field--float .form-input:focus ~ .form-label,
.form-field--float .form-input:not(:placeholder-shown) ~ .form-label,
.form-field--float.has-value .form-label {
  top: 0;
  transform: translateY(-50%) scale(0.82);
  color: var(--accent-deep);
  font-weight: 700;
}

/* Textarea floated state */
.form-field--textarea .form-input:focus ~ .form-label,
.form-field--textarea .form-input:not(:placeholder-shown) ~ .form-label,
.form-field--textarea.has-value .form-label {
  top: 0;
  transform: translateY(-50%) scale(0.82);
  color: var(--accent-deep);
}

/* Error state label color */
.form-field--float.has-error .form-label {
  color: #bf3b3b;
}

/* Inputs need top padding to make room for the floated label */
.form-field--float .form-input {
  padding-top: 16px;
  padding-bottom: 4px;
}

/* Textarea top padding */
.form-field--float.form-field--textarea .form-input {
  padding-top: 22px;
}

/* Required asterisk */
.form-required {
  color: var(--accent-deep);
  font-size: 0.9em;
}

/* Field footer: error + char counter side by side */
.form-field-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 20px;
}

/* Character counter */
.form-char-counter {
  flex-shrink: 0;
  font-size: 0.82rem;
  color: var(--text-soft);
  transition: color 0.2s ease;
  margin-left: auto;
}

.form-char-counter.is-warn {
  color: #c47a00;
  font-weight: 700;
}

.form-char-counter.is-limit {
  color: #bf3b3b;
  font-weight: 700;
}

/* ── Success panel ─────────────────────────── */
.form-success-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px 32px;
  gap: 16px;
  animation: success-panel-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes success-panel-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.form-success-icon {
  width: 72px;
  height: 72px;
  color: var(--accent-deep);
}

.form-success-icon__circle {
  stroke-dasharray: 132;
  stroke-dashoffset: 132;
  animation: draw-circle 0.6s ease 0.1s forwards;
}

.form-success-icon__check {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: draw-check 0.4s ease 0.65s forwards;
}

@keyframes draw-circle {
  to { stroke-dashoffset: 0; }
}

@keyframes draw-check {
  to { stroke-dashoffset: 0; }
}

.form-success-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-strong);
  margin: 0;
  letter-spacing: -0.02em;
}

.form-success-text {
  color: var(--text-soft);
  font-size: 1rem;
  max-width: 440px;
  margin: 0;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   PRICING SECTION
   ══════════════════════════════════════════════ */

.pricing-intro {
  max-width: 760px;
  margin-bottom: 32px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  border-color: rgba(57, 221, 182, 0.24);
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(3, 9, 12, 0.18);
}

.pricing-card--featured {
  background: linear-gradient(180deg, rgba(57, 221, 182, 0.1) 0%, rgba(57, 221, 182, 0.03) 100%);
  border-color: rgba(57, 221, 182, 0.24);
  box-shadow: 0 0 0 1px rgba(57, 221, 182, 0.06), 0 18px 48px rgba(3, 9, 12, 0.16);
}

.pricing-card--featured:hover {
  border-color: rgba(57, 221, 182, 0.38);
  box-shadow: 0 0 0 1px rgba(57, 221, 182, 0.1), 0 24px 56px rgba(3, 9, 12, 0.22);
}

.pricing-card__highlight {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #06261e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(57, 221, 182, 0.3);
}

.pricing-card__header {
  margin-bottom: 20px;
}

.pricing-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(57, 221, 182, 0.12);
  border: 1px solid rgba(57, 221, 182, 0.18);
  color: #a7f5e6;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.pricing-card__header h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.15;
}

.pricing-card__tagline {
  margin: 0;
  color: rgba(238, 247, 245, 0.68);
  font-size: 0.92rem;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-card__amount {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-card--featured .pricing-card__amount {
  color: var(--accent-2);
}

.pricing-card__period {
  color: rgba(238, 247, 245, 0.6);
  font-size: 0.95rem;
  font-weight: 600;
}

.pricing-card__features {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  flex: 1;
}

.pricing-card__features li {
  position: relative;
  padding-left: 22px;
  color: rgba(238, 247, 245, 0.82);
  font-size: 0.93rem;
  line-height: 1.5;
}

.pricing-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(57, 221, 182, 0.22);
  border: 2px solid var(--accent);
}

.pricing-card__btn {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  margin: 24px 0 0;
  color: rgba(238, 247, 245, 0.6);
  font-size: 0.92rem;
  text-align: center;
}

.pricing-note a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(57, 221, 182, 0.4);
  text-underline-offset: 3px;
}

.pricing-note a:hover {
  color: var(--accent-2);
}

/* Stagger pricing cards in reveal */
[data-reveal].is-revealed .pricing-card:nth-child(1) { transition-delay: 0.05s; }
[data-reveal].is-revealed .pricing-card:nth-child(2) { transition-delay: 0.12s; }
[data-reveal].is-revealed .pricing-card:nth-child(3) { transition-delay: 0.19s; }

@media (max-width: 920px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .pricing-card--featured {
    order: -1;
  }
}

@media (max-width: 640px) {
  .pricing-card {
    padding: 24px;
  }

  .pricing-note {
    text-align: left;
  }
}

/* ══════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════ */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.62s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Staggered children inside revealed sections */
[data-reveal].is-revealed .feature-card:nth-child(1),
[data-reveal].is-revealed .step-card:nth-child(1),
[data-reveal].is-revealed .faq-item:nth-child(1),
[data-reveal].is-revealed .contact-card:nth-child(1) {
  transition-delay: 0.05s;
}

[data-reveal].is-revealed .feature-card:nth-child(2),
[data-reveal].is-revealed .step-card:nth-child(2),
[data-reveal].is-revealed .faq-item:nth-child(2),
[data-reveal].is-revealed .contact-card:nth-child(2) {
  transition-delay: 0.1s;
}

[data-reveal].is-revealed .feature-card:nth-child(3),
[data-reveal].is-revealed .step-card:nth-child(3),
[data-reveal].is-revealed .faq-item:nth-child(3),
[data-reveal].is-revealed .contact-card:nth-child(3) {
  transition-delay: 0.15s;
}

[data-reveal].is-revealed .feature-card:nth-child(4),
[data-reveal].is-revealed .step-card:nth-child(4),
[data-reveal].is-revealed .faq-item:nth-child(4),
[data-reveal].is-revealed .contact-card:nth-child(4) {
  transition-delay: 0.2s;
}

/* No reveal animation if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ══════════════════════════════════════════════
   HERO STAGGER ENTRANCE
   ══════════════════════════════════════════════ */

.hero-stagger {
  opacity: 0;
  transform: translateY(20px);
  animation: hero-stagger-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-stagger--1 { animation-delay: 0.05s; }
.hero-stagger--2 { animation-delay: 0.18s; }
.hero-stagger--3 { animation-delay: 0.3s;  }
.hero-stagger--4 { animation-delay: 0.42s; }
.hero-stagger--5 { animation-delay: 0.52s; }

@keyframes hero-stagger-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stagger {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ── Skip to content ──────────────────────── */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 10px 18px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  background: var(--accent);
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: top 0.18s ease;
  outline: none;
}

.skip-link:focus {
  top: 0;
}

/* ── data-reveal: GPU compositing ─────────── */
[data-reveal] {
  will-change: opacity, transform;
}

[data-reveal].is-revealed {
  will-change: auto;
}

/* ── Stagger for module-cards inside reveal ─ */
[data-reveal].is-revealed .module-card:nth-child(1) { transition-delay: 0.04s; }
[data-reveal].is-revealed .module-card:nth-child(2) { transition-delay: 0.08s; }
[data-reveal].is-revealed .module-card:nth-child(3) { transition-delay: 0.12s; }
[data-reveal].is-revealed .module-card:nth-child(4) { transition-delay: 0.16s; }

/* Home trust pass */
.hero-media--product {
  position: relative;
  display: grid;
  justify-items: end;
  gap: 14px;
}

.hero-media-caption {
  width: min(430px, 92%);
  margin-right: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(57, 221, 182, 0.18);
  border-radius: 16px;
  background: rgba(8, 18, 25, 0.78);
  color: var(--text-on-dark);
  box-shadow: 0 18px 40px rgba(3, 9, 12, 0.22);
}

.hero-media-caption strong,
.hero-media-caption span {
  display: block;
}

.hero-media-caption strong {
  font-size: 0.86rem;
}

.hero-media-caption span {
  color: var(--muted-on-dark);
  font-size: 0.84rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(57, 221, 182, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(238, 247, 245, 0.84);
  font-size: 0.78rem;
  font-weight: 800;
}

.operation-proof {
  padding: 28px 0;
  background: #f8fbfb;
  border-bottom: 1px solid rgba(17, 34, 42, 0.08);
}

.operation-proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: center;
}

.operation-proof h2 {
  margin: 0;
  max-width: 520px;
  color: var(--text-strong);
  font-size: 1.65rem;
  line-height: 1.12;
}

.operation-proof__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.operation-proof__items article {
  padding: 16px;
  border: 1px solid rgba(17, 34, 42, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(6, 18, 23, 0.07);
}

.operation-proof__items strong,
.operation-proof__items span {
  display: block;
}

.operation-proof__items strong {
  margin-bottom: 6px;
  color: var(--text-strong);
  font-size: 0.94rem;
}

.operation-proof__items span {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

@media (max-width: 920px) {
  .hero-media--product {
    justify-items: center;
  }

  .hero-media-caption {
    margin-right: 0;
  }

  .operation-proof__grid,
  .operation-proof__items {
    grid-template-columns: 1fr;
  }
}

/* 2026 home redesign: editorial operating system */
:root {
  --brand: #45e0ae;
  --brand-strong: #20bd8a;
  --brand-deep: #0f6d55;
  --ink: #101916;
  --ink-soft: #17231f;
  --paper: #f2efe6;
  --paper-light: #fbf9f3;
  --line: rgba(16, 25, 22, 0.16);
  --text-strong: #101916;
  --text-soft: #54605b;
  --text-on-dark: #f8f5ec;
  --muted-on-dark: rgba(248, 245, 236, 0.68);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--text-strong);
  font-family: "Manrope", Arial, sans-serif;
}

h1,
h2,
h3,
.brand-name,
.nav-link,
.button,
.eyebrow {
  font-family: "Bricolage Grotesque", "Manrope", Arial, sans-serif;
}

::selection {
  background: var(--brand);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 4px;
}

.site-header {
  border-bottom: 1px solid rgba(16, 25, 22, 0.12);
  background: rgba(242, 239, 230, 0.92);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.site-header .brand-name,
.site-header .nav a,
.site-header .nav-dropdown__trigger {
  color: var(--ink);
}

.site-header .nav a:hover,
.site-header .nav a.active,
.site-header .nav-dropdown__trigger:hover,
.site-header .nav-dropdown__trigger.active {
  border-color: rgba(16, 25, 22, 0.12);
  background: rgba(16, 25, 22, 0.06);
  color: var(--ink);
}

.site-header .nav-cta {
  border-color: var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper-light);
  box-shadow: none;
}

.site-header .nav-cta:hover {
  border-color: var(--brand-strong);
  background: var(--brand);
  color: var(--ink);
  transform: translateY(-2px);
}

.site-header .nav-toggle {
  border-color: rgba(16, 25, 22, 0.14);
  background: rgba(16, 25, 22, 0.04);
}

.site-header .nav-toggle span:not(.sr-only) {
  background: var(--ink);
}

.button,
.btn {
  min-height: 48px;
  border-radius: 8px;
  font-family: "Bricolage Grotesque", "Manrope", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: none;
}

.button-primary,
.btn-primary {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--ink);
}

.button-primary:hover,
.btn-primary:hover {
  border-color: #76ecc8;
  background: #76ecc8;
  color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 12px 0 rgba(69, 224, 174, 0.16);
}

.button-secondary,
.btn-secondary {
  border-color: rgba(248, 245, 236, 0.42);
  background: transparent;
  color: var(--text-on-dark);
}

.button-secondary:hover,
.btn-secondary:hover {
  border-color: var(--text-on-dark);
  background: var(--text-on-dark);
  color: var(--ink);
}

.hero-home {
  position: relative;
  min-height: calc(100vh - 72px);
  padding: clamp(78px, 9vw, 138px) 0 32px;
  overflow: hidden;
  background:
    linear-gradient(rgba(248, 245, 236, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 245, 236, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 83% 18%, rgba(69, 224, 174, 0.15), transparent 31%),
    var(--ink);
  background-size: 42px 42px, 42px 42px, auto, auto;
  color: var(--text-on-dark);
}

.hero-home::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% + 76px);
  width: 1px;
  background: rgba(248, 245, 236, 0.1);
}

.hero-home .hero-grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.16fr);
  gap: clamp(42px, 6vw, 94px);
  align-items: center;
}

.hero-home .hero-copy {
  max-width: 670px;
}

.hero-index {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--muted-on-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-index span:first-child {
  color: var(--brand);
}

.hero-index::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--brand);
}

.hero-home .eyebrow {
  margin-bottom: 18px;
  color: var(--brand);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.hero-home h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--text-on-dark);
  font-size: clamp(3.4rem, 6.4vw, 6.65rem);
  font-weight: 650;
  letter-spacing: -0.072em;
  line-height: 0.91;
}

.hero-home h1 em {
  color: var(--brand);
  font-style: normal;
  font-weight: 760;
}

.hero-home .hero-copy > p {
  max-width: 620px;
  color: rgba(248, 245, 236, 0.73);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

.hero-home .hero-actions {
  margin-top: 34px;
}

.hero-home .hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 560px;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid rgba(248, 245, 236, 0.17);
  border-left: 1px solid rgba(248, 245, 236, 0.17);
}

.hero-home .hero-proof span {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  min-height: 48px;
  padding: 13px 15px;
  border: 0;
  border-right: 1px solid rgba(248, 245, 236, 0.17);
  border-bottom: 1px solid rgba(248, 245, 236, 0.17);
  border-radius: 0;
  background: transparent;
  color: rgba(248, 245, 236, 0.83);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-home .hero-proof b {
  color: var(--brand);
  font-size: 0.64rem;
}

.hero-home .hero-media--product {
  position: relative;
  justify-items: stretch;
  padding: 52px 0 46px;
}

.hero-product-label {
  position: absolute;
  z-index: 4;
  top: 2px;
  right: 3%;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted-on-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-product-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(69, 224, 174, 0.11);
}

.hero-home .hero-media--product .product-shot {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(248, 245, 236, 0.2);
  border-radius: 10px;
  background: #dfe4df;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
  transform: rotate(1.25deg);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.hero-home .hero-media--product:hover .product-shot {
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.48);
  transform: rotate(0deg) translateY(-4px);
}

.hero-home .hero-media-caption {
  position: relative;
  z-index: 3;
  width: min(460px, 86%);
  margin: -22px 0 0 8%;
  padding: 16px 18px;
  border: 1px solid rgba(16, 25, 22, 0.15);
  border-radius: 8px;
  background: var(--paper-light);
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.hero-home .hero-media-caption strong {
  font-family: "Bricolage Grotesque", "Manrope", sans-serif;
  font-size: 0.96rem;
}

.hero-home .hero-media-caption span {
  margin-top: 3px;
  color: var(--text-soft);
  font-size: 0.78rem;
}

.hero-status-card {
  position: absolute;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  min-width: 186px;
  padding: 13px 15px;
  border: 1px solid rgba(248, 245, 236, 0.17);
  border-radius: 8px;
  background: rgba(16, 25, 22, 0.92);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.hero-status-card--top {
  top: 18%;
  left: -8%;
}

.hero-status-card--bottom {
  right: -5%;
  bottom: 17%;
}

.hero-status-card strong,
.hero-status-card small {
  grid-column: 2;
}

.hero-status-card strong {
  color: var(--text-on-dark);
  font-size: 0.78rem;
}

.hero-status-card small {
  color: var(--muted-on-dark);
  font-size: 0.66rem;
}

.status-pulse {
  grid-row: 1 / span 2;
  width: 9px;
  height: 9px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(69, 224, 174, 0.1);
}

.hero-bottom-line {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(38px, 6vw, 86px);
  padding-top: 22px;
  border-top: 1px solid rgba(248, 245, 236, 0.14);
  color: rgba(248, 245, 236, 0.48);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.operation-proof {
  padding: clamp(54px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.operation-proof__grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.operation-proof .section-kicker {
  color: var(--brand-deep);
}

.operation-proof h2 {
  max-width: 600px;
  font-size: clamp(2.35rem, 4vw, 4.8rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.operation-proof__grid > div:first-child p {
  max-width: 560px;
  margin-top: 24px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.operation-proof__items {
  display: block;
  border-top: 1px solid var(--ink);
}

.operation-proof__items article {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(130px, 0.65fr) 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.operation-proof__items article > span:first-child {
  color: var(--brand-deep);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.operation-proof__items strong {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.04rem;
}

.operation-proof__items article > span:last-child {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.section {
  padding-top: clamp(72px, 9vw, 126px);
  padding-bottom: clamp(72px, 9vw, 126px);
}

.section-head h2,
.section-copy h2,
.modules-band__intro h2,
.pricing-intro h2,
.section > .container > h2,
.split-grid h2 {
  font-size: clamp(2.4rem, 4.4vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.section-head p,
.section-copy p {
  color: var(--text-soft);
  line-height: 1.75;
}

.section-dark {
  background: var(--ink);
  color: var(--text-on-dark);
}

.section-dark .section-head h2,
.section-dark .section-copy h2 {
  color: var(--text-on-dark);
}

.section-dark .section-head p,
.section-dark .section-copy p {
  color: var(--muted-on-dark);
}

.module-card,
.feature-card,
.price-card,
.pricing-card,
.step-card,
.screen-card {
  border-radius: 10px;
}

.module-card,
.feature-card,
.step-card,
.price-card,
.pricing-card {
  border-color: var(--line);
  box-shadow: none;
}

.module-card:hover,
.feature-card:hover,
.step-card:hover,
.price-card:hover,
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(16, 25, 22, 0.1);
}

.product-shot,
.screen-card,
.screen-card img {
  border-radius: 10px;
}

.price-card.featured {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--text-on-dark);
  box-shadow: 12px 12px 0 var(--brand);
}

.pricing-card--featured {
  border-color: var(--brand);
  background: linear-gradient(180deg, rgba(69, 224, 174, 0.15), rgba(69, 224, 174, 0.035));
  box-shadow: 10px 10px 0 rgba(69, 224, 174, 0.18);
}

.faq-item {
  border-color: var(--line);
  border-radius: 8px;
  background: rgba(251, 249, 243, 0.65);
}

.final-cta {
  background:
    linear-gradient(rgba(248, 245, 236, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 245, 236, 0.05) 1px, transparent 1px),
    var(--ink);
  background-size: 42px 42px;
}

.site-footer {
  background: #0b110f;
}

@media (max-width: 1120px) {
  .hero-home .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
    gap: 42px;
  }

  .hero-status-card--top {
    left: -3%;
  }

  .hero-status-card--bottom {
    right: 0;
  }
}

@media (max-width: 920px) {
  .site-header .nav-panel {
    border: 1px solid rgba(248, 245, 236, 0.12);
    background: var(--ink);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  }

  .site-header .nav-panel .nav a,
  .site-header .nav-panel .nav-dropdown__trigger {
    color: var(--text-on-dark);
  }

  .site-header .nav-panel .nav a:hover,
  .site-header .nav-panel .nav a.active,
  .site-header .nav-panel .nav-dropdown__trigger:hover,
  .site-header .nav-panel .nav-dropdown__trigger.active {
    border-color: rgba(248, 245, 236, 0.12);
    background: rgba(248, 245, 236, 0.08);
    color: var(--text-on-dark);
  }

  .site-header .nav-panel .nav-cta {
    border-color: var(--brand);
    background: var(--brand);
    color: var(--ink);
  }

  .hero-home {
    min-height: auto;
    padding-top: 86px;
  }

  .hero-home::before {
    display: none;
  }

  .hero-home .hero-grid,
  .operation-proof__grid {
    grid-template-columns: 1fr;
  }

  .hero-home .hero-copy {
    max-width: 760px;
  }

  .hero-home .hero-media--product {
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .operation-proof__grid {
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .hero-home {
    padding-top: 68px;
    background-size: 28px 28px, 28px 28px, auto, auto;
  }

  .hero-index {
    margin-bottom: 22px;
  }

  .hero-home h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-home .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-home .hero-actions .button {
    width: 100%;
  }

  .hero-home .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-home .hero-media--product {
    padding: 30px 0;
  }

  .hero-product-label,
  .hero-status-card {
    display: none;
  }

  .hero-home .hero-media--product .product-shot {
    transform: none;
  }

  .hero-home .hero-media-caption {
    width: 92%;
    margin: -12px auto 0;
  }

  .hero-bottom-line {
    display: grid;
    gap: 8px;
    margin-top: 26px;
  }

  .operation-proof__items article {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }

  .operation-proof__items article > span:last-child {
    grid-column: 2;
  }

  .section-head h2,
  .section-copy h2,
  .operation-proof h2 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
