/* Tervo landing page styles. */

.lp {
  overflow-x: hidden;
  color: var(--color-text);
}

/* ---- Scroll reveal ----
   [data-reveal] arranca oculto/desplazado; ScrollRevealInit agrega
   is-visible al entrar en viewport (o de una vez si hay reduced-motion). */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 400ms cubic-bezier(0.2, 0, 0, 1), transform 400ms cubic-bezier(0.2, 0, 0, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.lp img, .lp svg { display: block; }
.lp .wrap { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }

.lp-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: saturate(140%) blur(10px);
}

.lp-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.lp-brand b {
  color: var(--color-primary);
  font-weight: 700;
}

.lp-navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
}

.lp .locale-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 2px;
  margin: 0;
  padding: 3px;
  background: var(--color-surface-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
}

.lp .locale-switcher-button {
  min-width: 38px;
  min-height: 36px;
  padding: 4px 8px;
  color: var(--color-muted);
  background: transparent;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  transition: color var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.lp .locale-switcher-button:hover:not(.is-active) {
  color: var(--color-text);
  background: var(--color-surface);
}

.lp .locale-switcher-button.is-active {
  color: #fff;
  background: var(--color-primary);
  box-shadow: var(--shadow-sm);
  cursor: default;
}

.lp .locale-switcher-button:focus-visible {
  outline: 3px solid var(--teal-200);
  outline-offset: 2px;
}

.lp-navlinks a {
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.lp-navlinks a:hover {
  color: var(--color-text);
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition);
}

.lp-btn-primary {
  color: #fff;
  background: var(--color-primary);
}

.lp-btn-primary:hover {
  color: #fff;
  background: var(--color-primary-hover);
}

.lp-btn-primary:visited {
  color: #fff;
}

.lp-navlinks .lp-btn-primary {
  color: #fff;
  box-shadow: 0 1px 0 rgba(18, 59, 56, 0.16);
}

.lp-navlinks .lp-btn-primary:hover {
  color: #fff;
  background: var(--color-primary-hover);
}

.lp-btn-ghost {
  color: var(--color-text);
  background: transparent;
  border-color: var(--color-border);
}

.lp-btn-ghost:hover {
  background: var(--color-surface-muted);
  border-color: var(--color-border-strong);
}

.lp-btn-light {
  color: var(--teal-900);
  background: #fff;
}

.lp-btn-light:hover {
  background: var(--teal-50);
}

.lp-btn-lg {
  height: 52px;
  padding: 0 26px;
  font-size: 1.05rem;
}

.lp-hero {
  background: linear-gradient(180deg, var(--teal-50) 0%, var(--color-surface) 100%);
  border-bottom: 1px solid var(--color-border);
}

.lp-hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 84px 0 88px;
}

.lp-hero .wrap > * {
  min-width: 0;
}

.lp-eyebrow {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 22px;
  padding: 6px 12px;
  color: var(--teal-700);
  background: var(--teal-100);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}

.lp-h1 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 4.6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.lp-h1 .accent {
  color: var(--color-primary);
}

.lp-lead {
  max-width: 38ch;
  margin: 0 0 30px;
  color: var(--slate-700);
  font-size: 1.22rem;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.lp-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.lp-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.lp-proof span {
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
}

.lp-mock {
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lp-mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--color-surface-muted);
  border-bottom: 1px solid var(--color-border);
}

.lp-mock-bar .dot {
  width: 10px;
  height: 10px;
  background: var(--slate-300);
  border-radius: 50%;
}

.lp-mock-bar .ttl {
  margin-left: 8px;
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
}

.lp-mock-shot {
  position: relative;
  line-height: 0;
}

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

.lp-mock-ready {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  color: var(--teal-900);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(31, 95, 91, 0.22);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
}

.lp-mock-insights {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: min(62%, 310px);
  padding: 16px;
  color: var(--slate-800);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(31, 95, 91, 0.25);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(14, 28, 48, 0.22);
  line-height: 1.35;
}

