:root {
  --bg-main: #080c11;
  --bg-section: #0d1218;
  --bg-section-alt: #0b1015;
  --bg-panel: #10161d;
  --bg-panel-deep: #0b1015;
  --bg-panel-soft: rgba(16, 22, 29, 0.84);
  --bg-header: rgba(8, 12, 17, 0.24);
  --bg-header-solid: rgba(10, 14, 19, 0.94);
  --text-main: #f3f6f9;
  --text-secondary: #aab4c0;
  --text-muted: #7b8794;
  --text-dim: rgba(243, 246, 249, 0.62);
  --accent: #5e80f7;
  --accent-soft: #9ab1ff;
  --accent-faint: rgba(94, 128, 247, 0.14);
  --wa-green: #25d366;
  --wa-green-soft: rgba(37, 211, 102, 0.14);
  --wa-green-glow: rgba(37, 211, 102, 0.28);
  --border-soft: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(154, 177, 255, 0.24);
  --shadow-hero: 0 48px 120px rgba(0, 0, 0, 0.42);
  --shadow-panel: 0 28px 70px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.2);
  --radius-hero: 38px;
  --radius-panel: 34px;
  --radius-card: 28px;
  --radius-chip: 22px;
  --radius-field: 18px;
  --radius-button: 999px;
  --container: 1280px;
  --header-height: 88px;
  --header-height-scrolled: 72px;
  --section-space: 140px;
  --transition: 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Public Sans", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.72;
  color: var(--text-main);
  background:
    radial-gradient(circle at 18% 10%, rgba(94, 128, 247, 0.07), transparent 20%),
    radial-gradient(circle at 88% 16%, rgba(154, 177, 255, 0.05), transparent 18%),
    linear-gradient(180deg, #0a0e13 0%, #080c11 32%, #090d12 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.18));
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.6) 0.45px, transparent 0.55px),
    radial-gradient(circle at 76% 74%, rgba(255, 255, 255, 0.4) 0.45px, transparent 0.55px);
  background-size: 20px 20px, 26px 26px;
  mix-blend-mode: soft-light;
}

::selection {
  background: rgba(94, 128, 247, 0.28);
  color: #fff;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  padding: 0;
  color: inherit;
  background: none;
  cursor: pointer;
}

textarea {
  resize: vertical;
  min-height: 168px;
}

select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 56px;
  padding: 0 40px 0 18px;
  border-radius: var(--radius-field);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23aab4c0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 14px center,
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.02);
  color: var(--text-main);
  font-size: 15px;
  cursor: pointer;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

select:focus {
  outline: none;
  border-color: rgba(154, 177, 255, 0.5);
  box-shadow:
    0 0 0 4px rgba(94, 128, 247, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

select option {
  background: #1a2030;
  color: var(--text-main);
}

main {
  overflow: hidden;
}

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

.site-shell {
  position: relative;
  z-index: 1;
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-inline: 72px;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.section-heading p,
h1,
h2,
h3 {
  text-wrap: balance;
}

.section-heading h2 {
  max-width: 12ch;
}

.section-heading p {
  max-width: 42rem;
  margin-top: 24px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.8;
}

.section-heading.centered h2,
.section-heading.centered p {
  margin-inline: auto;
}

.section-tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--accent-soft);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-tag::before,
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, rgba(154, 177, 255, 0), rgba(154, 177, 255, 0.88));
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text-main);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
}

h1 {
  max-width: 8.6ch;
  font-size: 72px;
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.055em;
}

h2 {
  font-size: 52px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.05em;
}

h3 {
  font-size: 30px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.035em;
}

h4 {
  margin: 0;
  color: var(--text-main);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
  color: var(--text-secondary);
}

/* ── BUTTONS ───────────────────────────────────────────────────── */

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: var(--radius-button);
  border: 1px solid transparent;
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    color var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
}

.button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  transition:
    opacity var(--transition),
    border-color var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible {
  outline: 2px solid rgba(154, 177, 255, 0.78);
  outline-offset: 4px;
}

.button-primary {
  color: #fff;
  border-color: rgba(154, 177, 255, 0.38);
  background:
    linear-gradient(180deg, rgba(94, 128, 247, 0.24), rgba(94, 128, 247, 0.14)),
    rgba(17, 23, 31, 0.72);
  box-shadow:
    0 16px 34px rgba(35, 61, 137, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-primary::before {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: rgba(154, 177, 255, 0.52);
  box-shadow:
    0 20px 42px rgba(35, 61, 137, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button-secondary,
.button-whatsapp {
  color: rgba(243, 246, 249, 0.92);
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(10, 14, 19, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 24px rgba(0, 0, 0, 0.1);
}

.button-secondary::before,
.button-whatsapp::before {
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  border-color: rgba(154, 177, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(94, 128, 247, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(10, 14, 19, 0.68);
}

/* ── SCROLL PROGRESS ────────────────────────────────────────────── */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transition: width 80ms linear;
  pointer-events: none;
}

/* ── HEADER ────────────────────────────────────────────────────── */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(8, 12, 17, 0.46), rgba(8, 12, 17, 0.14)),
    rgba(8, 12, 17, 0.18);
  backdrop-filter: blur(18px);
  transition:
    height var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity var(--transition);
}

.site-header.scrolled {
  height: var(--header-height-scrolled);
  border-bottom-color: rgba(255, 255, 255, 0.04);
  background:
    linear-gradient(180deg, rgba(10, 14, 19, 0.98), rgba(10, 14, 19, 0.92)),
    var(--bg-header-solid);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.16);
}

.site-header.scrolled::after {
  opacity: 1;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px 26px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Instrument Sans", "Public Sans", sans-serif;
}

.brand-mark {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(94, 128, 247, 0.94), rgba(154, 177, 255, 0.32));
  box-shadow:
    0 0 0 1px rgba(154, 177, 255, 0.26),
    0 8px 20px rgba(29, 52, 116, 0.18);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 3px;
}

.brand-wordmark {
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.nav-desktop {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: end;
  margin-left: auto;
  padding: 7px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014)),
    rgba(10, 14, 19, 0.46);
  box-shadow:
    0 20px 36px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.nav-desktop::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.nav-link {
  position: relative;
  z-index: 1;
  padding: 12px 16px 13px;
  border-radius: 999px;
  color: rgba(243, 246, 249, 0.78);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    color var(--transition),
    opacity var(--transition),
    background-color var(--transition),
    transform var(--transition);
}

.nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    rgba(255, 255, 255, 0.02);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transform: scaleX(0.62);
  transform-origin: center;
  opacity: 0;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: #fff;
  transform: translateY(-1px);
}

.nav-link:hover::before,
.nav-link:focus-visible::before,
.nav-link.active::before {
  opacity: 1;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  transform: scaleX(1);
  opacity: 1;
}

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

.desktop-whatsapp {
  min-height: 48px;
  padding-inline: 20px;
  font-size: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.014)),
    rgba(10, 14, 19, 0.52);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(10, 14, 19, 0.7);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.menu-toggle span:not(.sr-only),
