/* ============================================================
   SuperEmpleos — Landing Page CSS
   File: /modules/landing/css/landing.css
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:      #0D1F44;
  --navy2:     #1A3460;
  --blue:      #2563EB;
  --blue-dk:   #1D4ED8;
  --blue-lt:   #EEF4FF;
  --blue-mid:  #BFDBFE;
  --teal:      #0D9488;
  --teal-lt:   #F0FDFA;
  --teal-dk:   #0F766E;
  --gold:      #D97706;
  --gold-lt:   #FEF3C7;
  --text:      #0D1F44;
  --text-md:   #3D5070;
  --text-sm:   #7A8BA8;
  --bg:        #F8FAFC;
  --bg2:       #FFFFFF;
  --bg3:       #EEF2F7;
  --border:    #E2E8F0;
  --border2:   #CBD5E1;
  --shadow:    0 1px 3px rgba(13,31,68,.06), 0 4px 16px rgba(13,31,68,.06);
  --shadow-md: 0 4px 24px rgba(13,31,68,.12);
  --shadow-lg: 0 12px 48px rgba(13,31,68,.16);
  --radius:    14px;
  --radius-lg: 22px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── Navbar ─────────────────────────────────────────────────── */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 70px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226,232,240,0.8);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  transition: transform .35s cubic-bezier(.4,0,.2,1), background .3s;
}
.lp-nav.hidden { transform: translateY(-100%); }
.lp-nav.scrolled { background: rgba(255,255,255,0.98); box-shadow: var(--shadow); }

.lp-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 20px; letter-spacing: -0.5px; color: var(--navy);
}
.lp-logo img { height: 42px; width: auto; display: block; }
.lp-logo-text span { color: var(--blue); }

.lp-nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.lp-nav-links a {
  color: var(--text-md); font-size: 14px; font-weight: 500;
  transition: color .2s; letter-spacing: .1px;
}
.lp-nav-links a:hover { color: var(--navy); }
.lp-lang-switcher { display: flex; align-items: center; gap: 8px; }
.lp-lang-flag {
  opacity: .45; transition: opacity .2s, transform .2s;
  text-decoration: none; display: flex; align-items: center;
  border-radius: 3px; overflow: hidden;
}
.lp-lang-flag:hover { opacity: .8; transform: scale(1.08); }
.lp-lang-flag.active { opacity: 1; }
.lp-flag-img { width: 24px; height: 17px; object-fit: cover; display: block; border-radius: 3px; }
.lp-lang-sep { color: var(--border2); font-size: 13px; user-select: none; }

.lp-nav-login {
  color: var(--navy) !important; font-weight: 600 !important;
  font-size: 14px; padding: 8px 16px; border-radius: 9px;
  border: 1.5px solid var(--border2); transition: border-color .2s, background .2s !important;
}
.lp-nav-login:hover { border-color: var(--navy) !important; background: var(--bg3) !important; }

.lp-nav-cta {
  background: var(--navy) !important; color: #fff !important;
  padding: 9px 22px; border-radius: 10px; font-size: 14px; font-weight: 600;
  transition: background .2s, transform .2s !important;
}
.lp-nav-cta:hover { background: var(--blue) !important; transform: translateY(-1px) !important; }

/* ── Buttons ─────────────────────────────────────────────────── */
.lp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; font-family: inherit;
  border: none; cursor: pointer; transition: all .22s cubic-bezier(.4,0,.2,1);
  letter-spacing: -.1px; white-space: nowrap;
}
.lp-btn-primary { background: var(--blue); color: #fff; }
.lp-btn-primary:hover { background: var(--blue-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,.35); }
.lp-btn-outline {
  background: #fff; color: var(--navy);
  border: 1.5px solid var(--border2);
}
.lp-btn-outline:hover { border-color: var(--navy); background: var(--bg3); transform: translateY(-1px); }

/* ── Hero ──────────────────────────────────────────────────── */
.lp-hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  position: relative; overflow: hidden;
}

