:root {
  --navy: #0F2344;
  --navy-deep: #081530;
  --navy-soft: #1a2f54;
  --teal: #0096C7;
  --teal-dark: #007aa3;
  --aqua: #00C9D4;
  --slate: #5A6A7A;
  --slate-light: #8a98a6;
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --bg-tint: #eef3f7;
  --border: #e3e9ef;
  --teal-tint: #e6f7fa;
  --teal-tint-2: #d3f0f4;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  color-scheme: light only;
  -webkit-color-scheme: light only;
}
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--navy);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
code { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 0.92em; background: rgba(0,150,199,0.1); padding: 1px 6px; border-radius: 4px; color: var(--teal-dark); }
em { font-style: italic; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 35, 68, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s ease, border-color .3s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border);
}
.nav.scrolled .logo-text { color: var(--navy); }
.nav.scrolled .logo-text small { color: var(--slate); }
.nav.scrolled .nav-links a { color: var(--navy); }
.nav.scrolled .nav-cta { background: var(--navy); color: white; }
.nav.scrolled .nav-cta:hover { background: var(--teal); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: white;
}
.logo-mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--aqua) 100%);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 16px;
  box-shadow: 0 6px 16px rgba(0,201,212,0.35);
  flex-shrink: 0;
}
.logo-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.logo-text small {
  display: block;
  font-weight: 500;
  font-size: 11px;
  color: rgba(255,255,255,.6);
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.nav-links {
  display: flex; gap: 28px;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  font-weight: 500;
  font-size: 14px;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--aqua); }
.nav-cta {
  background: var(--teal);
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .15s ease, background .2s ease;
}
.nav-cta:hover { background: var(--aqua); color: var(--navy); transform: translateY(-1px); }
@media (max-width: 720px) { .nav-links { display: none; } }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn-teal {
  background: var(--teal);
  color: white;
  box-shadow: 0 10px 28px -10px rgba(0,150,199,0.6);
}
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); }
.btn-outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.25);
}
.btn-outline-light:hover { border-color: var(--aqua); color: var(--aqua); background: rgba(0,201,212,.06); }
.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--navy-soft); transform: translateY(-2px); }
.btn-full { width: 100%; }
.btn-lg { padding: 17px 30px; font-size: 16px; }