.mobile-close span {
  display: block;
  width: 18px;
  height: 1.8px;
  border-radius: 999px;
  background: var(--text-main);
  transition: transform var(--transition), opacity var(--transition);
}

/* ── MOBILE PANEL ──────────────────────────────────────────────── */

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

.mobile-panel.is-open {
  pointer-events: auto;
}

.mobile-panel-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(2, 6, 10, 0.62);
  backdrop-filter: blur(4px);
  transition: opacity var(--transition);
}

.mobile-panel-content {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 430px);
  height: 100%;
  padding: 30px 24px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(108%);
  transition: transform var(--transition);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at top right, rgba(94, 128, 247, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(17, 23, 31, 0.98), rgba(8, 11, 15, 0.98));
  box-shadow: -24px 0 64px rgba(0, 0, 0, 0.34);
}

.mobile-panel-content::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.mobile-panel.is-open .mobile-panel-backdrop {
  opacity: 1;
}

.mobile-panel.is-open .mobile-panel-content {
  transform: translateX(0);
}

.mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.mobile-close {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.mobile-close span:first-child {
  transform: translateY(1px) rotate(45deg);
}

.mobile-close span:last-child {
  position: absolute;
  transform: translateY(1px) rotate(-45deg);
}

.mobile-nav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}

.mobile-link {
  position: relative;
  width: fit-content;
  color: var(--text-main);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  transition: color var(--transition), transform var(--transition);
}

.mobile-link:hover {
  color: var(--accent-soft);
  transform: translateX(6px);
}

.mobile-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 28px;
  height: 1px;
  background: rgba(154, 177, 255, 0.56);
}

.mobile-panel-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-panel-note {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ── HERO ──────────────────────────────────────────────────────── */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 72px);
  padding-bottom: 112px;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.hero-glow-left {
  top: 14%;
  left: -7%;
  width: 300px;
  height: 300px;
  background: rgba(94, 128, 247, 0.06);
}

.hero-glow-right {
  right: -4%;
  bottom: 12%;
  width: 420px;
  height: 420px;
  background: rgba(154, 177, 255, 0.05);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.92));
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.28fr);
  gap: 20px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 660px;
  padding-top: 18px;
  padding-right: 36px;
}

.hero-copy h1 {
  max-width: 9.4ch;
}

.hero-copy::after {
  content: "";
  display: block;
  width: 68px;
  height: 1px;
  margin-top: 28px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
}

.hero-lead {
  max-width: 34ch;
  margin-top: 28px;
  color: var(--text-main);
  font-size: 21px;
  line-height: 1.65;
  font-weight: 400;
}

.hero-support {
  max-width: 40ch;
  margin-top: 22px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-footnote {
  max-width: 34ch;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* Para quién chips in hero */
.hero-para-quien {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.hero-pq-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(243, 246, 249, 0.78);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-pq-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-soft);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: calc(100% + 136px);
  margin-right: -136px;
  margin-left: -24px;
  display: flex;
  flex-direction: column;
}

.hero-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 36px 0 0 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 0;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(17, 23, 31, 0.98), rgba(10, 14, 19, 0.98));
  box-shadow: var(--shadow-hero);
  flex: 1;
}

/* Proof bar below hero image */
.hero-proof-bar {
  display: flex;
  align-items: center;
  padding: 20px 32px;
  border-radius: 0 0 0 32px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-right: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(14, 20, 28, 0.98), rgba(9, 13, 18, 0.98));
  gap: 0;
}

.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding: 0 8px;
}

.hero-proof-item strong {
  color: var(--text-main);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}

.hero-proof-item > span {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.4;
}

.hero-proof-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.hero-proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wa-green);
  box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.12);
  flex-shrink: 0;
  animation: onlinePulse 2s ease-in-out infinite;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 14px 14px 0 14px;
  z-index: 2;
  border-radius: 28px 28px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 0;
  pointer-events: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 24px 20px auto;
  z-index: 1;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(94, 128, 247, 0.08);
  filter: blur(56px);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.88) contrast(1.02);
  transform: scale(1.02);
}

.hero-vignette,
.panel-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 11, 0.06), rgba(5, 8, 11, 0.12) 30%, rgba(5, 8, 11, 0.72)),
    radial-gradient(circle at 82% 16%, rgba(94, 128, 247, 0.14), transparent 24%),
    radial-gradient(circle at 22% 82%, rgba(255, 255, 255, 0.06), transparent 20%);
}

.hero-module {
  position: absolute;
  z-index: 3;
  max-width: 222px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(18, 24, 32, 0.8), rgba(10, 14, 19, 0.66)),
    rgba(10, 14, 19, 0.54);
  backdrop-filter: blur(20px);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-module::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.module-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(243, 246, 249, 0.82);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.module-head span:last-child {
  color: var(--text-main);
  letter-spacing: 0;
  font-size: 13px;
}

.hero-module ul {
  list-style: none;
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
}

.hero-module li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

.hero-module p {
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.55;
}

.hero-module strong {
  display: block;
  margin-top: 10px;
  color: var(--text-main);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.module-label,
.module-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.module-badge-success {
  border-color: rgba(141, 226, 210, 0.18);
  background: rgba(141, 226, 210, 0.08);
  color: #e2fff7;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: 0 0 0 7px rgba(154, 177, 255, 0.08);
}

.module-agenda {
  top: 10%;
  left: 7%;
  width: 228px;
}

.module-checkin {
  top: 15%;
  right: 12%;
  max-width: 190px;
}

.module-crm {
  bottom: 20%;
  left: 9%;
  max-width: 190px;
}

.module-payment {
  right: 10%;
  bottom: 9%;
  max-width: 186px;
}

/* ── STATS STRIP ───────────────────────────────────────────────── */

.stats-strip {
  position: relative;
  z-index: 1;
  padding-block: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(90deg, rgba(94, 128, 247, 0.04), rgba(154, 177, 255, 0.02), rgba(94, 128, 247, 0.04)),
    rgba(10, 14, 19, 0.6);
  backdrop-filter: blur(10px);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 56px;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--text-main);
  background: linear-gradient(135deg, #fff 30%, var(--accent-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item span {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  flex-shrink: 0;
}

/* ── SOLUTIONS ─────────────────────────────────────────────────── */

.solutions-section {
  padding-top: 132px;
}

.solutions-section .container {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.62fr);
  gap: 32px;
  align-items: start;
  width: 100%;
  max-width: none;
  padding-inline: 72px;
}