/* Left panel */
.lp-hero-left {
  padding: 110px 5% 80px 7%;
  background: linear-gradient(145deg, #0D1F44 0%, #1A3460 55%, #1E3A6E 100%);
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden; z-index: 1;
}
.lp-hero-left::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.18) 0%, transparent 65%);
  pointer-events: none;
}
.lp-hero-left::after {
  content: '';
  position: absolute; bottom: -150px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(13,148,136,.12) 0%, transparent 65%);
  pointer-events: none;
}

.lp-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px; padding: 6px 16px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.85);
  margin-bottom: 30px; letter-spacing: .8px; text-transform: uppercase;
  width: fit-content;
}
.lp-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #34D399; animation: lpBlink 2.2s infinite;
  flex-shrink: 0;
}
@keyframes lpBlink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.8)} }

.lp-hero-h1 {
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 800; letter-spacing: -2.5px; line-height: 1.08;
  color: #FFFFFF; margin-bottom: 22px;
}
.lp-hero-h1 em { font-style: normal; color: #60A5FA; }

.lp-hero-sub {
  font-size: 16px; color: rgba(255,255,255,.68);
  max-width: 420px; margin-bottom: 44px; line-height: 1.75;
  font-weight: 400;
}

/* ── Two Action Cards ──────────────────────────────────────── */
.lp-action-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 40px;
}

.lp-action-card {
  position: relative; overflow: hidden;
  border-radius: 18px; padding: 28px 24px 26px;
  cursor: pointer; transition: all .3s cubic-bezier(.4,0,.2,1);
  text-decoration: none; display: flex; flex-direction: column;
  border: 1px solid transparent;
}
.lp-action-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.lp-action-card:hover .lp-card-arrow { transform: translate(3px,-3px); }

/* Card: CV */
.lp-card-cv {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 60%, #1E40AF 100%);
  box-shadow: 0 8px 32px rgba(37,99,235,.4);
}
.lp-card-cv:hover { box-shadow: 0 16px 48px rgba(37,99,235,.55); }

/* Card: Solicitud */
.lp-card-sol {
  background: linear-gradient(135deg, #0D9488 0%, #0F766E 60%, #115E59 100%);
  box-shadow: 0 8px 32px rgba(13,148,136,.4);
}
.lp-card-sol:hover { box-shadow: 0 16px 48px rgba(13,148,136,.55); }

.lp-card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px; flex-shrink: 0;
  transition: background .2s;
}
.lp-action-card:hover .lp-card-icon { background: rgba(255,255,255,.26); }

.lp-card-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(255,255,255,.65); font-weight: 600; margin-bottom: 7px;
}
.lp-card-title {
  font-size: 19px; font-weight: 800; color: #fff;
  letter-spacing: -.5px; line-height: 1.2; margin-bottom: 9px;
}
.lp-card-desc {
  font-size: 13px; color: rgba(255,255,255,.72);
  line-height: 1.6; flex: 1;
}
.lp-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.lp-card-cta {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,.9);
  text-transform: uppercase; letter-spacing: .8px;
}
.lp-card-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px;
  transition: transform .25s cubic-bezier(.4,0,.2,1), background .2s;
}
.lp-action-card:hover .lp-card-arrow { background: rgba(255,255,255,.28); }

/* Decorative shape inside card */
.lp-card-shape {
  position: absolute; bottom: -20px; right: -20px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,.06); pointer-events: none;
}
.lp-card-shape2 {
  position: absolute; top: -10px; right: 30px;
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,.04); pointer-events: none;
}

/* Hero trust row */
.lp-hero-trust {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.lp-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,.55); font-weight: 500;
}
.lp-trust-dot { color: #34D399; font-size: 10px; }

/* ── Hero Right (image panel) ──────────────────────────────── */
.lp-hero-right {
  position: relative; min-height: 100vh;
  overflow: hidden;
}
.lp-hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block; position: absolute; inset: 0;
  filter: brightness(.85) saturate(1.1);
}
/* Dark overlay */
.lp-hero-right::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(13,31,68,.45) 0%, rgba(13,31,68,.05) 60%, transparent 100%);
}