/* ========== HERO ========== */
.hero {
  background: var(--navy);
  color: white;
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: ""; position: absolute; pointer-events: none; z-index: 0;
}
.hero::before {
  top: -260px; right: -180px;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(0,201,212,0.22) 0%, transparent 60%);
  filter: blur(20px);
}
.hero::after {
  bottom: -340px; left: -240px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,150,199,0.16) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 30% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 40%, black 30%, transparent 75%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(0,201,212,0.1);
  border: 1px solid rgba(0,201,212,0.25);
  font-size: 13px;
  font-weight: 600;
  color: var(--aqua);
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 4px rgba(0,201,212,0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0,201,212,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(0,201,212,0); }
}
.hero-title {
  font-weight: 800;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.grad {
  background: linear-gradient(120deg, var(--aqua) 0%, var(--teal) 60%, var(--aqua) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-dark {
  background: linear-gradient(120deg, var(--teal) 0%, var(--navy) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.meta-item strong { color: white; font-weight: 700; margin-right: 4px; }
.meta-divider {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.15);
}

/* ========== HERO MOCKUP ========== */
.hero-mock {
  position: relative;
  height: 520px;
}
.browser {
  position: absolute;
  top: 20px; left: 0; right: 0;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 20px 50px -10px rgba(0,0,0,.4),
    0 0 0 1px rgba(255,255,255,0.08);
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transform-origin: center;
}
.browser-bar {
  background: #f1f3f6;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid #e6e8ec;
}
.dot-r {
  width: 11px; height: 11px; border-radius: 50%;
  flex-shrink: 0;
}
.dot-r.red { background: #ff5f57; }
.dot-r.yellow { background: #febc2e; }
.dot-r.green { background: #28c840; }
.browser-url {
  margin-left: 10px;
  flex: 1;
  background: white;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  color: var(--slate);
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  border: 1px solid #e6e8ec;
}
.browser-body {
  background: white;
  padding: 16px 18px 18px;
}
.bm-nav {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f2f5;
  margin-bottom: 16px;
}
.bm-logo {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--teal), var(--aqua));
}
.bm-links { display: flex; gap: 10px; flex: 1; }
.bm-links span {
  width: 36px; height: 7px;
  background: #e6e8ec; border-radius: 4px;
}
.bm-cta {
  font-size: 11px;
  background: var(--navy);
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.bm-hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 14px;
  background: linear-gradient(135deg, #f5f9fb 0%, #eaf6f8 100%);
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 14px;
  position: relative;
}
.bm-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 8px;
}
.bm-h1 {
  height: 12px;
  background: var(--navy);
  border-radius: 3px;
  margin-bottom: 6px;
}
.bm-h1.short { width: 60%; margin-bottom: 12px; }
.bm-p {
  height: 5px;
  background: #c5cdd5;
  border-radius: 3px;
  margin-bottom: 4px;
}
.bm-p.short { width: 70%; margin-bottom: 14px; }
.bm-btn {
  display: inline-block;
  font-size: 10px;
  background: var(--teal);
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
}
.bm-hero-shape {
  position: relative;
  min-height: 100px;
}
.shape-circle {
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--aqua));
  top: 0; right: 0;
  box-shadow: 0 8px 16px rgba(0,150,199,0.25);
}
.shape-square {
  position: absolute;
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 8px;
  bottom: 0; left: 10px;
  transform: rotate(12deg);
}
.shape-tri {
  position: absolute;
  width: 0; height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 30px solid var(--aqua);
  bottom: 8px; right: 24px;
  opacity: .65;
}
.bm-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.bm-card {
  background: white;
  border: 1px solid #eef0f3;
  border-radius: 8px;
  padding: 10px;
}
.bm-icn {
  width: 22px; height: 22px;
  background: var(--teal-tint);
  border-radius: 6px;
  margin-bottom: 8px;
  position: relative;
}
.bm-icn::before {
  content: ""; position: absolute;
  inset: 5px;
  background: var(--teal);
  border-radius: 3px;
}
.bm-icn.alt { background: rgba(0,201,212,0.15); }
.bm-icn.alt::before { background: var(--aqua); }
.bm-line {
  height: 5px; background: #d8dde3; border-radius: 3px; margin-bottom: 4px;
}
.bm-line.short { width: 60%; }

/* Phone */
.phone {
  position: absolute;
  bottom: -10px;
  right: -20px;
  width: 200px;
  background: var(--navy-deep);
  border-radius: 28px;
  padding: 10px;
  box-shadow:
    0 24px 50px -10px rgba(0,0,0,.55),
    0 0 0 1.5px rgba(255,255,255,0.06);
  z-index: 2;
}
.phone-notch {
  width: 60px; height: 16px;
  background: var(--navy-deep);
  border-radius: 0 0 12px 12px;
  margin: 0 auto 4px;
  position: relative; z-index: 2;
}
.phone-screen {
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f7 100%);
  border-radius: 20px;
  padding: 12px 11px 14px;
  min-height: 280px;
  margin-top: -8px;
  position: relative;
}
.phone-status {
  display: flex; justify-content: space-between;
  font-size: 9px; font-weight: 700;
  color: var(--navy);
  padding: 0 4px 8px;
}
.chat-bubble {
  display: flex; gap: 6px; margin-bottom: 8px;
  align-items: flex-end;
}
.chat-bubble.user { justify-content: flex-end; }
.bubble-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--aqua));
  color: white;
  font-size: 10px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bubble-text {
  background: white;
  border-radius: 12px 12px 12px 3px;
  padding: 7px 10px;
  font-size: 10px;
  line-height: 1.4;
  color: var(--navy);
  max-width: 130px;
  box-shadow: 0 2px 6px rgba(15,35,68,.06);
}
.chat-bubble.user .bubble-text {
  background: var(--teal);
  color: white;
  border-radius: 12px 12px 3px 12px;
}
.chat-bubble.typing .bubble-text {
  display: flex; gap: 3px; padding: 9px 11px;
}
.dot-typ {
  width: 5px; height: 5px;
  background: var(--slate-light);
  border-radius: 50%;
  animation: typ 1.2s ease-in-out infinite;
}
.dot-typ:nth-child(2) { animation-delay: .15s; }
.dot-typ:nth-child(3) { animation-delay: .3s; }
@keyframes typ {
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-2px); }
}
.phone-tag {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 700;
  background: rgba(0,201,212,0.15);
  color: var(--teal-dark);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,201,212,0.3);
}