.split-heading {
  position: sticky;
  top: 118px;
  display: block;
  max-width: 420px;
  margin-bottom: 0;
  padding-right: 12px;
}

.split-heading .section-tag {
  margin-bottom: 18px;
}

.split-heading h2 {
  max-width: 8.6ch;
}

.split-heading p:last-child {
  max-width: 32ch;
  margin-top: 24px;
}

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

.solution-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 26px;
  min-height: 364px;
  padding: 36px 34px 34px;
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(18, 24, 31, 0.96), rgba(9, 13, 18, 0.98)),
    var(--bg-panel);
  box-shadow: var(--shadow-panel);
  isolation: isolate;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background-color var(--transition);
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-card) - 1px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 30%),
    radial-gradient(circle at top right, rgba(94, 128, 247, 0.12), transparent 32%);
  pointer-events: none;
  z-index: -1;
}

.solution-card::after {
  content: attr(data-index);
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(243, 246, 249, 0.26);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.solution-card:hover,
.solution-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(154, 177, 255, 0.18);
  box-shadow: 0 36px 82px rgba(0, 0, 0, 0.3);
}

.card-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.card-icon::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.card-icon svg {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--accent-soft);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-card h3 {
  max-width: 11ch;
}

.solution-card p {
  max-width: 30ch;
  margin-top: 0;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.8;
}

.solution-card-featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(120px, 156px) minmax(0, 1fr);
  align-items: end;
  column-gap: 28px;
  min-height: 292px;
  padding-right: 46px;
}

.solution-card-featured::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(94, 128, 247, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0));
}

.solution-card-featured .card-icon {
  align-self: start;
}

.solution-card-featured h3 {
  max-width: 8ch;
  font-size: 34px;
}

.solution-card-featured p {
  max-width: 38ch;
}

/* ── WHATSAPP API SECTION ──────────────────────────────────────── */

.whatsapp-section {
  background:
    radial-gradient(circle at 8% 50%, rgba(37, 211, 102, 0.04), transparent 30%),
    radial-gradient(circle at 92% 30%, rgba(94, 128, 247, 0.04), transparent 28%),
    linear-gradient(180deg, #0c1117 0%, #0d1218 100%);
}

.whatsapp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 80px;
  align-items: center;
}

.whatsapp-copy h2 {
  max-width: 10ch;
  margin-top: 0;
}

.wa-tag {
  color: #6ee7a7;
}

.wa-tag::before {
  background: linear-gradient(90deg, rgba(110, 231, 167, 0), rgba(110, 231, 167, 0.88));
}

.whatsapp-lead {
  max-width: 40ch;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.wa-features {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.wa-feature {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px 16px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition);
}

.wa-feature:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wa-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(37, 211, 102, 0.16);
  background: rgba(37, 211, 102, 0.06);
  flex-shrink: 0;
}

.wa-feature-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #6ee7a7;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wa-feature h4 {
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 4px;
}

.wa-feature p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.wa-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* WhatsApp Phone Mock */

.whatsapp-visual {
  position: relative;
}

.wa-phone-frame {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, #1a2332, #111926);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.wa-phone-frame::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
  z-index: 10;
}

.wa-phone-bar {
  height: 48px;
  background: #0d1520;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 6px;
}

.wa-phone-bar::before,
.wa-phone-bar::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.wa-phone-bar::before {
  background: rgba(255, 90, 90, 0.6);
  box-shadow: 16px 0 rgba(255, 188, 66, 0.6), 32px 0 rgba(50, 205, 90, 0.6);
}

.wa-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background:
    linear-gradient(180deg, rgba(37, 211, 102, 0.06), rgba(37, 211, 102, 0.02)),
    rgba(13, 21, 32, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.wa-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.wa-avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wa-green), rgba(37, 211, 102, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-online-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wa-green);
  border: 2px solid #0d1520;
  animation: onlinePulse 2s ease-in-out infinite;
}

@keyframes onlinePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 0 4px rgba(37, 211, 102, 0); }
}

.wa-chat-info strong {
  display: block;
  color: var(--text-main);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.wa-chat-info span {
  color: var(--wa-green);
  font-size: 12px;
}

.wa-header-icon {
  margin-left: auto;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--text-secondary);
  stroke-width: 2;
  stroke-linecap: round;
}

.wa-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 14px;
  min-height: 380px;
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 211, 102, 0.03), transparent 50%),
    #0f1a24;
  overflow-y: auto;
}

.wa-date-sep {
  text-align: center;
  color: rgba(170, 180, 192, 0.5);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.wa-msg {
  max-width: 82%;
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 400ms ease, transform 400ms ease;
}

.wa-msg.wa-visible {
  opacity: 1;
  transform: translateY(0);
}

.wa-msg-in {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(243, 246, 249, 0.92);
  border-radius: 4px 14px 14px 14px;
}

.wa-msg-out {
  align-self: flex-end;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.18);
  color: rgba(243, 246, 249, 0.95);
  border-radius: 14px 4px 14px 14px;
}

.wa-msg-out strong {
  color: #fff;
}

.wa-reminder-chip {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.14);
  background: rgba(37, 211, 102, 0.06);
  color: rgba(110, 231, 167, 0.8);
  font-size: 11px;
  font-weight: 500;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 400ms ease, transform 400ms ease;
}

.wa-reminder-chip.wa-visible {
  opacity: 1;
  transform: scale(1);
}

.wa-input-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(13, 21, 32, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.wa-input-field {
  flex: 1;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(170, 180, 192, 0.4);
  font-size: 13px;
  display: flex;
  align-items: center;
}

.wa-send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--wa-green);
  color: white;
}

.wa-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.wa-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.18);
  background: rgba(37, 211, 102, 0.06);
  color: rgba(110, 231, 167, 0.8);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.wa-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wa-green);
}

/* ── OPERATIONS ────────────────────────────────────────────────── */

.operations-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #0d1218 0%, #0c1117 100%);
}

.operations-layout {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding-inline: 72px 24px;
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.64fr);
  gap: 34px;
  align-items: start;
}

.operations-intro {
  position: sticky;
  top: 126px;
  max-width: 400px;
  padding-top: 18px;
}

.operations-intro h2 {
  max-width: 8.6ch;
}