/* Floating stats badge */
.lp-float-badge {
  position: absolute; z-index: 2;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  animation: lpFloat 4s ease-in-out infinite;
}
.lp-float-badge1 { top: 25%; left: 20px; }
.lp-float-badge2 { bottom: 30%; right: 24px; animation-delay: 1.5s; }
.lp-float-badge3 { top: 62%; left: 24px; animation-delay: .8s; }

@keyframes lpFloat {
  0%,100%{ transform: translateY(0); }
  50%    { transform: translateY(-10px); }
}

.lp-badge-row { display: flex; align-items: center; gap: 10px; }
.lp-badge-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.lp-badge-icon-blue { background: var(--blue-lt); }
.lp-badge-icon-teal { background: var(--teal-lt); }
.lp-badge-icon-gold { background: var(--gold-lt); }
.lp-badge-num {
  font-size: 20px; font-weight: 800; color: var(--navy);
  font-family: 'Inter', sans-serif; letter-spacing: -1px; line-height: 1;
}
.lp-badge-lbl { font-size: 11px; color: var(--text-sm); font-weight: 500; margin-top: 2px; }

/* Privacy pill */
.lp-privacy-pill {
  position: absolute; z-index: 2; top: 14%;
  left: 50%; transform: translateX(-50%);
  background: rgba(13,31,68,.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px; padding: 8px 18px;
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.9); font-size: 12px; font-weight: 600;
  white-space: nowrap;
}
.lp-pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #34D399; flex-shrink: 0;
  box-shadow: 0 0 6px #34D399;
}

/* ── Cards section (below hero) ─────────────────────────────── */
.lp-cards-section {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 72px 7%;
}
.lp-cards-inner { max-width: 860px; margin: 0 auto; }
.lp-cards-heading { text-align: center; margin-bottom: 40px; }
.lp-cards-heading .lp-section-title { margin-bottom: 0; }

/* Wider cards when displayed below hero on light bg */
.lp-action-cards--below {
  max-width: 800px;
  margin: 0 auto;
  gap: 24px;
}
.lp-action-cards--below .lp-action-card {
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
}
.lp-card-top { flex: 1; }
.lp-action-cards--below .lp-card-icon {
  width: 58px; height: 58px; font-size: 26px; border-radius: 16px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
}
.lp-action-cards--below .lp-card-title { font-size: 22px; margin-bottom: 10px; }
.lp-action-cards--below .lp-card-desc  { font-size: 14px; margin-bottom: 0; }

/* Security nodes inside cards */
.lp-card-nodes {
  display: flex; flex-wrap: wrap; gap: 7px;
  margin: 20px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
.lp-node {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px; padding: 4px 11px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.9);
  letter-spacing: .2px; white-space: nowrap;
}
.lp-node i { font-size: 12px; }

@media (max-width: 768px) {
  .lp-cards-section { padding: 52px 5%; }
  .lp-action-cards--below { gap: 16px; }
}

/* ── Shield / Data Protection Section ───────────────────────── */
.lp-shield-section {
  background: linear-gradient(160deg, #0D1F44 0%, #0F2A58 55%, #0D1F44 100%);
  padding: 96px 7%;
  position: relative; overflow: hidden;
}
.lp-shield-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.15) 0%, transparent 65%);
  pointer-events: none;
}
.lp-shield-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}