/* Floating chips */
.chip {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 14px 30px -8px rgba(0,0,0,.4);
  z-index: 3;
  animation: float 5s ease-in-out infinite;
}
.chip strong { display: block; font-size: 12px; color: var(--navy); font-weight: 700; }
.chip small { display: block; font-size: 10px; color: var(--slate); font-weight: 500; margin-top: 1px; }
.chip-ico {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fef9ef, #fdebc8);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.chip-ico-teal { background: linear-gradient(135deg, var(--teal-tint), var(--teal-tint-2)); }
.chip-1 { top: -10px; left: -30px; animation-delay: 0s; }
.chip-2 { bottom: 60px; left: -10px; animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-mock { height: 480px; max-width: 540px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .hero { padding: 50px 0 90px; }
  .hero-mock { height: 440px; }
  .browser { transform: none; }
  .phone { width: 170px; right: -10px; }
  .chip-1 { left: -10px; }
  .chip-2 { left: auto; right: -10px; bottom: 30px; }
}

/* ========== SOCIAL PROOF ========== */
.proof {
  background: var(--bg-tint);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.proof-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
}
.proof-item { text-align: center; }
.proof-num {
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.proof-label {
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
  margin-top: 4px;
}
.proof-divider {
  width: 1px; height: 40px;
  background: var(--border);
}
@media (max-width: 720px) {
  .proof-grid { flex-direction: column; gap: 18px; }
  .proof-divider { display: none; }
}

/* ========== SECTION HEAD ========== */
.section-head {
  margin-bottom: 56px;
  max-width: 760px;
}
.section-head.center { margin: 0 auto 60px; text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-eyebrow.on-dark { color: var(--aqua); }
.section-title {
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-wrap: pretty;
}
.section-title.big { font-size: clamp(32px, 4.2vw, 52px); }
.on-dark .section-title { color: white; }
.section-lead {
  margin-top: 14px;
  font-size: 17px;
  color: var(--slate);
  max-width: 600px;
}
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }
.on-dark .section-lead { color: rgba(255,255,255,0.6); }

/* ========== PROBLEM ========== */
.problem {
  padding: 100px 0;
  background: var(--bg);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,150,199,0.3);
  box-shadow: 0 20px 40px -20px rgba(15,35,68,0.2);
}
.problem-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--border);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.problem-icon svg { width: 28px; height: 28px; }
.problem-card h3 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.problem-card p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.problem-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-dark);
  background: var(--teal-tint);
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
@media (max-width: 800px) { .problem-grid { grid-template-columns: 1fr; gap: 18px; } .problem { padding: 70px 0; } }

/* ========== SERVICIOS ========== */
.services {
  padding: 100px 0;
  background: var(--bg-soft);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 22px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -18px rgba(15,35,68,0.22);
}
.service-card.featured {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.service-card.featured h3, .service-card.featured p { color: white; }
.service-card.featured p { color: rgba(255,255,255,0.7); }
.service-icn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px -6px rgba(0,150,199,0.45);
}
.service-card.featured .service-icn { background: var(--aqua); color: var(--navy); box-shadow: 0 8px 18px -6px rgba(0,201,212,0.5); }
.service-icn svg { width: 26px; height: 26px; }
.service-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
}
@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .services-grid { grid-template-columns: 1fr; } .services { padding: 70px 0; } }