.operations-intro p:not(.section-tag) {
  max-width: 31ch;
  margin-top: 24px;
}

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

.operation-panel {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-panel);
}

.operation-panel::before {
  content: "";
  position: absolute;
  inset: 14px 14px 14px 14px;
  z-index: 2;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.operation-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.74) brightness(0.88);
  transition: transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}

.operation-panel:hover img {
  transform: scale(1.04);
}

.panel-overlay {
  background:
    linear-gradient(180deg, rgba(5, 8, 11, 0.08), rgba(5, 8, 11, 0.16) 26%, rgba(5, 8, 11, 0.82)),
    radial-gradient(circle at 84% 20%, rgba(94, 128, 247, 0.12), transparent 22%),
    linear-gradient(90deg, rgba(5, 8, 11, 0.08), rgba(5, 8, 11, 0.02));
}

.panel-badge {
  position: absolute;
  top: 34px;
  left: 34px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(10, 14, 19, 0.62), rgba(10, 14, 19, 0.38)),
    rgba(10, 14, 19, 0.52);
  color: rgba(243, 246, 249, 0.92);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.panel-copy {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 3;
  max-width: 28rem;
}

.panel-copy::before {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0));
}

.panel-copy h3 {
  max-width: 10ch;
  font-size: clamp(2.2rem, 2.8vw, 2.8rem);
  line-height: 0.98;
}

.panel-copy p {
  max-width: 30ch;
  margin-top: 16px;
  color: rgba(243, 246, 249, 0.8);
  font-size: 17px;
  line-height: 1.74;
}

.operation-panel:nth-child(2) .panel-copy {
  max-width: 26rem;
}

/* ── MODULES ────────────────────────────────────────────────────── */

.modules-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 36px 72px;
  align-items: end;
  margin-bottom: 40px;
}

.modules-intro h2 {
  max-width: 10ch;
}

.modules-intro > p {
  max-width: 34ch;
  justify-self: end;
  font-size: 17px;
  line-height: 1.8;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: module;
}

.module-chip {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 18px;
  min-height: 108px;
  padding: 24px;
  overflow: hidden;
  border-radius: var(--radius-chip);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(18, 24, 31, 0.92), rgba(10, 14, 19, 0.94)),
    var(--bg-panel);
  color: rgba(243, 246, 249, 0.96);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
  counter-increment: module;
}

.module-chip::before {
  content: counter(module, decimal-leading-zero);
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(243, 246, 249, 0.22);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.module-chip::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 34%),
    radial-gradient(circle at top right, rgba(94, 128, 247, 0.08), transparent 30%);
  pointer-events: none;
}

.module-chip:hover {
  transform: translateY(-4px);
  border-color: rgba(154, 177, 255, 0.16);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.26);
}

.module-chip span {
  width: 32px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 128, 247, 1), rgba(154, 177, 255, 0));
}

.modules-note {
  max-width: 46rem;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.8;
}

/* ── SERVICES SECTION ──────────────────────────────────────────── */

.services-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #0b1015 0%, #0a0f14 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 0;
}

.service-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 32px 28px 28px;
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(18, 24, 31, 0.96), rgba(9, 13, 18, 0.98)),
    var(--bg-panel);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-card) - 1px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 30%),
    radial-gradient(circle at top right, rgba(94, 128, 247, 0.08), transparent 32%);
  pointer-events: none;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(154, 177, 255, 0.16);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.service-card-wa::before {
  background:
    linear-gradient(180deg, rgba(37, 211, 102, 0.04), transparent 30%),
    radial-gradient(circle at top right, rgba(37, 211, 102, 0.08), transparent 32%);
}

.service-card-wa {
  border-color: rgba(37, 211, 102, 0.12);
}

.service-card-wa:hover {
  border-color: rgba(37, 211, 102, 0.24);
}

.service-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--accent-soft);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon-wa {
  border-color: rgba(37, 211, 102, 0.16);
  background:
    linear-gradient(180deg, rgba(37, 211, 102, 0.06), rgba(37, 211, 102, 0.02)),
    rgba(37, 211, 102, 0.02);
}

.service-icon-wa svg {
  stroke: none;
  fill: #6ee7a7;
}

.service-card h3 {
  font-size: 22px;
  line-height: 1.15;
  max-width: 12ch;
}

.service-card p {
  font-size: 15px;
  line-height: 1.76;
  color: var(--text-secondary);
}

.service-bullets {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.service-bullets li::before {
  content: "";
  width: 16px;
  height: 1px;
  flex-shrink: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
}

.services-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  flex-wrap: wrap;
}

.services-cta p {
  color: var(--text-secondary);
  font-size: 17px;
}

/* ── VALUE ──────────────────────────────────────────────────────── */

.value-section {
  padding-top: 148px;
}

.value-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 84px;
  align-items: center;
}

.value-copy h2 {
  max-width: 10ch;
}

.value-lead {
  max-width: 39ch;
  margin-top: 24px;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.82;
}

.value-points {
  display: grid;
  gap: 24px;
  margin-top: 46px;
}

.value-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.point-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
}

.point-icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.point-icon svg {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--accent-soft);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-point h3 {
  font-size: 22px;
  line-height: 1.15;
}

.value-point p {
  max-width: 32ch;
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.flow-composition {
  position: relative;
}

.flow-shell {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  padding: 36px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(16, 22, 29, 0.94), rgba(9, 13, 18, 0.98)),
    var(--bg-panel);
  box-shadow: var(--shadow-panel);
}

.flow-shell::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 28%),
    radial-gradient(circle at top right, rgba(94, 128, 247, 0.12), transparent 28%);
  pointer-events: none;
}

.flow-shell::after {
  content: "";
  position: absolute;
  left: -40px;
  bottom: -34px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(94, 128, 247, 0.08);
  filter: blur(64px);
  pointer-events: none;
}