/* Visual side */
.lp-shield-visual {
  position: relative; display: flex;
  align-items: center; justify-content: center;
  height: 380px;
}
.lp-shield-icon-wrap { position: relative; z-index: 2; }
.lp-shield-rings { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.lp-ring {
  border-radius: 50%; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); border: 1px solid rgba(37,99,235,.25);
  animation: lpPulse 3s ease-in-out infinite;
}
.lp-ring1 { width: 160px; height: 160px; animation-delay: 0s; }
.lp-ring2 { width: 240px; height: 240px; animation-delay: .6s; border-color: rgba(37,99,235,.15); }
.lp-ring3 { width: 320px; height: 320px; animation-delay: 1.2s; border-color: rgba(37,99,235,.08); }
@keyframes lpPulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
  50%      { transform: translate(-50%,-50%) scale(1.05); opacity: .6; }
}
.lp-shield-center {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  display: flex; align-items: center; justify-content: center;
  font-size: 44px; color: #fff;
  box-shadow: 0 0 0 8px rgba(37,99,235,.2), 0 0 40px rgba(37,99,235,.4);
  position: relative; z-index: 3;
}
.lp-shield-center i { color: #fff; }

/* Floating data nodes around shield */
.lp-shield-node {
  position: absolute; z-index: 4;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 100px; padding: 7px 14px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.75);
  display: flex; align-items: center; gap: 7px; white-space: nowrap;
  animation: lpFloat 4s ease-in-out infinite;
}
.lp-shield-node i { font-size: 14px; color: #60A5FA; }
.lp-sn1 { top: 15%;  left: 0;   animation-delay: 0s; }
.lp-sn2 { top: 35%;  right: 0;  animation-delay: .7s; }
.lp-sn3 { bottom: 30%; left: 5%; animation-delay: 1.4s; }
.lp-sn4 { top: 60%;  right: 5%; animation-delay: .3s; }
.lp-sn5 { bottom: 12%; right: 15%; animation-delay: 1s; }

/* Copy side */
.lp-shield-badge-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,.2); border: 1px solid rgba(37,99,235,.35);
  border-radius: 100px; padding: 6px 16px;
  font-size: 12px; font-weight: 700; color: #93C5FD;
  letter-spacing: .5px; text-transform: uppercase;
}
.lp-shield-badge-label i { font-size: 14px; }
.lp-shield-section .lp-section-title { color: #fff; }
.lp-shield-section .lp-section-title em { color: #60A5FA; }
.lp-shield-section .lp-section-sub { color: rgba(255,255,255,.6); }

/* Rules list */
.lp-shield-rules { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.lp-shield-rule { display: flex; gap: 14px; align-items: flex-start; }
.lp-shield-rule-icon {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.lp-shield-rule-red  { background: rgba(239,68,68,.15);  color: #FCA5A5; border: 1px solid rgba(239,68,68,.25); }
.lp-shield-rule-blue { background: rgba(37,99,235,.15);  color: #93C5FD; border: 1px solid rgba(37,99,235,.25); }
.lp-shield-rule-teal { background: rgba(13,148,136,.15); color: #5EEAD4; border: 1px solid rgba(13,148,136,.25); }
.lp-shield-rule-gold { background: rgba(217,119,6,.15);  color: #FCD34D; border: 1px solid rgba(217,119,6,.25); }
.lp-shield-rule-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.lp-shield-rule-desc  { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }

@media (max-width: 1024px) {
  .lp-shield-inner { grid-template-columns: 1fr; gap: 48px; }
  .lp-shield-visual { height: 280px; }
}
@media (max-width: 768px) {
  .lp-shield-section { padding: 64px 5%; }
  .lp-shield-visual { height: 220px; }
  .lp-ring1 { width: 120px; height: 120px; }
  .lp-ring2 { width: 180px; height: 180px; }
  .lp-ring3 { width: 240px; height: 240px; }
}

/* ── Marquee ─────────────────────────────────────────────────── */
.lp-marquee-wrap {
  background: var(--navy);
  overflow: hidden; padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.lp-marquee-track {
  display: flex; width: max-content;
  animation: lpMarquee 28s linear infinite;
}
.lp-marquee-track:hover { animation-play-state: paused; }
.lp-marquee-item {
  display: flex; align-items: center; gap: 8px;
  padding: 0 32px; font-size: 13px; color: rgba(255,255,255,.6);
  white-space: nowrap; border-right: 1px solid rgba(255,255,255,.1);
  font-weight: 500;
}
.lp-mdot { color: #60A5FA; font-size: 16px; line-height: 1; }
@keyframes lpMarquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── Section commons ────────────────────────────────────────── */
.lp-section { padding: 96px 7%; }
.lp-section-center { text-align: center; max-width: 620px; margin: 0 auto 60px; }
.lp-section-label {
  display: inline-block; font-size: 11px; text-transform: uppercase;
  letter-spacing: 1.8px; color: var(--blue); font-weight: 700; margin-bottom: 12px;
}
.lp-section-title {
  font-size: clamp(26px, 3vw, 44px); font-weight: 800;
  letter-spacing: -1.8px; color: var(--navy); line-height: 1.12; margin-bottom: 16px;
}
.lp-section-title em { font-style: normal; color: var(--blue); }
.lp-section-sub { font-size: 16px; color: var(--text-md); line-height: 1.75; }

/* ── Stats Row ───────────────────────────────────────────────── */
.lp-stats { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.lp-stats-inner {
  display: grid; grid-template-columns: repeat(4,1fr);
  max-width: 1000px; margin: 0 auto;
}
.lp-stat-item {
  text-align: center; padding: 44px 20px;
  border-right: 1px solid var(--border);
  transition: background .2s;
}
.lp-stat-item:last-child { border-right: none; }
.lp-stat-item:hover { background: var(--bg3); }
.lp-stat-num {
  font-size: 42px; font-weight: 800; color: var(--navy);
  letter-spacing: -2px; line-height: 1;
}
.lp-stat-num span { color: var(--blue); }
.lp-stat-lbl { font-size: 13px; color: var(--text-sm); margin-top: 8px; font-weight: 500; }

/* ── How It Works ────────────────────────────────────────────── */
.lp-how { background: var(--bg); }
.lp-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.lp-step {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.lp-step:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.lp-step-line {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.lp-step-line-blue { background: linear-gradient(90deg, var(--blue), #818CF8); }
.lp-step-line-teal { background: linear-gradient(90deg, var(--teal), #34D399); }
.lp-step-line-gold { background: linear-gradient(90deg, var(--gold), #FCD34D); }

.lp-step-num {
  font-size: 72px; font-weight: 800; color: var(--bg3);
  line-height: 1; margin-bottom: 8px; letter-spacing: -4px; user-select: none;
}
.lp-step-icon {
  font-size: 32px; margin-bottom: 16px; display: block;
}
.lp-step h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.lp-step p { font-size: 14px; color: var(--text-md); line-height: 1.7; }
.lp-step-tag {
  display: inline-block; margin-top: 20px;
  background: var(--blue-lt); border: 1px solid var(--blue-mid);
  border-radius: 100px; padding: 4px 14px;
  font-size: 11px; color: var(--blue-dk); font-weight: 700; letter-spacing: .3px;
}
.lp-step-tag-teal { background: var(--teal-lt); border-color: #99F6E4; color: var(--teal-dk); }
.lp-step-tag-gold { background: var(--gold-lt); border-color: #FDE68A; color: var(--gold); }

/* ── Privacy Section ─────────────────────────────────────────── */
.lp-privacy { background: var(--bg2); border-top: 1px solid var(--border); }
.lp-privacy-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* Privacy visual */
.lp-prv-visual {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow);
}
.lp-prv-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--border);
}
.lp-prv-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dk));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.lp-prv-name { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.lp-prv-role { font-size: 12px; color: var(--text-sm); }
.lp-prv-rows { display: flex; flex-direction: column; gap: 8px; }
.lp-prv-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px; border-radius: 10px;
  background: var(--bg2); border: 1px solid var(--border);
}
.lp-prv-rl { display: flex; align-items: center; gap: 10px; flex: 1; }
.lp-prv-rk { font-size: 12px; color: var(--text-sm); font-weight: 500; }
.lp-prv-rv {
  font-size: 12px; font-weight: 600; color: var(--navy);
  max-width: 140px; white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis; transition: filter .35s, color .35s;
}
.lp-prv-rv.lp-blurred { filter: blur(5px); color: var(--text-sm); user-select: none; }

/* Toggle */
.lp-toggle {
  width: 38px; height: 21px; border-radius: 100px;
  background: var(--border2); border: none; cursor: pointer;
  position: relative; flex-shrink: 0; transition: background .3s; outline: none;
}
.lp-toggle.on { background: var(--blue); }
.lp-toggle::after {
  content: ''; position: absolute; top: 2.5px; left: 2.5px;
  width: 16px; height: 16px; border-radius: 50%; background: #fff;
  transition: transform .3s; box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.lp-toggle.on::after { transform: translateX(17px); }

.lp-prv-note {
  margin-top: 14px; padding: 10px 14px;
  background: var(--blue-lt); border: 1px solid var(--blue-mid);
  border-radius: 10px; font-size: 12px; color: var(--blue-dk);
  display: flex; align-items: center; gap: 8px; font-weight: 500;
}

/* Privacy features list */
.lp-pf-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.lp-pf-item { display: flex; gap: 16px; align-items: flex-start; }
.lp-pf-icon {
  width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.lp-pf-icon-blue { background: var(--blue-lt); }
.lp-pf-icon-teal { background: var(--teal-lt); }
.lp-pf-text h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.lp-pf-text p { font-size: 14px; color: var(--text-md); line-height: 1.65; }

/* ── CTA Section ─────────────────────────────────────────────── */
.lp-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, #0D1F44 0%, #1A3460 60%, #1E3A6E 100%);
  padding: 100px 7%; text-align: center;
}
.lp-cta::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37,99,235,.2) 0%, transparent 65%);
  pointer-events: none;
}
.lp-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 760px; margin: 0 auto 48px; }
.lp-cta-card {
  border-radius: 18px; padding: 36px 30px;
  transition: transform .3s, box-shadow .3s; cursor: pointer; text-decoration: none;
  display: block; position: relative; overflow: hidden;
}
.lp-cta-card:hover { transform: translateY(-4px); }
.lp-cta-card-blue {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  box-shadow: 0 8px 32px rgba(37,99,235,.5);
}
.lp-cta-card-teal {
  background: linear-gradient(135deg, #0D9488 0%, #0F766E 100%);
  box-shadow: 0 8px 32px rgba(13,148,136,.5);
}
.lp-cta-card:hover.lp-cta-card-blue { box-shadow: 0 16px 48px rgba(37,99,235,.65); }
.lp-cta-card:hover.lp-cta-card-teal { box-shadow: 0 16px 48px rgba(13,148,136,.65); }
.lp-cta-card-icon { font-size: 36px; margin-bottom: 16px; }
.lp-cta-card-title { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -.8px; margin-bottom: 8px; }
.lp-cta-card-sub { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.6; margin-bottom: 22px; }
.lp-cta-card-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: 14px; font-weight: 700;
  padding: 10px 20px; border-radius: 10px;
  transition: background .2s;
}
.lp-cta-card:hover .lp-cta-card-btn { background: rgba(255,255,255,.26); }

.lp-cta-note {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
}
.lp-cta-note-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: rgba(255,255,255,.5); font-weight: 500;
}
.lp-cta-check { color: #34D399; }

/* ── Compare Table ───────────────────────────────────────────── */
.lp-compare { background: var(--bg); }
.lp-compare-wrap {
  border-radius: var(--radius); border: 1px solid var(--border);
  overflow-x: auto; box-shadow: var(--shadow);
}
.lp-compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.lp-compare-table th {
  padding: 18px 24px; text-align: left;
  border-bottom: 1px solid var(--border); background: var(--bg3);
  font-weight: 700; font-size: 14px; color: var(--navy);
}
.lp-compare-table th:first-child { color: var(--text-sm); font-size: 12px; font-weight: 600; }
.lp-th-us { color: var(--blue-dk) !important; }
.lp-th-them { color: var(--text-sm) !important; }
.lp-compare-table td {
  padding: 14px 24px; border-bottom: 1px solid var(--border);
  color: var(--text-md); vertical-align: middle;
}
.lp-compare-table td:first-child { color: var(--navy); font-weight: 500; }
.lp-compare-table tr:last-child td { border-bottom: none; }
.lp-compare-table tr:hover td { background: var(--bg3); }
.lp-check { color: var(--blue-dk); font-weight: 700; }
.lp-cross { color: var(--border2); font-size: 20px; line-height: 1; }
.lp-partial { color: var(--gold); font-weight: 600; }

/* ── Footer ──────────────────────────────────────────────────── */
.lp-footer {
  background: var(--navy);
  padding: 48px 7% 32px;
}
.lp-footer-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.lp-footer-logo img { height: 34px; width: auto; filter: brightness(0) invert(1); opacity:.9; }
.lp-footer-logo-text {
  font-size: 19px; font-weight: 800; color: #fff; letter-spacing: -.5px; margin-top: 4px;
}
.lp-footer-logo-text span { color: #60A5FA; }
.lp-footer-tagline { font-size: 13px; color: rgba(255,255,255,.4); margin-top: 6px; }
.lp-footer-links { display: flex; gap: 32px; flex-wrap: wrap; list-style: none; }
.lp-footer-links a { color: rgba(255,255,255,.5); font-size: 13px; transition: color .2s; }
.lp-footer-links a:hover { color: #fff; }
.lp-footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; flex-wrap: wrap; gap: 12px;
}
.lp-footer-copy { font-size: 12px; color: rgba(255,255,255,.3); }
.lp-footer-made { font-size: 12px; color: rgba(255,255,255,.3); }
.lp-footer-made span { color: #60A5FA; }

/* ── Reveal animations ───────────────────────────────────────── */
.lp-reveal { opacity: 0; transform: translateY(24px); transition: all .7s cubic-bezier(.22,1,.36,1); }
.lp-reveal.visible { opacity: 1; transform: translateY(0); }
.lp-reveal-d1 { transition-delay: .1s; }
.lp-reveal-d2 { transition-delay: .2s; }
.lp-reveal-d3 { transition-delay: .3s; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .lp-hero { grid-template-columns: 1fr; }
  .lp-hero-left { min-height: auto; padding: 110px 6% 60px; }
  .lp-hero-right { display: none; }
  .lp-action-cards { max-width: 520px; }
  .lp-stats-inner { grid-template-columns: repeat(2,1fr); }
  .lp-stat-item:nth-child(2) { border-right: none; }
  .lp-privacy-split { grid-template-columns: 1fr; gap: 40px; }
  .lp-steps { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .lp-section { padding: 64px 5%; }
  .lp-action-cards { grid-template-columns: 1fr; max-width: 360px; }
  .lp-nav-links { display: none; }
  .lp-cta-grid { grid-template-columns: 1fr; max-width: 360px; }
  .lp-stats-inner { grid-template-columns: repeat(2,1fr); }
  .lp-footer-top { flex-direction: column; gap: 24px; }

  /* Hero móvil: imagen arriba + texto abajo, sin espacio extra */
  .lp-hero {
    display: flex;
    flex-direction: column;
    min-height: unset !important;
    align-items: stretch;
  }

  .lp-hero-right {
    display: block;
    order: -1;
    width: 100%;
    height: 260px;
    min-height: unset;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }

  /* Overlay más oscuro en móvil para legibilidad */
  .lp-hero-right::before {
    background: linear-gradient(
      to bottom,
      rgba(13,31,68,.35) 0%,
      rgba(13,31,68,.15) 40%,
      rgba(13,31,68,.75) 80%,
      rgba(13,31,68,.95) 100%
    );
  }

  /* Pill de privacidad: centrado en la imagen */
  .lp-privacy-pill {
    top: 28%;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Mostrar solo 1 badge flotante (candidatos) */
  .lp-float-badge1 {
    display: flex;
    top: unset;
    bottom: 16px;
    left: 14px;
    padding: 9px 13px;
  }
  .lp-float-badge2 { display: none; }
  .lp-float-badge3 { display: none; }

  .lp-float-badge1 .lp-badge-num { font-size: 15px; }
  .lp-float-badge1 .lp-badge-icon { width: 28px; height: 28px; font-size: 13px; }

  /* Texto del hero: pegado justo debajo de la imagen */
  .lp-hero-left {
    padding: 32px 6% 40px;
    min-height: unset;
    text-align: center;
    align-items: center;
    flex: 0 0 auto;
  }

  .lp-hero-badge { margin-bottom: 18px; }

  .lp-hero-h1 {
    font-size: 34px;
    letter-spacing: -1.5px;
    margin-bottom: 14px;
  }

  .lp-hero-sub {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 28px;
  }

  .lp-hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .lp-hero-right { height: 220px; }
  .lp-hero-h1 { font-size: 30px; letter-spacing: -1.2px; }
  .lp-stats-inner { grid-template-columns: 1fr 1fr; }
  .lp-stat-item { padding: 28px 12px; }
  .lp-stat-num { font-size: 32px; }
}