/* ========== PRICING ========== */
.pricing {
  background: var(--bg-soft);
  padding: 110px 0 100px;
  border-top: 1px solid var(--border);
  position: relative;
}
.pricing::before {
  content: ""; position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 90%; max-width: 700px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}
.plans {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 36px;
}
.plan {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 34px 28px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -24px rgba(15,35,68,0.22); }
.plan-featured {
  border: 2px solid var(--teal);
  background: white;
  box-shadow:
    0 30px 60px -20px rgba(0,150,199,0.35),
    0 0 0 6px rgba(0,201,212,0.06);
  transform: translateY(-12px);
  z-index: 2;
}
.plan-featured:hover { transform: translateY(-16px); }
.plan-badge {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal), var(--aqua));
  color: white;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 20px -6px rgba(0,150,199,0.5);
  white-space: nowrap;
}
.plan-head { margin-bottom: 22px; }
.plan-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.plan-tag {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
  margin-bottom: 22px;
  min-height: 42px;
}
.plan-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--border);
}
.price-amt {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--navy);
  line-height: 1;
}
.plan-featured .price-amt {
  background: linear-gradient(120deg, var(--teal), var(--navy));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-unit {
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
}
.price-unit strong { color: var(--navy); font-weight: 700; }

.plan-callout {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--teal-tint);
  border: 1px solid var(--teal-tint-2);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin: 22px 0;
}
.plan-callout.featured {
  background: linear-gradient(135deg, var(--teal), var(--aqua));
  border-color: transparent;
  color: white;
}
.plan-callout.featured .callout-ico { filter: brightness(2); }
.callout-ico { font-size: 16px; line-height: 1.2; flex-shrink: 0; }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
  flex: 1;
}
.plan-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
}
.plan-features li.ok { color: var(--navy); }
.plan-features li.no { color: var(--slate-light); }
.plan-features li small {
  display: block;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--slate);
  margin-top: 3px;
  line-height: 1.45;
}
.check {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.ok .check {
  background: var(--teal-tint);
  color: var(--teal-dark);
}
.plan-featured .ok .check {
  background: var(--teal);
  color: white;
}
.no .check {
  background: #f1f3f6;
  color: var(--slate-light);
}

.plan-foot {
  font-size: 12.5px;
  color: var(--slate);
  line-height: 1.5;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
}
.plan-foot strong { color: var(--navy); font-weight: 700; }

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--slate);
  max-width: 760px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .plans { grid-template-columns: 1fr; gap: 28px; }
  .plan-featured { transform: none; order: -1; }
  .plan-featured:hover { transform: translateY(-4px); }
}

/* ========== FAQ ========== */
.faq {
  max-width: 760px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
}
.faq-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
  text-align: center;
}
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border-top: 1px solid var(--border);
  padding: 4px 0;
}
.faq-item:first-child { border-top: none; }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  transition: transform .25s ease, background .25s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-chev { transform: rotate(45deg); background: var(--teal); color: white; }
.faq-item p {
  padding: 0 4px 18px;
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ========== PROCESO ========== */
.process {
  background: var(--navy);
  color: white;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: ""; position: absolute;
  top: 50%; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,201,212,0.12) 0%, transparent 60%);
  transform: translateY(-50%);
  pointer-events: none;
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
  list-style: none;
}
.steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--aqua) 50%, var(--teal) 100%);
  opacity: 0.4;
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--aqua);
  color: var(--aqua);
  font-weight: 800;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  letter-spacing: -0.01em;
  box-shadow: 0 0 0 6px rgba(15,35,68,1), 0 8px 24px -6px rgba(0,201,212,0.45);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.step:hover .step-num {
  background: var(--aqua); color: var(--navy); transform: scale(1.05);
}
.step h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps::before { display: none; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .process { padding: 70px 0; }
}