.flow-topline {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.flow-node {
  position: relative;
  z-index: 1;
  padding: 18px 20px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.flow-node::before {
  content: "";
  position: absolute;
  top: 22px;
  left: -38px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 0 0 7px rgba(94, 128, 247, 0.08);
}

.flow-node strong {
  display: block;
  margin-top: 10px;
  color: var(--text-main);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.28;
}

.flow-label {
  color: var(--accent-soft);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.flow-node-entry {
  max-width: 290px;
  margin-top: 46px;
}

.flow-node-entry::before {
  left: auto;
  right: -34px;
}

.flow-column {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  width: min(100%, 340px);
  margin-top: 64px;
  margin-left: auto;
}

.flow-column .flow-node:nth-child(2) {
  margin-left: -18px;
}

.flow-column .flow-node:nth-child(3) {
  margin-left: 24px;
}

.flow-lines span {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(154, 177, 255, 0.34), rgba(154, 177, 255, 0.02));
}

.flow-lines span:nth-child(1) {
  top: 154px;
  left: 286px;
  width: 128px;
  height: 1px;
}

.flow-lines span:nth-child(2) {
  top: 196px;
  left: 414px;
  width: 1px;
  height: 182px;
}

.flow-lines span:nth-child(3) {
  bottom: 142px;
  left: 326px;
  width: 110px;
  height: 1px;
}

/* ── PROCESS ────────────────────────────────────────────────────── */

.process-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #0b1015 0%, #0a0f14 100%);
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  padding-top: 38px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 54px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(154, 177, 255, 0.26), rgba(255, 255, 255, 0.02));
}

.process-step {
  position: relative;
  padding-top: 24px;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 47px;
  left: 84px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 0 0 10px rgba(94, 128, 247, 0.06);
}

.step-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
  color: var(--text-main);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.14em;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.step-number::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.process-step h3 {
  max-width: 12ch;
  margin-top: 28px;
  font-size: 24px;
  line-height: 1.16;
}

.process-step p {
  max-width: 26ch;
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.78;
}

/* ── FAQ ─────────────────────────────────────────────────────────── */

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 80px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  max-width: 9ch;
}

.faq-intro p {
  max-width: 30ch;
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
}

.faq-wa-btn {
  margin-top: 28px;
  min-height: 52px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  transition: background var(--transition);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-item[open] .faq-icon::before {
  transform: rotate(45deg);
}

.faq-item[open] .faq-icon::after {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color var(--transition);
}

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

.faq-question span {
  color: var(--text-main);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  transition: color var(--transition);
}

.faq-question:hover span {
  color: var(--accent-soft);
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 999px;
  background: var(--text-secondary);
  transition: transform var(--transition), opacity var(--transition);
}

.faq-icon::before {
  width: 10px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 10px;
  transform: translate(-50%, -50%);
}

.faq-answer {
  padding-bottom: 24px;
}

.faq-answer p {
  max-width: 52ch;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.82;
}

/* ── FINAL CTA ──────────────────────────────────────────────────── */

.final-cta-section {
  padding-top: 148px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 72px 88px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(18, 24, 31, 0.96), rgba(8, 11, 15, 0.98)),
    var(--bg-panel);
  box-shadow: var(--shadow-panel);
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(94, 128, 247, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 32%);
  pointer-events: none;
}

.final-cta-glow {
  position: absolute;
  left: 50%;
  bottom: -150px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: rgba(94, 128, 247, 0.11);
  filter: blur(90px);
}

.final-cta .section-tag,
.final-cta h2,
.final-cta p,
.final-cta .hero-actions {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 12ch;
  margin-inline: auto;
}

.final-cta p {
  max-width: 47rem;
  margin: 24px auto 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.82;
}

.final-cta .hero-actions {
  justify-content: center;
  margin-top: 36px;
}

/* ── CONTACT ────────────────────────────────────────────────────── */

.contact-section {
  padding-top: 150px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  gap: 88px;
  align-items: start;
}

.contact-copy h2 {
  max-width: 10ch;
}

.contact-copy > p {
  max-width: 34ch;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.8;
}

.contact-support {
  color: var(--text-main);
}

.response-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding: 18px 22px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(18, 24, 31, 0.86), rgba(10, 14, 19, 0.92)),
    var(--bg-panel);
  color: var(--text-main);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-soft);
}

.response-box::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 0 0 8px rgba(94, 128, 247, 0.08);
}

.contact-alt {
  margin-top: 24px;
}

.contact-alt p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.contact-wa-btn {
  min-height: 52px;
}

.contact-form-shell {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(18, 24, 31, 0.96), rgba(9, 13, 18, 0.98)),
    var(--bg-panel);
  box-shadow: var(--shadow-panel);
}

.contact-form-shell::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 34%),
    radial-gradient(circle at top right, rgba(94, 128, 247, 0.08), transparent 30%);
  pointer-events: none;
}

.contact-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field span {
  color: rgba(243, 246, 249, 0.72);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border-radius: var(--radius-field);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.02);
  color: var(--text-main);
  font-size: 15px;
  transition:
    border-color var(--transition),
    background-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.field textarea {
  padding-top: 16px;
  padding-bottom: 16px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(170, 180, 192, 0.54);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(154, 177, 255, 0.5);
  background:
    linear-gradient(180deg, rgba(94, 128, 247, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    0 0 0 4px rgba(94, 128, 247, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.field.has-error input,
.field.has-error textarea,
.field.has-error select {
  border-color: rgba(255, 136, 136, 0.62);
}

.error-message {
  min-height: 18px;
  color: #ffabab;
  font-size: 12px;
}

.field-full {
  grid-column: 1 / -1;
}

.form-submit {
  width: 100%;
}

.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(154, 177, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(94, 128, 247, 0.1), rgba(94, 128, 247, 0.05)),
    rgba(255, 255, 255, 0.02);
  color: var(--text-main);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.form-success.is-visible {
  display: flex;
}

/* ── FOOTER ─────────────────────────────────────────────────────── */

.site-footer {
  padding: 72px 0 34px;
  background:
    linear-gradient(180deg, rgba(5, 8, 11, 1), rgba(5, 8, 11, 0.98)),
    #06090d;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 0.46fr));
  gap: 42px;
  padding-bottom: 34px;
}

.footer-col h3 {
  margin-bottom: 20px;
  color: rgba(243, 246, 249, 0.56);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-brand {
  margin-bottom: 22px;
}

.footer-col p {
  max-width: 30ch;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-links span {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  transition: color var(--transition), opacity var(--transition);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text-main);
}

.footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}

.footer-wa-link:hover {
  color: var(--text-main);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 13px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 13px;
}

/* ── FLOATING WHATSAPP ──────────────────────────────────────────── */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa-green);
  box-shadow:
    0 8px 30px rgba(37, 211, 102, 0.36),
    0 3px 10px rgba(0, 0, 0, 0.2);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
  opacity: 0;
  transform: scale(0.7) translateY(12px);
  pointer-events: none;
}

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

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow:
    0 14px 40px rgba(37, 211, 102, 0.46),
    0 4px 14px rgba(0, 0, 0, 0.22);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wa-green);
  animation: waPulse 2.4s ease-out infinite;
  z-index: -1;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.5; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

.wa-float-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(18, 24, 31, 0.96), rgba(9, 13, 18, 0.98));
  color: var(--text-main);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.wa-float-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(9, 13, 18, 0.98);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.whatsapp-float:hover .wa-float-tooltip {
  opacity: 1;
}

