:root {
  --deep: #0D1B2A;
  --corporate: #1E3A8A;
  --tech: #2563EB;
  --aqua: #14B8A6;
  --steel: #64748B;
  --soft: #F1F5F9;
}
html { scroll-behavior: smooth; }
body { background: var(--deep); }
section[id],
article[id] {
  scroll-margin-top: 5.75rem;
}
.gradient-text {
  background: linear-gradient(90deg, var(--soft) 0%, var(--tech) 45%, var(--aqua) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tech-grid {
  background-image:
    linear-gradient(rgba(37,99,235,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.12) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 45% 35%, black, transparent 70%);
}
.neural-bg {
  background:
    radial-gradient(circle at 20% 20%, rgba(37,99,235,.25), transparent 28%),
    radial-gradient(circle at 80% 50%, rgba(20,184,166,.18), transparent 25%);
}
.card-light {
  border-radius: 1.5rem;
  background: var(--soft);
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
  border: 1px solid rgba(15, 23, 42, .06);
}
.metric-label {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: rgba(37,99,235,.1);
  color: var(--tech);
  font-weight: 900;
  margin-bottom: 1.5rem;
}
.card-light h3 { font-size: 1.5rem; font-weight: 900; }
.card-light p { margin-top: .8rem; color: var(--steel); line-height: 1.7; }
.proof-tile {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  border-radius: 1rem;
  display: grid;
  gap: .45rem;
  min-height: 6.25rem;
  min-width: 0;
  padding: 1rem;
}
.proof-tile strong {
  display: block;
  color: var(--soft);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.15;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.proof-tile span {
  display: block;
  font-size: .82rem;
  line-height: 1.35;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.check-line {
  position: relative;
  padding-left: 1.7rem;
}
.check-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45rem;
  width: .75rem;
  height: .75rem;
  border-radius: 999px;
  background: var(--aqua);
  box-shadow: 0 0 18px rgba(20,184,166,.7);
}
.feature-card {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  border-radius: 1.5rem;
  padding: 1.5rem;
  transition: background .2s ease, transform .2s ease;
}
.feature-card:hover {
  background: rgba(255,255,255,.07);
  transform: translateY(-2px);
}
.feature-card h3 {
  color: var(--soft);
  font-size: 1.2rem;
  font-weight: 900;
}
.feature-card p {
  margin-top: .75rem;
  color: var(--steel);
  line-height: 1.65;
}
.feature-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .9rem;
  background:
    linear-gradient(135deg, rgba(37,99,235,.45), rgba(20,184,166,.22));
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 1rem;
}
.ai-row {
  display: flex;
  align-items: center;
  gap: .8rem;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  border-radius: 1.25rem;
  padding: 1rem;
  color: var(--soft);
  font-weight: 700;
}
.ai-row span {
  width: .8rem;
  height: .8rem;
  border-radius: 999px;
  background: var(--aqua);
  box-shadow: 0 0 20px rgba(20,184,166,.8);
}
.dashboard-mockup {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(255,255,255,.1);
  padding: 1rem;
  background: rgba(13,27,42,.8);
}
.mock-card {
  min-height: 110px;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(37,99,235,.35), rgba(20,184,166,.12));
  border: 1px solid rgba(255,255,255,.1);
  position: relative;
  overflow: hidden;
}
.mock-card::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
}
.mock-card.large { grid-row: span 2; min-height: 235px; }
.mock-card.wide { grid-column: span 2; }
.step-card {
  border-radius: 1.25rem;
  background: var(--soft);
  padding: 1.5rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, .08);
  border: 1px solid rgba(15, 23, 42, .06);
}
.step-card h3 {
  margin-top: 1rem;
  font-size: 1.05rem;
  font-weight: 900;
}
.step-card p {
  margin-top: .75rem;
  color: var(--steel);
  font-size: .9rem;
  line-height: 1.6;
}
.mini-stat {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  border-radius: 1rem;
  padding: 1rem;
}
.mini-stat strong,
.mini-stat span {
  display: block;
}
.mini-stat strong {
  color: var(--soft);
  font-weight: 900;
}
.mini-stat span {
  margin-top: .25rem;
  color: var(--steel);
  font-size: .85rem;
}
.pricing-card {
  position: relative;
  border: 1px solid rgba(15, 23, 42, .08);
  background: var(--soft);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}