/* ========== SECTORES ========== */
.sectors { padding: 100px 0; background: var(--bg); }
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.sector {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 14px;
  text-align: center;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.sector:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  background: white;
  box-shadow: 0 14px 30px -14px rgba(0,150,199,0.3);
}
.sector-ico {
  font-size: 32px;
  margin-bottom: 10px;
  filter: grayscale(0.1);
}
.sector span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
@media (max-width: 800px) { .sectors-grid { grid-template-columns: repeat(3, 1fr); } .sectors { padding: 70px 0; } }
@media (max-width: 420px) { .sectors-grid { grid-template-columns: repeat(2, 1fr); } }

/* ========== FINAL CTA ========== */
.final-cta {
  background: var(--navy);
  color: white;
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,201,212,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-card {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 0 80px;
}
.cta-shape {
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  opacity: 0.5;
  z-index: 0;
}
.cta-shape svg { width: 100%; height: 100%; animation: rot 30s linear infinite; }
@keyframes rot { to { transform: rotate(360deg); } }
.cta-card > * { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 14px 0 18px;
}
.cta-lead {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 32px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.cta-wa svg { flex-shrink: 0; }
.cta-loc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; color: white; }
.footer-tag { color: var(--aqua); font-weight: 600; }

/* ========== DISCOUNT STRIP ========== */
.discount-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 24px;
  margin: 36px auto 28px;
  max-width: 760px;
  box-shadow: 0 8px 24px -16px rgba(15,35,68,0.15);
}
.disc-item {
  display: flex; align-items: center; gap: 10px;
}
.disc-pct {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--teal), var(--aqua));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.disc-text {
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
}
.disc-divider { width: 1px; height: 28px; background: var(--border); }
@media (max-width: 720px) {
  .discount-strip { gap: 14px; flex-direction: column; }
  .disc-divider { display: none; }
}

/* ========== ADD-ONS ========== */
.addons {
  background: var(--bg);
  padding: 100px 0;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.addon-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.addon-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  box-shadow: 0 18px 36px -18px rgba(0,150,199,0.25);
}
.addon-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 4px;
}
.addon-ico {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--teal-tint);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.addon-card h4 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.addon-card p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.5;
  flex: 1;
}
.addon-price {
  font-size: 13px;
  color: var(--slate);
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  margin-top: 4px;
}
.addon-price strong {
  color: var(--navy);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
}
@media (max-width: 1000px) { .addons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .addons-grid { grid-template-columns: 1fr; } .addons { padding: 70px 0; } }

/* ========== REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .chip, .dot-typ, .eyebrow .dot, .cta-shape svg { animation: none; }
}

/* ========== FOOTER LINKS ========== */
.footer-inner { row-gap: 8px; }
.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-links a:hover { color: var(--aqua); }