/* ── BUTTON VARIANTS (extra) ────────────────────────────────────── */

.button-wa-header {
  min-height: 48px;
  padding-inline: 20px;
  font-size: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.014)),
    rgba(10, 14, 19, 0.52);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ── STATUS DOTS ─────────────────────────────────────────────────── */

.status-dot-green {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wa-green);
  box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.12);
  animation: onlinePulse 2s ease-in-out infinite;
}

/* ── CTA / FORM FOOTNOTE ─────────────────────────────────────────── */

.cta-footnote {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.form-footnote {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  letter-spacing: 0.01em;
}

/* ── PROBLEMA SECTION ────────────────────────────────────────────── */

.problema-section {
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 80, 80, 0.03), transparent 30%),
    linear-gradient(180deg, #0c1117 0%, #0d1218 100%);
}

.problema-heading {
  max-width: 640px;
  margin-bottom: 52px;
}

.problema-heading h2 { max-width: 10ch; }

.problema-heading p {
  max-width: 38ch;
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.8;
}

.problema-tag {
  color: rgba(255, 160, 100, 0.9);
}

.problema-tag::before {
  background: linear-gradient(90deg, rgba(255, 160, 100, 0), rgba(255, 160, 100, 0.8));
}

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

.problema-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 24px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(20, 14, 14, 0.9), rgba(9, 13, 18, 0.96)),
    var(--bg-panel);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.problema-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-card) - 1px);
  background:
    linear-gradient(180deg, rgba(255, 80, 60, 0.04), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 80, 60, 0.06), transparent 32%);
  pointer-events: none;
}

.problema-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 120, 80, 0.18);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28);
}

.problema-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 120, 80, 0.16);
  background: rgba(255, 80, 60, 0.06);
  flex-shrink: 0;
}

.problema-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: rgba(255, 160, 100, 0.9);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problema-card h3 {
  font-size: 20px;
  line-height: 1.2;
  max-width: 10ch;
}

.problema-card p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--text-secondary);
  flex: 1;
}

.problema-tag-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 120, 80, 0.14);
  background: rgba(255, 80, 60, 0.05);
  color: rgba(255, 160, 100, 0.7);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: auto;
}

.problema-solution {
  margin-top: 48px;
}

.problema-solution-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 36px;
  border-radius: 28px;
  border: 1px solid rgba(37, 211, 102, 0.14);
  background:
    linear-gradient(180deg, rgba(37, 211, 102, 0.04), rgba(37, 211, 102, 0.01)),
    rgba(10, 14, 19, 0.6);
  flex-wrap: wrap;
}

.problema-sol-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(37, 211, 102, 0.2);
  background: rgba(37, 211, 102, 0.08);
  flex-shrink: 0;
}

.problema-sol-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #6ee7a7;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problema-sol-title {
  color: var(--text-main) !important;
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.problema-solution-inner > div {
  flex: 1;
  min-width: 200px;
}

.problema-solution-inner > div p:last-child {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.problema-solution-inner .button {
  flex-shrink: 0;
}

/* ── INDUSTRIAS SECTION ──────────────────────────────────────────── */

.industrias-section {
  background:
    radial-gradient(circle at 10% 60%, rgba(94, 128, 247, 0.04), transparent 28%),
    linear-gradient(180deg, #0b1015 0%, #0c1117 100%);
}

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

.industria-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 34px 32px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(18, 24, 31, 0.96), rgba(9, 13, 18, 0.98)),
    var(--bg-panel);
  box-shadow: var(--shadow-panel);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.industria-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-card) - 1px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 30%),
    radial-gradient(circle at top right, rgba(94, 128, 247, 0.08), transparent 32%);
  pointer-events: none;
  z-index: -1;
}

.industria-card:hover {
  transform: translateY(-6px);
  border-color: rgba(154, 177, 255, 0.18);
  box-shadow: 0 36px 82px rgba(0, 0, 0, 0.3);
}

.industria-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.industria-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
  flex-shrink: 0;
}

.industria-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--accent-soft);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industria-label {
  color: var(--accent-soft);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.industria-card h3 {
  font-size: 26px;
  line-height: 1.12;
  max-width: 14ch;
  margin-top: 0;
}

.industria-card > p {
  font-size: 16px;
  line-height: 1.78;
  color: var(--text-secondary);
  max-width: 38ch;
}

.industria-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.industria-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(243, 246, 249, 0.8);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.industria-features li::before {
  content: "";
  width: 18px;
  height: 1.5px;
  flex-shrink: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
}

.industria-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  color: var(--accent-soft);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color var(--transition), gap var(--transition);
}

.industria-cta:hover {
  color: #fff;
  gap: 10px;
}

/* ── INDUSTRIA CARD WIDE (acceso controlado) ─────────────────────── */

.industria-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 56px;
  align-items: start;
  border-color: rgba(154, 177, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(94, 128, 247, 0.04) 0%, rgba(18, 24, 31, 0.96) 60%),
    var(--bg-panel);
}

.industria-card-wide::before {
  background:
    linear-gradient(180deg, rgba(94, 128, 247, 0.06), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(94, 128, 247, 0.1), transparent 40%);
}

.industria-card-wide:hover { border-color: rgba(154, 177, 255, 0.26); }

.industria-wide-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.industria-wide-left h3 { font-size: 28px; max-width: 14ch; }
.industria-wide-left > p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.industria-icon-access {
  border-color: rgba(154, 177, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(94, 128, 247, 0.08), rgba(94, 128, 247, 0.03)),
    rgba(94, 128, 247, 0.03);
}

.industria-icon-access svg { stroke: var(--accent-soft); }

.industria-wide-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

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

.access-module {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color var(--transition), background var(--transition);
}

.access-module:hover {
  border-color: rgba(154, 177, 255, 0.14);
  background: rgba(94, 128, 247, 0.04);
}

.access-module-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(154, 177, 255, 0.14);
  background: rgba(94, 128, 247, 0.07);
  flex-shrink: 0;
}

.access-module-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--accent-soft);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.access-module strong {
  display: block;
  color: var(--text-main);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
}

.access-module span {
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.55;
}

.access-sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.access-sector-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(154, 177, 255, 0.14);
  background: rgba(94, 128, 247, 0.06);
  color: rgba(154, 177, 255, 0.8);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────────────────────────────── */

.industrias-outro {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  flex-wrap: wrap;
}

.industrias-outro p {
  color: var(--text-secondary);
  font-size: 17px;
}