.lp-mock-insights-title {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.lp-mock-insights strong,
.lp-mock-insights p,
.lp-mock-insights small {
  display: block;
  line-height: 1.38;
}

.lp-mock-insights strong {
  margin-bottom: 7px;
  color: var(--navy-900);
  font-size: 0.92rem;
}

.lp-mock-insights p {
  margin: 0 0 9px;
  color: var(--slate-700);
  font-size: 0.82rem;
}

.lp-mock-insights small {
  color: var(--color-muted);
  font-size: 0.7rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.pill::before {
  width: 7px;
  height: 7px;
  background: currentColor;
  border-radius: 50%;
  content: "";
}

.pill.apto {
  color: var(--green-700);
  background: var(--green-100);
}

.pill.novedad {
  color: var(--amber-700);
  background: var(--amber-100);
}

.pill.noapto {
  color: var(--red-700);
  background: var(--red-100);
}

.lp-section {
  padding: 92px 0;
}

.lp-section.tint {
  background: var(--color-surface-muted);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.lp-head {
  max-width: 640px;
  margin: 0 0 52px;
}

.lp-head .k {
  margin: 0 0 12px;
  color: var(--teal-700);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.lp-head h2 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
}

.lp-head p {
  margin: 0;
  color: var(--slate-700);
  font-size: 1.1rem;
  line-height: 1.55;
}

.lp-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.lp-intelligence-card {
  position: relative;
  padding: 30px;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.lp-intelligence-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at top right, var(--teal-100), transparent 68%);
  content: "";
  pointer-events: none;
}

.lp-intelligence-card .ico {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--teal-700);
  background: var(--teal-100);
  border-radius: var(--radius-sm);
}

.lp-intelligence-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.lp-intelligence-card p,
.lp-intelligence-card li {
  color: var(--slate-700);
  line-height: 1.58;
}

.lp-intelligence-card p {
  margin: 0;
}

.lp-intelligence-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.lp-feature {
  padding: 28px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.lp-feature .ico {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--teal-700);
  background: var(--teal-100);
  border-radius: var(--radius-sm);
}

.lp-feature .ico svg {
  width: 22px;
  height: 22px;
}

.lp-feature h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 700;
}

.lp-feature p {
  margin: 0;
  color: var(--slate-700);
  line-height: 1.55;
}

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

.lp-pain {
  min-height: 220px;
  padding: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.lp-pain span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
}

.lp-pain h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.lp-pain p {
  margin: 0;
  color: var(--slate-700);
  line-height: 1.55;
}

.lp-states,
.lp-use-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.lp-state {
  padding: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.lp-use-case {
  display: block;
  min-height: 100%;
  padding: 24px;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.lp-use-case:hover {
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.lp-use-case .pill {
  margin-bottom: 16px;
}

.lp-use-case h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.lp-use-case p {
  margin: 0;
  color: var(--slate-700);
  line-height: 1.55;
}

.lp-state .pill {
  margin-bottom: 14px;
}

.lp-state p {
  margin: 0;
  color: var(--slate-700);
  line-height: 1.55;
}

.lp-sector-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.lp-sector-chips span {
  padding: 9px 14px;
  color: var(--navy-900);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 800;
}

.lp-contact-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.lp-contact-wrap .lp-head {
  margin-bottom: 0;
}

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

.lp-faq-item {
  padding: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.lp-faq-item h3 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-size: 1.08rem;
}

.lp-faq-item p {
  margin: 0;
  color: var(--slate-700);
  line-height: 1.58;
}

.lp-inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.lp-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.lp-field {
  display: grid;
  gap: 7px;
}

.lp-field.full,
.lp-form-message,
.lp-turnstile,
.lp-contact .lp-btn,
.hp-field {
  grid-column: 1 / -1;
}

.lp-field label {
  color: var(--color-text);
  font-size: 0.88rem;
  font-weight: 700;
}

.lp-field input,
.lp-field select,
.lp-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-text);
  font: inherit;
}

.lp-field input,
.lp-field select {
  height: 44px;
  padding: 0 12px;
}

.lp-field textarea {
  min-height: 128px;
  padding: 12px;
  resize: vertical;
}

.lp-field input:focus,
.lp-field select:focus,
.lp-field textarea:focus {
  outline: 2px solid rgba(31, 95, 91, 0.18);
  border-color: var(--color-primary);
}

.lp-form-message {
  display: none;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}

.lp-form-message.success {
  display: block;
  color: var(--green-700);
  background: var(--green-100);
}

.lp-form-message.error {
  display: block;
  color: var(--red-700);
  background: var(--red-100);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lp-band {
  color: #fff;
  background: var(--teal-900);
}

.lp-band .wrap {
  padding: 76px 0;
  text-align: center;
}

.lp-band h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0;
}

.lp-band p {
  max-width: 52ch;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.15rem;
  line-height: 1.55;
}

.lp-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.lp-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 32px 0;
}