.pricing-card.featured {
  border-color: rgba(37,99,235,.42);
  box-shadow: 0 28px 90px rgba(37,99,235,.18);
  transform: translateY(-10px);
}
.pricing-badge {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(20,184,166,.12);
  color: var(--aqua);
  padding: .45rem .75rem;
  font-size: .78rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.pricing-head {
  align-items: center;
  display: flex;
  gap: 1rem;
}
.pricing-icon {
  align-items: center;
  background: rgba(37,99,235,.1);
  border: 1px solid rgba(37,99,235,.18);
  border-radius: 1.1rem;
  color: var(--tech);
  display: inline-flex;
  flex: 0 0 auto;
  height: 3.4rem;
  justify-content: center;
  width: 3.4rem;
}
.pricing-card.featured .pricing-icon {
  background: rgba(20,184,166,.12);
  border-color: rgba(20,184,166,.25);
  color: var(--aqua);
}
.pricing-icon svg {
  fill: currentColor;
  height: 1.85rem;
  width: 1.85rem;
}
.pricing-tier {
  color: var(--steel);
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}
.pricing-card h3 {
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  margin-top: .25rem;
}
.pricing-card .price {
  margin-top: 1.3rem;
  color: var(--tech);
  font-size: 1.45rem;
  font-weight: 900;
}
.pricing-card.featured .price {
  color: var(--corporate);
}
.pricing-card .description {
  margin-top: .85rem;
  color: var(--steel);
  line-height: 1.65;
}
.pricing-card ul {
  display: grid;
  gap: .72rem;
  margin: 1.5rem 0;
  color: var(--steel);
  font-size: .94rem;
}
.pricing-card li {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.45;
}
.pricing-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .35rem;
  width: .65rem;
  height: .65rem;
  border-radius: 999px;
  background: var(--aqua);
}
.primary-price-btn,
.secondary-price-btn {
  display: block;
  width: 100%;
  border-radius: 999px;
  padding: .95rem 1.25rem;
  text-align: center;
  font-weight: 900;
}
.primary-price-btn {
  background: var(--tech);
  color: var(--soft);
  box-shadow: 0 0 38px rgba(37,99,235,.28);
}
.secondary-price-btn {
  border: 1px solid rgba(15, 23, 42, .12);
  color: var(--deep);
}
.trust-card {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  border-radius: 1.25rem;
  padding: 1.35rem;
}
.trust-card strong,
.trust-card span {
  display: block;
}
.trust-card strong {
  color: var(--soft);
  font-size: 1.05rem;
  font-weight: 900;
}
.trust-card span {
  margin-top: .45rem;
  color: var(--steel);
  line-height: 1.6;
}
.legal-links-grid {
  display: grid;
  gap: 1rem;
  margin: 3rem auto 0;
  max-width: 58rem;
}
.legal-link-card {
  align-items: center;
  background: var(--soft);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 1.25rem;
  box-shadow: 0 18px 55px rgba(15, 23, 42, .06);
  color: var(--deep);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
}
.legal-link-card span {
  color: var(--tech);
  font-size: .85rem;
  font-weight: 900;
  text-transform: uppercase;
}
.legal-link-card strong {
  color: var(--corporate);
  font-size: 1.05rem;
  font-weight: 900;
  text-align: right;
}
.legal-link-card:hover {
  border-color: rgba(37,99,235,.35);
  transform: translateY(-2px);
}
.social-placeholders {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.25rem;
}
.social-placeholders a {
  align-items: center;
  border: 1px solid rgba(241,245,249,.14);
  border-radius: 999px;
  color: var(--soft);
  display: inline-flex;
  font-size: .78rem;
  font-weight: 900;
  height: 2.4rem;
  justify-content: center;
  min-width: 2.4rem;
  padding: 0;
}
.social-placeholders svg {
  fill: currentColor;
  height: 1.15rem;
  width: 1.15rem;
}
.social-placeholders a:hover {
  background: rgba(37,99,235,.18);
  border-color: rgba(37,99,235,.5);
}
.whatsapp-float {
  align-items: center;
  background: var(--aqua);
  border: 1px solid rgba(241,245,249,.25);
  border-radius: 999px;
  bottom: 1.4rem;
  box-shadow: 0 18px 48px rgba(20,184,166,.35);
  color: var(--deep);
  display: inline-flex;
  gap: .85rem;
  padding: .75rem 1rem .75rem .75rem;
  position: fixed;
  right: 1.4rem;
  text-decoration: none;
  z-index: 60;
}
.whatsapp-float strong,
.whatsapp-float span span {
  display: block;
}
.whatsapp-float strong {
  font-size: .92rem;
  font-weight: 900;
}
.whatsapp-float span span {
  color: var(--deep);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.2;
}
.whatsapp-icon {
  align-items: center;
  background: var(--soft);
  border-radius: 999px;
  color: var(--aqua);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: .78rem;
  font-weight: 900;
  height: 2.35rem;
  justify-content: center;
  width: 2.35rem;
}
.legal-nav-link {
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: 999px;
  color: var(--deep);
  font-weight: 900;
  padding: .75rem 1rem;
}
.legal-nav-link.active {
  background: var(--tech);
  border-color: var(--tech);
  color: var(--soft);
}
.legal-document {
  background: var(--soft);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 1.5rem;
  box-shadow: 0 18px 55px rgba(15, 23, 42, .06);
  padding: clamp(1.5rem, 4vw, 3rem);
}
.legal-document h1 {
  color: var(--deep);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1;
  margin-top: .75rem;
}
.legal-document .intro {
  color: var(--steel);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 46rem;
}
.legal-document-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
.legal-document-grid section {
  border-top: 1px solid rgba(15, 23, 42, .08);
  padding-top: 1.25rem;
}
.legal-document-grid h2 {
  color: var(--corporate);
  font-size: 1.05rem;
  font-weight: 900;
}
.legal-document-grid p {
  color: var(--steel);
  line-height: 1.7;
  margin-top: .45rem;
}
.reveal { opacity: 0; transform: translateY(28px); transition: .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: .1s; }
.delay-150 { transition-delay: .15s; }
.delay-200 { transition-delay: .2s; }
@media (max-width: 640px) {
  .dashboard-mockup { grid-template-columns: 1fr; }
  .mock-card.large, .mock-card.wide { grid-column: auto; grid-row: auto; }
  .pricing-card.featured { transform: none; }
  .legal-link-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .legal-link-card strong {
    text-align: left;
  }
  .whatsapp-float {
    bottom: 1rem;
    max-width: calc(100vw - 2rem);
    right: 1rem;
  }
  .whatsapp-float span span {
    display: none;
  }
}
@media (min-width: 768px) {
  .legal-links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