/* ── PROCESO SECTION ─────────────────────────────────────────────── */

.proceso-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #0b1015 0%, #0a0f14 100%);
}

.proceso-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 60px;
}

.proceso-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 28px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(18, 24, 31, 0.96), rgba(9, 13, 18, 0.98)),
    var(--bg-panel);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    transform var(--transition),
    border-color var(--transition);
}

.proceso-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-card) - 1px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 30%),
    radial-gradient(circle at top right, rgba(94, 128, 247, 0.08), transparent 32%);
  pointer-events: none;
}

.proceso-card:hover {
  transform: translateY(-5px);
  border-color: rgba(154, 177, 255, 0.16);
}

.proceso-num {
  color: rgba(154, 177, 255, 0.3);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.proceso-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
}

.proceso-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--accent-soft);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proceso-card h3 {
  font-size: 22px;
  line-height: 1.15;
  max-width: 12ch;
}

.proceso-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  flex: 1;
}

.proceso-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(154, 177, 255, 0.16);
  background: rgba(94, 128, 247, 0.07);
  color: var(--accent-soft);
  font-family: "Instrument Sans", "Public Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.proceso-connector {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 64px;
  width: 48px;
}

.proceso-connector::after {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, rgba(154, 177, 255, 0.4), rgba(154, 177, 255, 0.1));
  margin-top: 26px;
}

.proceso-nota {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 52px;
  padding: 28px 36px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  flex-wrap: wrap;
}