.lp-footer .lp-brand {
  font-size: 1.05rem;
}

.lp-footer .meta {
  color: var(--color-muted);
  font-size: 0.88rem;
}

.lp-legal-links {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.lp-legal-links a {
  color: inherit;
  text-decoration: none;
}

.lp-legal-links a:hover {
  color: var(--color-text);
}

.lp-footer .lp-maker {
  color: var(--color-text);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .lp .wrap {
    width: 100%;
    max-width: 100%;
    padding-right: 24px;
    padding-left: 24px;
  }

  .lp-hero .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 56px;
    padding-bottom: 60px;
  }

  .lp-h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
    white-space: normal;
    text-wrap: wrap;
  }

  .lp-lead {
    max-width: 100%;
  }

  .lp-features,
  .lp-intelligence-grid,
  .lp-pain-grid,
  .lp-faq-grid,
  .lp-states,
  .lp-use-cases,
  .lp-contact-wrap {
    grid-template-columns: 1fr;
  }

  .lp-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-contact-wrap {
    gap: 28px;
  }

  .lp-navlinks .hide-sm {
    display: none;
  }

  .lp-section {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .lp .wrap {
    width: 100%;
    max-width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .lp-nav .wrap {
    min-height: 64px;
  }

  .lp-navlinks {
    gap: 12px;
  }

  .lp .locale-switcher-button {
    min-width: 34px;
    min-height: 34px;
    padding-right: 6px;
    padding-left: 6px;
  }

  .lp-navlinks .lp-btn-primary {
    height: 40px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .lp-mock-ready {
    top: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
    padding: 6px 9px;
    font-size: 0.68rem;
  }

  .lp-mock-insights {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -1px;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .lp-h1 {
    width: 100%;
    max-width: 100%;
    font-size: 2rem;
    white-space: normal;
    text-wrap: wrap;
  }

  .lp-lead {
    max-width: 100%;
  }

  .lp-numbers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lp-number {
    padding: 22px 14px;
  }

  .lp-number strong {
    font-size: 1.8rem;
  }

  .lp-contact {
    grid-template-columns: 1fr;
    padding: 20px;
  }

}

/* ---- Numbers bar ---- */
.lp-numbers {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.lp-numbers .wrap {
  padding: 0;
}

.lp-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.lp-number {
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--color-border);
}

.lp-number:last-child {
  border-right: none;
}

.lp-number strong {
  color: var(--color-primary);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.lp-number span {
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

/* Estas reglas deben permanecer después de la definición base de
   .lp-numbers-grid; de otro modo la cuadrícula de cuatro columnas gana por
   cascada y el contenido queda recortado en móvil. */
@media (max-width: 900px) {
  .lp-numbers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-number:nth-child(2n) {
    border-right: 0;
  }

  .lp-number:nth-child(-n + 2) {
    border-bottom: 1px solid var(--color-border);
  }
}

@media (max-width: 360px) {
  .lp-numbers-grid {
    grid-template-columns: 1fr;
  }

  .lp-number {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .lp-number:last-child {
    border-bottom: 0;
  }
}

/* ---- Feature card accents ---- */
.lp-feature {
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.lp-feature:hover {
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.lp-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-primary);
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.lp-feature:hover::before {
  opacity: 1;
}

/* ---- Pain card hover ---- */
.lp-pain {
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.lp-pain:hover {
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}


/* ---- FAQ accordion feel ---- */
.lp-faq-item {
  transition: border-color var(--transition), box-shadow var(--transition);
}

.lp-faq-item:hover {
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   NAVY + TEAL · v2 overrides
   Navy bookends (hero + closing band) with teal accents.
   These later rules win over the lighter originals above.
   ============================================================ */

/* Hero becomes the navy brand moment */
.lp-hero {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border-bottom: 1px solid var(--navy-700);
}

.lp-eyebrow {
  color: #aee3da;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.lp-h1 { color: var(--color-on-brand); }
.lp-h1 .accent { color: var(--teal-bright); }

.lp-lead { color: rgba(255, 255, 255, 0.82); }

.lp-proof { color: rgba(255, 255, 255, 0.7); }
.lp-proof span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

/* Ghost CTA in the hero (scoped so the white-background footer ghost is untouched) */
.lp-hero .lp-btn-ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}
.lp-hero .lp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Closing band: navy instead of deep teal */
.lp-band { background: var(--navy-900); }

.lp-legal {
  padding: 72px 0 86px;
  background: var(--color-surface);
}

.lp-legal .wrap {
  max-width: 860px;
}

.lp-legal .k {
  margin: 0 0 12px;
  color: var(--teal-700);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.lp-legal h1 {
  margin: 0 0 16px;
  color: var(--navy-900);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.lp-legal-lead {
  max-width: 720px;
  margin: 0 0 40px;
  color: var(--slate-700);
  font-size: 1.12rem;
  line-height: 1.6;
}

.lp-legal section {
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
}

.lp-legal h2 {
  margin: 0 0 10px;
  color: var(--color-text);
  font-size: 1.2rem;
}

.lp-legal p,
.lp-legal li {
  color: var(--slate-700);
  line-height: 1.65;
}

.lp-legal p {
  margin: 0;
}

.lp-legal ul {
  margin: 0;
  padding-left: 20px;
}

.lp-legal a {
  color: var(--color-primary);
  font-weight: 700;
}

.lp-legal code {
  font-family: var(--font-mono);
  font-size: 0.92em;
}

/* ---- Video de producto ---- */
.lp-video {
  padding: 92px 0;
  background: var(--color-surface-muted);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.lp-video-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--navy-900);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lp-video-frame iframe,
.lp-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .lp-video { padding: 64px 0; }
}

/* ---- Sectores destacados ---- */
.lp-sector-featured {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.lp-sector-featured article {
  padding: 26px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.lp-sector-featured h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
}

.lp-sector-featured p {
  margin: 0;
  color: var(--slate-700);
  line-height: 1.55;
}

.lp-sector-rest {
  max-width: 78ch;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .lp-sector-featured { grid-template-columns: 1fr; }
}

/* ---- Seguridad: bloque navy ---- */
.lp-trust {
  padding: 92px 0;
  color: var(--color-on-brand);
  background: var(--navy-900);
}

.lp-trust .lp-head h2 { color: var(--color-on-brand); }
.lp-trust .lp-head .k { color: var(--teal-bright); }

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

.lp-trust-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.lp-trust-grid h3 {
  margin: 0 0 10px;
  color: var(--color-on-brand);
  font-size: 1.08rem;
}

.lp-trust-grid p {
  margin: 0;
  color: var(--color-on-brand-muted);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .lp-trust { padding: 64px 0; }
  .lp-trust-grid { grid-template-columns: 1fr; }
}

.lp-use-hero {
  color: #fff;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border-bottom: 1px solid var(--navy-700);
}

.lp-use-hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  gap: 52px;
  align-items: center;
  padding: 78px 0 82px;
}

.lp-use-hero h1 {
  max-width: 780px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.08;
}

.lp-use-hero p {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
  line-height: 1.6;
}

.lp-use-cta {
  margin-top: 28px;
}

.lp-use-hero .lp-btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.lp-use-hero .lp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.lp-use-panel {
  padding: 26px;
  color: var(--color-text);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lp-use-panel h2 {
  margin: 0 0 16px;
  font-size: 1.12rem;
}

.lp-use-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-use-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--slate-700);
  line-height: 1.45;
}

.lp-use-panel li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--color-primary);
  border-radius: 50%;
  content: "";
}

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

.lp-use-card {
  padding: 26px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.lp-use-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.lp-use-card p,
.lp-use-card li {
  color: var(--slate-700);
  line-height: 1.58;
}

.lp-use-card p,
.lp-use-card ul {
  margin: 0;
}

.lp-use-card ul {
  padding-left: 18px;
}

.lp-link-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.lp-link-list a {
  padding: 18px;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
}

.lp-link-list a:hover {
  background: var(--color-surface-muted);
  border-color: var(--color-border-strong);
}

@media (max-width: 900px) {
  .lp-use-hero .wrap,
  .lp-use-grid,
  .lp-link-list {
    grid-template-columns: 1fr;
  }

  .lp-use-hero .wrap {
    padding-top: 58px;
    padding-bottom: 62px;
  }
}

/* ============================================================
   Public product alignment · 2026
   Carries the portal identity into the marketing experience.
   ============================================================ */
.lp-nav {
  color: #fff;
  background:
    linear-gradient(100deg, rgba(34, 58, 92, 0.28), transparent 50%),
    rgba(14, 28, 48, 0.96);
  border-bottom-color: rgba(78, 167, 156, 0.25);
  box-shadow: 0 8px 28px rgba(14, 28, 48, 0.14);
  backdrop-filter: saturate(140%) blur(14px);
}

.lp-nav .wrap { min-height: 72px; }
.lp-brand { color: #fff; }
.lp-brand svg {
  width: 32px;
  height: 32px;
  padding: 3px;
  background: rgba(78, 167, 156, 0.15);
  border: 1px solid rgba(78, 167, 156, 0.3);
  border-radius: 9px;
}

.lp-brand-copy { display: grid; gap: 2px; line-height: 1; }
.lp-brand-copy strong { font-size: 1.06rem; letter-spacing: -0.02em; }
.lp-brand-copy small {
  color: var(--color-on-brand-muted);
  font-size: 0.59rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-navlinks a { color: rgba(255, 255, 255, 0.72); }
.lp-navlinks a:hover { color: #fff; }
.lp-nav .locale-switcher { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.14); }
.lp-nav .locale-switcher-button { color: rgba(255, 255, 255, 0.7); }
.lp-nav .locale-switcher-button:hover:not(.is-active) { color: #fff; background: rgba(255, 255, 255, 0.08); }
.lp-navlinks .lp-btn-primary {
  background: var(--teal-500);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.18);
}

.lp-hero {
  position: relative;
  background:
    radial-gradient(circle at 82% 12%, rgba(78, 167, 156, 0.24), transparent 30rem),
    linear-gradient(135deg, var(--navy-900), var(--navy-800) 72%, #173145);
}

.lp-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.lp-hero .wrap {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: clamp(42px, 5vw, 72px);
  width: min(1240px, calc(100% - 48px));
  padding-block: clamp(78px, 8vw, 112px);
}

.lp-h1 { font-size: clamp(2.75rem, 4.8vw, 4.2rem); font-weight: 750; letter-spacing: -0.045em; }
.lp-eyebrow { border-radius: 9px; }
.lp-btn { border-radius: 9px; }
.lp-btn-primary { box-shadow: 0 7px 18px rgba(31, 95, 91, 0.2); }
.lp-mock {
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(78, 167, 156, 0.12);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.lp-mock-bar { background: #eef1f4; }
.lp-mock-shot img { aspect-ratio: 1385 / 760; object-fit: cover; object-position: top left; }
.lp-mock-ready { top: 14px; left: 14px; border-radius: 8px; }
.lp-section { padding-block: clamp(72px, 8vw, 108px); }
.lp-section.tint { background: linear-gradient(180deg, #f3f7f7, #f8fafb); }
.lp-head .k { letter-spacing: 0.085em; }
.lp-head h2 { font-size: clamp(2rem, 3.6vw, 3rem); letter-spacing: -0.035em; }

.lp-feature,
.lp-intelligence-card,
.lp-pain,
.lp-use-case,
.lp-faq-item,
.lp-sector-featured article {
  border-color: var(--slate-200);
  border-radius: 13px;
  box-shadow: var(--shadow-card);
}

.lp-feature,
.lp-pain,
.lp-use-case,
.lp-faq-item { background: linear-gradient(145deg, #fff, var(--color-surface-muted)); }
.lp-feature .ico, .lp-intelligence-card .ico { border-radius: 10px; }
.lp-contact { border-radius: 15px; box-shadow: var(--shadow-card); }
.lp-field input, .lp-field select, .lp-field textarea { min-height: 46px; border-radius: 9px; }
.lp-footer .lp-brand { color: var(--color-text); }
.lp-footer .lp-brand-copy small { color: var(--color-muted); }

@media (max-width: 900px) {
  .lp-hero .wrap { grid-template-columns: 1fr; width: 100%; }
  .lp-mock { transform: none; }
  .lp-h1 { font-size: clamp(2.5rem, 8vw, 3.6rem); }
}

@media (max-width: 560px) {
  .lp-nav .wrap { min-height: 64px; }
  .lp-brand-copy small { display: none; }
  .lp-brand svg { width: 30px; height: 30px; }
  .lp-hero .wrap { padding-top: 54px; padding-bottom: 64px; }
  .lp-h1 { font-size: 2.35rem; letter-spacing: -0.04em; }
  .lp-mock { border-radius: 11px; }
  .lp-mock-shot img { min-height: 230px; object-fit: cover; object-position: 18% top; }
}