/* ========== LEAD FORM ========== */
.lead-form {
  max-width: 560px;
  margin: 30px auto 28px;
  text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 26px 24px 22px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lead-form-title {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.lead-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.lead-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.lead-row .lead-field { margin-bottom: 0; }
.lead-field span {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}
.lead-field input,
.lead-field textarea {
  font-family: inherit;
  font-size: 14.5px;
  color: white;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 11px 14px;
  transition: border-color .2s ease, background .2s ease;
  width: 100%;
}
.lead-field input::placeholder,
.lead-field textarea::placeholder { color: rgba(255,255,255,0.35); }
.lead-field input:focus,
.lead-field textarea:focus {
  outline: none;
  border-color: var(--aqua);
  background: rgba(0,201,212,0.08);
}
.lead-field textarea { resize: vertical; min-height: 70px; }
.lead-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin: 6px 0 16px;
  line-height: 1.45;
  cursor: pointer;
}
.lead-consent input {
  margin-top: 3px;
  width: 16px; height: 16px;
  accent-color: var(--teal);
  flex-shrink: 0;
}
.lead-consent a { color: var(--aqua); text-decoration: underline; }
.lead-status {
  font-size: 13.5px;
  text-align: center;
  margin-top: 12px;
  min-height: 18px;
  font-weight: 600;
}
.lead-status.ok { color: var(--aqua); }
.lead-status.err { color: #ff8b8b; }
.lead-fallback {
  text-align: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
}
.lead-fallback a { color: rgba(255,255,255,0.8); text-decoration: underline; }
.lead-form button[disabled] { opacity: 0.6; cursor: progress; }
@media (max-width: 560px) {
  .lead-row { grid-template-columns: 1fr; gap: 0; }
  .lead-form { padding: 22px 18px 18px; }
}

/* ========== WHATSAPP FAB ========== */
.wa-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 20px 14px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: 0 14px 30px -8px rgba(37,211,102,0.55), 0 0 0 6px rgba(37,211,102,0.12);
  transition: transform .2s ease, box-shadow .2s ease, padding .2s ease;
  text-decoration: none;
}
.wa-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -8px rgba(37,211,102,0.65), 0 0 0 8px rgba(37,211,102,0.15);
}
.wa-fab svg { flex-shrink: 0; }
.wa-fab-text { line-height: 1; }
@media (max-width: 600px) {
  .wa-fab { padding: 14px; bottom: 16px; right: 16px; }
  .wa-fab-text { display: none; }
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 95;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 24px 60px -10px rgba(15,35,68,0.35);
  padding: 18px 22px;
  max-width: 760px;
  margin: 0 auto;
  animation: cookieSlide .4s cubic-bezier(.2,.7,.2,1);
}
@keyframes cookieSlide {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text strong {
  display: block;
  font-size: 14.5px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.cookie-text p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.5;
  margin: 0;
}
.cookie-text a { color: var(--teal-dark); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 11px 20px; font-size: 14px; }
.btn-outline-dark {
  background: white;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline-dark:hover { border-color: var(--navy); background: var(--bg-soft); }
@media (max-width: 600px) {
  .cookie-banner { padding: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}

/* ========== LEGAL PAGES ========== */
.legal-page {
  background: var(--bg);
  min-height: 100vh;
}
.legal-hero {
  background: var(--navy);
  color: white;
  padding: 110px 0 70px;
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: ""; position: absolute;
  top: -240px; right: -180px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,201,212,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.legal-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.legal-hero p {
  margin-top: 12px;
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  position: relative;
  z-index: 1;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  color: var(--aqua);
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.legal-back:hover { color: white; }
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--navy);
}
.legal-content h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 38px 0 14px;
  letter-spacing: -0.01em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 22px 0 8px;
}
.legal-content p { margin-bottom: 14px; color: var(--slate); }
.legal-content ul { margin: 0 0 16px 22px; color: var(--slate); }
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--teal-dark); text-decoration: underline; }
.legal-content strong { color: var(--navy); }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 22px;
  font-size: 14px;
}
.legal-table th, .legal-table td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.legal-table th { background: var(--bg-soft); font-weight: 700; color: var(--navy); }
.legal-table td { color: var(--slate); }
.legal-meta {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--slate-light);
}

/* ── Demos teaser section ── */
.demos-teaser {
  padding: 100px 0;
  background: var(--navy);
}
.demos-teaser .section-eyebrow { color: var(--teal); }
.demos-teaser .section-title { color: #fff; }
.demos-teaser .section-title em { color: var(--teal); font-style: normal; }
.demos-teaser .section-lead { color: rgba(255,255,255,0.65); }

.demos-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.demo-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px 22px;
  text-decoration: none;
  color: #fff;
  transition: background .2s, border-color .2s, transform .2s;
}
.demo-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--accent, #00C9D4);
  transform: translateY(-3px);
}
.demo-card-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.07);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.demo-card-body { flex: 1; }
.demo-card-type {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent, #00C9D4); margin-bottom: 4px;
}
.demo-card-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.demo-card-feat { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.4; }
.demo-card-arrow {
  font-size: 18px; color: rgba(255,255,255,0.3);
  transition: color .2s, transform .2s;
  flex-shrink: 0;
}
.demo-card:hover .demo-card-arrow {
  color: var(--accent, #00C9D4);
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .demos-cards { grid-template-columns: 1fr; }
}