.proceso-nota p {
  flex: 1;
  min-width: 200px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ── REVEAL ANIMATIONS ──────────────────────────────────────────── */

.reveal {
  opacity: 0;
  filter: blur(6px);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 680ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal[data-reveal="up"] {
  transform: translateY(26px);
}

.reveal[data-reveal="left"] {
  transform: translateX(-36px);
}

.reveal[data-reveal="right"] {
  transform: translateX(36px);
}

.reveal.in-view {
  opacity: 1;
  transform: translate(0, 0);
  filter: blur(0);
}

/* ── REDUCED MOTION ─────────────────────────────────────────────── */

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

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

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

  .whatsapp-float::before {
    animation: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

@media (max-width: 1240px) {
  .hero-layout { gap: 60px; }
  h1 { font-size: clamp(4rem, 6vw, 4.5rem); }
  .hero-media { min-height: 700px; }

  .whatsapp-layout { gap: 52px; }

  .footer-grid {
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.58fr));
  }

  .footer-grid .footer-col:last-child {
    grid-column: 1;
  }

  .flow-lines span:nth-child(1) { left: 250px; width: 108px; }
  .flow-lines span:nth-child(2) { left: 358px; }
  .flow-lines span:nth-child(3) { left: 280px; width: 92px; }
}

@media (max-width: 1100px) {
  .container { padding-inline: 40px; }

  .desktop-whatsapp,
  .nav-desktop { display: none; }

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

  .hero-section {
    min-height: auto;
    padding-bottom: 92px;
  }

  .hero-layout,
  .value-layout,
  .contact-layout,
  .modules-intro,
  .whatsapp-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout { gap: 36px; }
  .hero-copy { max-width: 620px; }
  .hero-copy::after { display: none; }
  .hero-media { min-height: 520px; }

  .hero-visual {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .hero-media {
    border-radius: 28px 28px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 0;
  }

  .hero-media::before {
    inset: 14px 14px 0 14px;
    border-radius: 18px 18px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 0;
  }

  .hero-proof-bar {
    border-radius: 0 0 28px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
  }

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

  .solutions-section .container,
  .operations-layout {
    grid-template-columns: 1fr;
    padding-inline: 40px;
  }

  .split-heading,
  .operations-intro {
    position: static;
    max-width: none;
    padding-right: 0;
  }

  .split-heading p:last-child,
  .operations-intro p:not(.section-tag) {
    max-width: 42ch;
  }

  .modules-intro > p { justify-self: start; }

  .value-layout,
  .contact-layout { gap: 56px; }

  .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 44px;
  }

  .process-timeline::before { left: 7%; right: 7%; }

  .flow-shell { min-height: 540px; }
  .flow-lines span:nth-child(1) { left: 236px; width: 78px; }
  .flow-lines span:nth-child(2) { left: 314px; height: 156px; }
  .flow-lines span:nth-child(3) { left: 248px; width: 74px; }

  .contact-copy > p { max-width: 40ch; }

  /* WhatsApp section */
  .whatsapp-layout { gap: 48px; }
  .whatsapp-visual { max-width: 480px; }

  /* Problema */
  .problema-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Industrias */
  .industrias-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industria-card-wide { gap: 36px; }
  .access-modules { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Proceso */
  .proceso-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .proceso-connector { display: none; }

  /* FAQ */
  .faq-layout { gap: 48px; }
  .faq-intro { position: static; }

  /* Stats */
  .stat-item { padding: 16px 32px; }
}

@media (max-width: 900px) {
  :root { --section-space: 112px; }

  h2 { font-size: clamp(2.6rem, 6vw, 3rem); }
  h3 { font-size: 27px; }

  .hero-media { min-height: 600px; }
  .module-checkin { top: 14%; right: 5%; }
  .module-payment { right: 9%; }

  .solution-card { min-height: 344px; }

  .final-cta { padding: 56px 40px; }
  .contact-form-shell { padding: 28px; }

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

  .stat-item { padding: 14px 24px; }
  .stat-item strong { font-size: 38px; }
}

@media (max-width: 767px) {
  :root {
    --header-height: 74px;
    --header-height-scrolled: 68px;
    --section-space: 84px;
  }

  html { scroll-padding-top: 90px; }

  .container { padding-inline: 20px; }

  .site-header { height: 74px; }
  .site-header.scrolled { height: 68px; }
  .brand-wordmark { letter-spacing: 0.18em; }

  .section-heading,
  .section-heading.centered {
    margin-bottom: 44px;
    text-align: left;
  }

  .section-heading.centered h2,
  .section-heading.centered p { margin-inline: 0; }

  .section-tag::before,
  .eyebrow::before { display: none; }

  h1 { font-size: 42px; max-width: 9ch; line-height: 0.98; }
  h2 { font-size: 34px; line-height: 1.04; }
  h3 { font-size: 24px; }
  body { font-size: 16px; }

  /* ─ Hero ─ */
  .hero-section {
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 80px;
  }

  .hero-layout { gap: 34px; }
  .hero-copy h1 { max-width: 9.2ch; }
  .hero-lead { font-size: 18px; line-height: 1.7; }
  .hero-support { font-size: 16px; line-height: 1.76; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-media {
    min-height: 380px;
    border-radius: 22px 22px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 0;
  }

  .hero-media::before {
    inset: 10px 10px 0 10px;
    border-radius: 14px 14px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 0;
  }

  .hero-proof-bar {
    border-radius: 0 0 22px 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    padding: 16px 20px;
    gap: 0;
  }

  .hero-proof-item strong { font-size: 18px; }
  .hero-proof-item > span { font-size: 12px; }

  .hero-para-quien { gap: 6px; }
  .hero-pq-chip { font-size: 12px; padding: 6px 11px; }

  /* ─ Problema ─ */
  .problema-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .problema-card { padding: 24px 20px; }
  .problema-card h3 { font-size: 18px; }

  .problema-solution-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 18px;
  }

  .problema-solution-inner .button { width: 100%; justify-content: center; }

  /* ─ Industrias ─ */
  .industrias-grid { grid-template-columns: 1fr; gap: 18px; }
  .industria-card { padding: 26px 22px; }
  .industria-card h3 { font-size: 22px; }
  .industria-card-wide {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .industria-wide-left h3 { font-size: 22px; }
  .access-modules { grid-template-columns: 1fr; gap: 12px; }
  .access-module { padding: 14px; }
  .industrias-outro { flex-direction: column; align-items: flex-start; }
  .industrias-outro .button { width: 100%; }

  /* ─ Proceso ─ */
  .proceso-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .proceso-connector { display: none; }
  .proceso-card { padding: 26px 22px; }
  .proceso-card h3 { font-size: 20px; }
  .proceso-nota { flex-direction: column; padding: 22px 20px; gap: 18px; }
  .proceso-nota .button { width: 100%; }

  /* ─ Stats ─ */
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    padding: 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
  }

  .stat-item strong { font-size: 36px; }
  .stat-item span { font-size: 13px; }

  /* ─ Solutions ─ */
  .solutions-grid,
  .modules-grid,
  .form-grid,
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .solutions-section .container { padding-inline: 20px; }
  .split-heading { margin-bottom: 34px; }
  .split-heading .section-tag { margin-bottom: 2px; }

  /* ─ Operations ─ */
  .operations-layout { padding-inline: 20px; }
  .operations-intro { margin-bottom: 12px; }

  .operations-panels {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .solution-card,
  .operation-panel,
  .contact-form-shell,
  .flow-shell,
  .final-cta {
    border-radius: 26px;
  }

  .solution-card {
    min-height: 300px;
    padding: 30px 24px 28px;
  }

  .solution-card-featured {
    grid-template-columns: 1fr;
    min-height: 300px;
    padding-right: 24px;
  }

  .solution-card-featured h3 { font-size: 28px; }
  .card-icon { width: 58px; height: 58px; }
  .solution-card::after { top: 24px; right: 24px; }
  .solution-card p { font-size: 16px; }
  .operation-panel { min-height: 400px; }
  .panel-badge { top: 24px; left: 24px; }
  .panel-copy { left: 24px; right: 24px; bottom: 24px; }
  .panel-copy p { font-size: 16px; }

  /* ─ Modules ─ */
  .modules-grid { gap: 16px; }
  .module-chip { min-height: 94px; padding: 20px; font-size: 15px; }

  /* ─ WhatsApp Section ─ */
  .whatsapp-layout { gap: 36px; }
  .whatsapp-lead { font-size: 16px; }
  .wa-feature { grid-template-columns: 36px 1fr; gap: 12px 14px; padding: 16px 0; }
  .wa-feature-icon { width: 36px; height: 36px; }
  .wa-feature h4 { font-size: 15px; }
  .wa-feature p { font-size: 13px; }
  .wa-cta-row { flex-direction: column; align-items: stretch; }
  .wa-cta-row .button { width: 100%; }
  .wa-messages { min-height: 300px; }
  .wa-badge-row { flex-wrap: wrap; }

  /* ─ Services ─ */
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card { padding: 28px 24px; }
  .service-card h3 { font-size: 20px; }
  .services-cta { flex-direction: column; align-items: flex-start; }
  .services-cta .button { width: 100%; }

  /* ─ Value ─ */
  .value-layout { gap: 42px; }
  .value-lead { font-size: 16px; }

  .flow-shell,
  .contact-form-shell,
  .final-cta {
    padding: 24px;
  }

  .flow-shell { min-height: auto; }

  .flow-node-entry,
  .flow-column { width: 100%; max-width: none; }

  .flow-node-entry { margin-top: 30px; }
  .flow-node-entry::before { right: -10px; }
  .flow-node::before,
  .flow-node-entry::before { display: none; }
  .flow-column { margin-top: 26px; gap: 18px; }
  .flow-column .flow-node:nth-child(2),
  .flow-column .flow-node:nth-child(3) { margin-left: 0; }
  .flow-lines { display: none; }

  /* ─ Process ─ */
  .process-timeline {
    gap: 28px;
    padding-top: 18px;
  }

  .process-timeline::before {
    top: 76px;
    bottom: 10px;
    left: 34px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(154, 177, 255, 0.28), rgba(255, 255, 255, 0.02));
  }

  .process-step { padding-top: 0; padding-left: 92px; }
  .process-step::before { top: 44px; left: 28px; }
  .step-number { position: absolute; top: 0; left: 0; width: 68px; height: 68px; font-size: 16px; }
  .process-step h3 { margin-top: 4px; }

  /* ─ FAQ ─ */
  .faq-layout { gap: 36px; }
  .faq-intro h2 { max-width: 100%; }
  .faq-question span { font-size: 16px; }
  .faq-wa-btn { width: 100%; }

  /* ─ Final CTA ─ */
  .final-cta { padding: 38px 24px; }
  .final-cta p,
  .contact-copy > p { font-size: 16px; }
  .final-cta .hero-actions { flex-direction: column; align-items: stretch; }
  .final-cta .hero-actions .button { width: 100%; }

  /* ─ Contact ─ */
  .contact-layout { gap: 36px; }
  .response-box { width: 100%; }
  .contact-wa-btn { width: 100%; }

  /* ─ Footer ─ */
  .site-footer { padding-top: 56px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 24px;
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* ─ Floating WA ─ */
  .whatsapp-float { bottom: 20px; right: 16px; width: 54px; height: 54px; }
  .wa-float-tooltip { display: none; }
}

@media (max-width: 420px) {
  h1 { font-size: 36px; }
  h2 { font-size: 30px; }
  .hero-media { min-height: 440px; }
  .stat-item strong { font-size: 30px; }
  .stat-item span { font-size: 12px; }
}
