:root {
  --lp-cream: #f8faf8;
  --lp-cream-deep: #edf3ef;
  --lp-paper: #ffffff;
  --lp-green: #01411f;
  --lp-green-dark: #012a14;
  --lp-green-soft: #dfe9e2;
  --lp-gold: #b18d3c;
  --lp-gold-dark: #856a2d;
  --lp-ink: #142019;
  --lp-muted: #657069;
  --lp-line: rgba(1, 65, 31, .15);
  --lp-nav-height: 92px;
  --lp-radius: 18px;
  --font-brand: 'Cormorant Garamond', Georgia, serif;
}

/* Base mínima propia de la landing. Evita descargar las más de 3.000 líneas
   de estilos de la aplicación antes de poder pintar la portada. */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 14px; }
body { font-family: 'Inter', Arial, sans-serif; line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }
img { display: block; max-width: 100%; }

/* ─────────────────────────────────────────────────────────
   Hero tecnológico · landing 2026-08-18
   ───────────────────────────────────────────────────────── */
.lp-tech-hero {
  position: relative;
  min-height: 920px;
  padding: calc(var(--lp-nav-height) + 36px) max(32px, calc((100vw - 1480px) / 2)) 34px;
  overflow: hidden;
  background:
    linear-gradient(rgba(1,65,31,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1,65,31,.025) 1px, transparent 1px),
    radial-gradient(circle at 66% 28%, rgba(216,236,223,.38), transparent 26%),
    #fff;
  background-size: 44px 44px, 44px 44px, auto, auto;
}
.lp-tech-hero::after {
  content: '';
  position: absolute;
  left: -8%; right: -8%; bottom: 136px;
  height: 280px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(1,65,31,.055), transparent 68%);
  filter: blur(12px);
}
.lp-tech-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(410px, .83fr) minmax(620px, 1.28fr);
  align-items: start;
  gap: clamp(28px, 4vw, 70px);
  max-width: 1480px;
  min-height: 675px;
  margin: 0 auto;
}
.lp-tech-copy { min-width: 0; padding-top: 40px; }
.lp-tech-title {
  max-width: 650px;
  margin: 22px 0 19px;
  color: var(--lp-green-dark);
  font-family: var(--font-brand);
  font-size: clamp(62px, 5.05vw, 84px);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.052em;
}
.lp-tech-title > span { display: block; }
.lp-tech-title strong { color: var(--lp-gold-dark); font-weight: 500; }
.lp-tech-lead { max-width: 560px; margin: 0; color: #536058; font-size: clamp(16px, 1.2vw, 19px); line-height: 1.65; }
.lp-tech-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 640px;
  margin-top: 31px;
}
.lp-tech-benefit { display: flex; align-items: center; gap: 10px; min-width: 0; }
.lp-tech-benefit-icon {
  display: grid;
  width: 34px; height: 34px;
  flex: 0 0 34px;
  place-items: center;
  color: var(--lp-green);
  font-family: var(--font-brand);
  font-size: 24px;
  line-height: 1;
}
.lp-tech-benefit p { min-width: 0; margin: 0; }
.lp-tech-benefit strong, .lp-tech-benefit small { display: block; }
.lp-tech-benefit strong { overflow: hidden; color: var(--lp-green-dark); font-size: 10px; font-weight: 800; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
.lp-tech-benefit small { margin-top: 3px; color: #7d8981; font-size: 9px; line-height: 1.35; }

.lp-tech-swing {
  position: relative;
  width: min(100%, 575px);
  height: 198px;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid rgba(1,65,31,.13);
  border-radius: 21px;
  background: var(--lp-green-dark);
  box-shadow: 0 20px 48px rgba(1,42,20,.13);
}
.lp-tech-swing > picture { display: block; width: 100%; height: 100%; }
.lp-tech-swing::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(1,42,20,.08), transparent 40%, rgba(1,42,20,.08)); pointer-events: none; }
.lp-tech-approved-crop { display: block; width: 100%; height: 100%; }
.lp-tech-swing-stats {
  position: absolute;
  z-index: 2;
  top: 27px; right: 34px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 13px 22px;
  padding: 14px 17px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 13px;
  background: rgba(8,24,15,.56);
  color: #fff;
  backdrop-filter: blur(9px);
}
.lp-tech-swing-stats span:last-child { grid-column: 1 / -1; }
.lp-tech-swing-stats small, .lp-tech-swing-stats strong, .lp-tech-swing-stats em { display: block; }
.lp-tech-swing-stats small { color: rgba(255,255,255,.6); font-size: 7px; font-weight: 800; letter-spacing: .1em; }
.lp-tech-swing-stats strong { margin-top: 2px; font-size: 22px; line-height: 1; }
.lp-tech-swing-stats em { color: rgba(255,255,255,.7); font-size: 7px; font-style: normal; }
.lp-tech-swing-line { position: absolute; z-index: 2; inset: auto 0 0; width: 100%; height: 76%; overflow: visible; }
.lp-tech-swing-line path { fill: none; stroke: #82e5a3; stroke-width: 2; filter: drop-shadow(0 0 6px rgba(130,229,163,.9)); }
.lp-tech-swing-line circle { fill: #ecfff2; stroke: #54ce7b; stroke-width: 2; }

.lp-tech-product {
  position: relative;
  margin-top: 49px;
  overflow: hidden;
  border: 1px solid rgba(1,42,20,.22);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 32px 76px rgba(1,42,20,.16), 0 5px 15px rgba(1,42,20,.08);
  transform: perspective(1600px) rotateY(-1.1deg) rotateX(.35deg);
  transform-origin: left center;
}
.lp-tech-product::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset -1px 0 rgba(255,255,255,.8), inset 0 1px rgba(255,255,255,.9);
}
.lp-tech-product > picture { display: block; width: 100%; }
.lp-tech-product > picture > .lp-tech-approved-crop { width: 100%; height: auto; aspect-ratio: 883 / 616; }
.lp-tech-product > .lp-tech-approved-crop { width: 100%; height: auto; aspect-ratio: 883 / 616; }
.lp-tech-browser-dots { position: absolute; z-index: 3; top: 11px; right: 13px; display: flex; gap: 5px; opacity: .55; }
.lp-tech-browser-dots i { width: 5px; height: 5px; border-radius: 50%; background: var(--lp-green); }

.lp-tech-orbit { position: absolute; z-index: 1; left: calc(42% - 40px); top: 103px; width: 210px; height: 585px; border-right: 1px dashed rgba(177,141,60,.6); border-radius: 0 100% 100% 0; transform: rotate(-7deg); pointer-events: none; }
.lp-tech-ball { position: absolute; top: -16px; left: 47px; width: 36px; height: 36px; overflow: hidden; border-radius: 50%; object-fit: cover; filter: drop-shadow(0 8px 9px rgba(1,42,20,.16)); }
.lp-tech-orbit-dot { position: absolute; right: -8px; width: 15px; height: 15px; border: 3px solid #fff; border-radius: 50%; background: #dff3e5; box-shadow: 0 0 0 1px rgba(1,65,31,.15); }
.lp-tech-orbit-dot-1 { top: 88px; }.lp-tech-orbit-dot-2 { top: 320px; }.lp-tech-orbit-dot-3 { bottom: -4px; }

.lp-tech-flow {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1480px;
  min-height: 142px;
  margin: 18px auto 0;
  overflow: hidden;
  border: 1px solid rgba(1,65,31,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 16px 42px rgba(1,42,20,.06);
  backdrop-filter: blur(12px);
}
.lp-tech-flow article { display: flex; align-items: center; gap: 24px; padding: 28px 34px; }
.lp-tech-flow article + article { border-left: 1px solid rgba(1,65,31,.14); }
.lp-tech-flow-icon { display: grid; width: 66px; height: 66px; flex: 0 0 66px; place-items: center; border-radius: 50%; background: var(--lp-green-dark); color: #fff; font-size: 25px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.15), 0 10px 22px rgba(1,42,20,.14); }
.lp-tech-flow small { display: block; margin-bottom: 5px; color: var(--lp-green); font-family: var(--font-brand); font-size: 13px; }
.lp-tech-flow h2 { margin: 0; color: var(--lp-green-dark); font-family: var(--font-brand); font-size: clamp(23px, 1.8vw, 31px); font-weight: 600; line-height: 1.05; }
.lp-tech-flow p { max-width: 320px; margin: 8px 0 0; color: #69756e; font-size: 11px; line-height: 1.55; }

.lp-platform { background: #f6f9f7; }

@media (max-width: 1240px) {
  .lp-tech-hero { padding-inline: 28px; }
  .lp-tech-layout { grid-template-columns: minmax(380px, .85fr) minmax(550px, 1.15fr); gap: 28px; }
  .lp-tech-title { font-size: clamp(56px, 5.5vw, 72px); }
  .lp-tech-benefits { gap: 8px; }
  .lp-tech-product { margin-top: 65px; }
  .lp-tech-orbit { display: none; }
  .lp-tech-flow article { gap: 17px; padding-inline: 24px; }
}

@media (max-width: 960px) {
  .lp-tech-hero { min-height: 0; padding: calc(var(--lp-nav-height) + 34px) 24px 28px; }
  .lp-tech-layout { display: flex; min-height: 0; flex-direction: column; gap: 35px; }
  .lp-tech-copy { width: 100%; padding-top: 10px; }
  .lp-tech-title { max-width: 760px; font-size: clamp(56px, 9vw, 80px); }
  .lp-tech-lead { max-width: 700px; }
  .lp-tech-benefits { max-width: 730px; }
  .lp-tech-product { width: 100%; margin-top: 0; transform: none; }
  .lp-tech-swing { width: min(100%, 670px); }
  .lp-tech-flow { grid-template-columns: 1fr; margin-top: 38px; }
  .lp-tech-flow article + article { border-top: 1px solid rgba(1,65,31,.14); border-left: 0; }
}

@media (max-width: 620px) {
  .lp-tech-hero { padding: calc(var(--lp-nav-height) + 23px) 16px 18px; background-size: 30px 30px, 30px 30px, auto, auto; }
  .lp-tech-layout { gap: 24px; }
  .lp-tech-copy { padding-top: 0; }
  .lp-tech-title { margin: 16px 0 16px; font-size: clamp(48px, 14.6vw, 62px); line-height: .94; }
  .lp-tech-title > span:last-child { max-width: 355px; }
  .lp-tech-lead { font-size: 15px; }
  .lp-tech-benefits { grid-template-columns: 1fr; gap: 12px; margin-top: 25px; }
  .lp-tech-benefit strong { white-space: normal; }
  .lp-tech-benefit small { font-size: 10px; }
  .lp-tech-swing { display: none; }
  .lp-tech-swing-stats { top: 18px; right: 18px; transform: scale(.84); transform-origin: top right; }
  .lp-tech-product { border-radius: 12px; box-shadow: 0 18px 45px rgba(1,42,20,.13); }
  .lp-tech-product > picture { width: 100%; max-width: none; transform: none; }
  .lp-tech-product > picture > .lp-tech-approved-crop { width: 100%; max-width: none; transform: none; }
  .lp-tech-product > .lp-tech-approved-crop { width: 100%; max-width: none; transform: none; }
  .lp-tech-flow { margin-top: 26px; border-radius: 13px; }
  .lp-tech-flow article { gap: 17px; padding: 22px 20px; }
  .lp-tech-flow-icon { width: 54px; height: 54px; flex-basis: 54px; font-size: 21px; }
  .lp-tech-flow h2 { font-size: 25px; }
}

html { scroll-behavior: smooth; }
body.landing-body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--lp-cream);
  color: var(--lp-ink);
  font-family: 'Inter', sans-serif;
}
body.menu-open { overflow: hidden; }
body.landing-body *, body.landing-body *::before, body.landing-body *::after { box-sizing: border-box; }
body.landing-body a { color: inherit; text-decoration: none; }
body.landing-body button { color: inherit; }
body.landing-body img { display: block; max-width: 100%; }
section[id] { scroll-margin-top: calc(var(--lp-nav-height) + 14px); }

.lp-wrap { width: min(1240px, calc(100% - 64px)); margin: 0 auto; }
.lp-skip {
  position: fixed; top: 10px; left: 10px; z-index: 9999;
  transform: translateY(-150%); background: #fff; color: var(--lp-green);
  padding: 10px 15px; border-radius: 6px; font-weight: 700;
}
.lp-skip:focus { transform: none; }

.lp-nav {
  position: fixed; inset: 0 0 auto; z-index: 500;
  height: var(--lp-nav-height);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.lp-nav.scrolled { background: rgba(255, 255, 255, .985); border-bottom-color: var(--lp-line); box-shadow: 0 10px 35px rgba(1, 42, 20, .06); }
.lp-nav-inner { width: min(1380px, calc(100% - 56px)); height: 100%; margin: 0 auto; display: flex; align-items: center; gap: 34px; }
.lp-brand { display: inline-flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 0; flex: 0 0 auto; }
.lp-brand img { width: 130px; height: 30px; object-fit: contain; object-position: left center; }
.lp-brand > span { margin-top: -1px; color: var(--lp-green-dark); font-family: var(--font-brand); font-size: 25px; font-weight: 700; line-height: .9; letter-spacing: -.02em; white-space: nowrap; }
.lp-brand em { color: var(--lp-gold-dark); font-style: normal; font-weight: 400; }
.lp-links { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 2.25vw, 36px); margin-left: auto; }
.lp-links a { position: relative; padding: 13px 0; color: #38443e; font-size: 14px; font-weight: 600; white-space: nowrap; }
.lp-links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 7px; height: 2px; background: var(--lp-gold); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.lp-links a:hover, .lp-links a.active { color: var(--lp-green); }
.lp-links a:hover::after, .lp-links a.active::after { transform: scaleX(1); }
.lp-nav-actions { display: flex; align-items: center; gap: 13px; margin-left: auto; }
.lp-login { color: var(--lp-green-dark); font-size: 13px; font-weight: 700; white-space: nowrap; }
.lp-login:hover { color: var(--lp-gold-dark); }
.lp-lang {
  position: relative; display: flex; align-items: center; min-height: 38px; padding-left: 11px;
  border: 1px solid var(--lp-line); border-radius: 999px; background: rgba(255,255,255,.7);
  color: var(--lp-green-dark); box-shadow: 0 5px 18px rgba(1,42,20,.05);
}
.lp-lang-globe { display: grid; width: 19px; height: 19px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 10px; font-weight: 800; }
.lp-lang select {
  appearance: none; min-width: 112px; height: 36px; padding: 0 28px 0 8px; border: 0; outline: 0;
  background: transparent; color: var(--lp-green-dark); font: inherit; font-size: 11px; font-weight: 800; cursor: pointer;
}
.lp-lang:focus-within { border-color: rgba(1,65,31,.48); box-shadow: 0 0 0 3px rgba(1,65,31,.09); }
.lp-lang-chevron { position: absolute; right: 11px; top: 8px; pointer-events: none; color: var(--lp-gold-dark); font-size: 16px; line-height: 1; }
.lp-burger { display: none; width: 43px; height: 43px; padding: 10px; border: 1px solid var(--lp-line); border-radius: 50%; background: transparent; }
.lp-burger span { display: block; height: 1.5px; margin: 5px 0; background: var(--lp-green); }

.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 0 25px; border: 1px solid transparent; border-radius: 8px;
  font-size: 14px; font-weight: 750; line-height: 1; text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, color .18s ease, background .18s ease, border-color .18s ease;
}
.lp-btn:hover { transform: translateY(-2px); }
.lp-btn-primary { background: var(--lp-green); color: #fff !important; box-shadow: 0 8px 24px rgba(1, 65, 31, .18); }
.lp-btn-primary:hover { background: var(--lp-green-dark); box-shadow: 0 13px 30px rgba(1, 42, 20, .24); }
.lp-btn-outline { border-color: rgba(1, 65, 31, .45); background: rgba(255,255,255,.2); color: var(--lp-green-dark) !important; }
.lp-btn-outline:hover { border-color: var(--lp-green); background: rgba(255,255,255,.62); }
.lp-btn-gold { background: var(--lp-gold); color: var(--lp-green-dark) !important; box-shadow: 0 9px 26px rgba(177, 141, 60, .2); }
.lp-btn-gold:hover { background: #c29c45; }
.lp-btn-light-outline { border-color: rgba(255,255,255,.5); color: #fff !important; }
.lp-btn-light-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.lp-btn-small { min-height: 42px; padding: 0 20px; font-size: 12px; }
.lp-btn-large { min-height: 58px; padding: 0 30px; font-size: 15px; }
.lp-play { display: grid; width: 24px; height: 24px; place-items: center; border: 1px solid currentColor; border-radius: 50%; padding-left: 2px; font-size: 8px; }

.lp-mobile-menu {
  position: fixed; inset: var(--lp-nav-height) 0 auto; z-index: 490;
  display: none; padding: 24px 28px 30px; background: rgba(247,245,238,.99);
  border-bottom: 1px solid var(--lp-line); box-shadow: 0 20px 40px rgba(1,42,20,.12);
}
.lp-mobile-menu.open { display: block; }
.lp-mobile-menu > a { display: block; padding: 13px 0; border-bottom: 1px solid var(--lp-line); color: var(--lp-green-dark); font-family: var(--font-brand); font-size: 25px; font-weight: 700; }
.lp-mobile-lang { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 19px; padding: 12px 14px; border: 1px solid var(--lp-line); border-radius: 10px; background: #fff; color: var(--lp-green-dark); }
.lp-mobile-lang-label { font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.lp-mobile-lang-control { position: relative; display: flex; align-items: center; }
.lp-mobile-lang-control select { appearance: none; min-width: 130px; padding: 5px 25px 5px 8px; border: 0; outline: 0; background: transparent; color: var(--lp-green-dark); font: inherit; font-size: 12px; font-weight: 750; text-align: right; cursor: pointer; }
.lp-mobile-lang-control span { position: absolute; right: 3px; pointer-events: none; color: var(--lp-gold-dark); font-size: 16px; }
.lp-mobile-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }

.lp-hero {
  position: relative; min-height: 770px; padding-top: var(--lp-nav-height); overflow: hidden;
  background: var(--lp-cream);
}
.lp-hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 82% 28%, rgba(255,255,255,.8), transparent 34%), linear-gradient(90deg, transparent 45%, rgba(247,245,238,.58) 60%, var(--lp-cream) 72%); z-index: 1; }
.lp-hero-art { position: absolute; inset: var(--lp-nav-height) auto 0 0; width: 67%; overflow: hidden; }
.lp-hero-art img { width: 100%; height: 100%; object-fit: cover; object-position: 47% 18%; }
.lp-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 54% 46%; min-height: calc(770px - var(--lp-nav-height)); }
.lp-hero-copy { grid-column: 2; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 45px 0 62px 24px; }
.lp-eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--lp-gold-dark); font-size: 11px; font-weight: 800; letter-spacing: .15em; line-height: 1.4; text-transform: uppercase; }
.lp-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--lp-gold); }
.lp-hero-title { max-width: 650px; margin: 19px 0 22px; color: var(--lp-green-dark); font-family: var(--font-brand); font-size: clamp(58px, 5.2vw, 82px); font-weight: 500; line-height: .9; letter-spacing: -.045em; }
.lp-hero-title > span { display: block; }
.lp-hero-title strong { color: var(--lp-gold-dark); font-weight: 600; }
.lp-hero-lead { max-width: 545px; margin: 0; color: #536058; font-size: 16px; line-height: 1.75; }
.lp-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.lp-hero-proof { display: flex; align-items: center; gap: 13px; margin-top: 26px; }
.lp-proof-badge { display: grid; width: 43px; height: 43px; place-items: center; border-radius: 50%; background: var(--lp-green-dark); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .06em; box-shadow: 0 0 0 5px rgba(1,65,31,.08); }
.lp-hero-proof p { max-width: 360px; margin: 0; color: var(--lp-muted); font-size: 11.5px; line-height: 1.5; }
.lp-hero-proof strong { color: var(--lp-green-dark); }

.lp-service-rail { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr); background: var(--lp-green-dark); }
.lp-service-card { position: relative; min-height: 260px; overflow: hidden; isolation: isolate; border-right: 1px solid rgba(255,255,255,.28); color: #fff !important; }
.lp-service-card:last-child { border-right: 0; }
.lp-service-card::before { content: ''; position: absolute; inset: 0; z-index: -2; background-image: var(--service-image); background-size: cover; background-position: center; transition: transform .55s ease; }
.lp-service-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(1,42,20,.08), rgba(1,42,20,.82)); transition: background .3s ease; }
.lp-service-card:hover::before { transform: scale(1.045); }
.lp-service-card:hover::after { background: linear-gradient(180deg, rgba(1,42,20,.03), rgba(1,42,20,.68)); }
.lp-service-number { position: absolute; top: 22px; left: 25px; font-size: 10px; font-weight: 800; letter-spacing: .14em; opacity: .86; }
.lp-service-name { position: absolute; left: 25px; right: 58px; bottom: 27px; font-family: var(--font-brand); font-size: clamp(21px, 1.75vw, 29px); font-weight: 700; line-height: 1; }
.lp-service-arrow { position: absolute; right: 25px; bottom: 26px; display: grid; width: 31px; height: 31px; place-items: center; border: 1px solid rgba(255,255,255,.58); border-radius: 50%; font-size: 14px; transition: transform .2s ease, background .2s ease; }
.lp-service-card:hover .lp-service-arrow { transform: translate(2px,-2px); background: var(--lp-gold); border-color: var(--lp-gold); color: var(--lp-green-dark); }

.lp-trust { padding: 33px 0; background: var(--lp-paper); border-bottom: 1px solid var(--lp-line); }
.lp-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.lp-trust-item { display: flex; align-items: center; justify-content: center; gap: 17px; min-height: 65px; border-right: 1px solid var(--lp-line); }
.lp-trust-item:last-child { border-right: 0; }
.lp-trust-item > span { color: var(--lp-gold-dark); font-family: var(--font-brand); font-size: 39px; line-height: 1; }
.lp-trust-item p { margin: 0; color: var(--lp-green-dark); font-size: 10px; font-weight: 800; letter-spacing: .13em; line-height: 1.55; text-transform: uppercase; }

.lp-section { padding: 118px 0; }
.lp-section-head h2 { margin: 15px 0 0; color: var(--lp-green-dark); font-family: var(--font-brand); font-size: clamp(45px, 4.8vw, 68px); font-weight: 600; line-height: .96; letter-spacing: -.035em; }
.lp-section-head > p, .lp-section-head-wide > p { color: var(--lp-muted); font-size: 15px; line-height: 1.75; }
.lp-section-head-wide { display: grid; grid-template-columns: 1.15fr .65fr; align-items: end; gap: 9%; margin-bottom: 60px; }
.lp-section-head-wide > p { margin: 0 0 4px; }
.lp-section-head-centered { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.lp-section-head-centered .lp-eyebrow { justify-content: center; }
.lp-section-head-centered > p { max-width: 620px; margin: 22px auto 0; }

.lp-platform { background: var(--lp-cream); }
.lp-feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.lp-feature { position: relative; min-height: 350px; padding: 31px; overflow: hidden; border: 1px solid var(--lp-line); border-radius: var(--lp-radius); background: rgba(255,255,255,.46); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.lp-feature:hover { transform: translateY(-4px); border-color: rgba(1,65,31,.3); box-shadow: 0 20px 45px rgba(1,42,20,.08); }
.lp-feature-large { grid-column: span 2; }
.lp-feature-index { display: block; color: var(--lp-gold-dark); font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.lp-feature h3 { margin: 25px 0 11px; color: var(--lp-green-dark); font-family: var(--font-brand); font-size: 30px; font-weight: 700; line-height: 1; }
.lp-feature p { max-width: 490px; margin: 0; color: var(--lp-muted); font-size: 13px; line-height: 1.65; }
.lp-feature-symbol { display: grid; width: 86px; height: 86px; margin-top: 47px; place-items: center; border: 1px solid rgba(1,65,31,.22); border-radius: 50%; color: var(--lp-green); font-family: var(--font-brand); font-size: 28px; font-weight: 700; }
.lp-feature-dark { background: var(--lp-green-dark); border-color: var(--lp-green-dark); }
.lp-feature-dark .lp-feature-index, .lp-feature-dark h3 { color: #fff; }
.lp-feature-dark p { color: rgba(255,255,255,.68); }
.lp-feature-gold { background: #e7d5a9; border-color: #d6bd82; }
.lp-mini-profile { position: absolute; top: 30px; left: 48%; right: 30px; display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: 12px; background: #fff; box-shadow: 0 16px 34px rgba(1,42,20,.1); }
.lp-mini-profile b { display: grid; width: 39px; height: 39px; place-items: center; border-radius: 50%; background: var(--lp-green-soft); color: var(--lp-green); font-size: 11px; }
.lp-mini-profile span, .lp-mini-row span { color: var(--lp-green-dark); font-size: 12px; font-weight: 750; }
.lp-mini-profile small, .lp-mini-row small { display: block; margin-top: 3px; color: #849087; font-size: 9px; font-weight: 500; }
.lp-mini-row { position: absolute; left: 48%; right: 30px; display: flex; align-items: center; gap: 10px; padding: 13px 14px; border-bottom: 1px solid var(--lp-line); background: rgba(255,255,255,.6); }
.lp-mini-row:nth-of-type(2) { top: 104px; }
.lp-mini-row:nth-of-type(3) { top: 164px; }
.lp-mini-row i { width: 8px; height: 8px; border-radius: 50%; background: var(--lp-gold); }
.lp-mini-row span { flex: 1; }
.lp-mini-row em { padding: 5px 7px; border-radius: 999px; background: var(--lp-green-soft); color: var(--lp-green); font-size: 8px; font-style: normal; font-weight: 800; text-transform: uppercase; }
.lp-feature-large h3, .lp-feature-large p { max-width: 42%; }
.lp-progress-chart { display: flex; align-items: flex-end; gap: 8px; height: 96px; margin-top: 38px; }
.lp-progress-chart i { flex: 1; max-width: 30px; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--lp-gold), rgba(177,141,60,.35)); }
.lp-progress-chart i:nth-child(1) { height: 28%; }.lp-progress-chart i:nth-child(2) { height: 44%; }.lp-progress-chart i:nth-child(3) { height: 39%; }.lp-progress-chart i:nth-child(4) { height: 68%; }.lp-progress-chart i:nth-child(5) { height: 92%; }

.lp-how { background: var(--lp-paper); }
.lp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.lp-steps article { position: relative; min-height: 280px; padding: 0 30px 0 0; }
.lp-steps article + article { padding-left: 30px; border-left: 1px solid var(--lp-line); }
.lp-steps article > span { color: var(--lp-gold-dark); font-family: var(--font-brand); font-size: 48px; line-height: 1; }
.lp-step-line { width: 44px; height: 2px; margin: 24px 0 26px; background: var(--lp-green); }
.lp-steps h3 { margin: 0 0 13px; color: var(--lp-green-dark); font-family: var(--font-brand); font-size: 28px; line-height: 1.05; }
.lp-steps p { margin: 0; color: var(--lp-muted); font-size: 13px; line-height: 1.7; }
.lp-how-cta { display: flex; justify-content: center; margin-top: 45px; }

.lp-who { position: relative; background: var(--lp-green-dark); color: #fff; overflow: hidden; }
.lp-who::before { content: ''; position: absolute; width: 720px; height: 720px; right: -260px; top: -260px; border: 1px solid rgba(177,141,60,.25); border-radius: 50%; box-shadow: 0 0 0 80px rgba(177,141,60,.04), 0 0 0 160px rgba(177,141,60,.025); }
.lp-who .lp-wrap { position: relative; z-index: 1; }
.lp-section-head-light h2 { color: #fff; }
.lp-section-head-light > p { color: rgba(255,255,255,.65); }
.lp-who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lp-who-grid article { min-height: 390px; padding: 34px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--lp-radius); background: rgba(255,255,255,.045); backdrop-filter: blur(4px); }
.lp-who-grid article > span { color: var(--lp-gold); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.lp-who-grid h3 { margin: 54px 0 12px; color: #fff; font-family: var(--font-brand); font-size: 35px; line-height: 1; }
.lp-who-grid p { min-height: 48px; margin: 0 0 28px; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.65; }
.lp-who-grid ul { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.lp-who-grid li { position: relative; padding-left: 23px; color: rgba(255,255,255,.82); font-size: 12px; line-height: 1.5; }
.lp-who-grid li::before { content: '✓'; position: absolute; left: 0; color: var(--lp-gold); font-weight: 900; }

.lp-resources { background: var(--lp-cream); }
.lp-resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lp-resource-grid article { display: flex; min-height: 330px; flex-direction: column; align-items: flex-start; padding: 34px; border: 1px solid var(--lp-line); border-radius: var(--lp-radius); background: rgba(255,255,255,.52); }
.lp-resource-tag { padding: 7px 10px; border-radius: 999px; background: var(--lp-green-soft); color: var(--lp-green); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.lp-resource-grid h3 { margin: 50px 0 12px; color: var(--lp-green-dark); font-family: var(--font-brand); font-size: 32px; line-height: 1; }
.lp-resource-grid p { margin: 0 0 28px; color: var(--lp-muted); font-size: 13px; line-height: 1.7; }
.lp-resource-grid a, .lp-resource-grid button { margin-top: auto; padding: 0 0 5px; border: 0; border-bottom: 1px solid var(--lp-gold); background: transparent; color: var(--lp-green-dark); font-size: 12px; font-weight: 800; cursor: pointer; }

.lp-pricing { background: var(--lp-paper); }
.lp-plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 18px; }
.lp-plan { position: relative; display: flex; min-height: 590px; flex-direction: column; padding: 36px; border: 1px solid var(--lp-line); border-radius: var(--lp-radius); background: #fff; }
.lp-plan-featured { background: var(--lp-green-dark); color: #fff; transform: translateY(-14px); box-shadow: 0 24px 55px rgba(1,42,20,.16); }
.lp-popular { position: absolute; top: 22px; right: 22px; padding: 7px 10px; border-radius: 999px; background: var(--lp-gold); color: var(--lp-green-dark); font-size: 8px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.lp-plan h3 { margin: 0 0 8px; color: var(--lp-green-dark); font-family: var(--font-brand); font-size: 37px; }
.lp-plan-featured h3 { color: #fff; }
.lp-plan-top > p { min-height: 58px; margin: 0; color: var(--lp-muted); font-size: 12px; line-height: 1.6; }
.lp-plan-featured .lp-plan-top > p { color: rgba(255,255,255,.6); }
.lp-price { margin-top: 29px; color: var(--lp-green-dark); font-family: var(--font-brand); font-size: 58px; font-weight: 700; line-height: 1; }
.lp-plan-featured .lp-price { color: #fff; }
.lp-price small { margin-left: 6px; color: var(--lp-muted); font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 500; }
.lp-plan-featured .lp-price small { color: rgba(255,255,255,.5); }
.lp-plan-top > strong { display: block; margin-top: 10px; color: var(--lp-gold-dark); font-size: 11px; }
.lp-plan-featured .lp-plan-top > strong { color: var(--lp-gold); }
.lp-plan ul { display: grid; gap: 13px; margin: 32px 0; padding: 28px 0 0; border-top: 1px solid var(--lp-line); list-style: none; }
.lp-plan-featured ul { border-top-color: rgba(255,255,255,.15); }
.lp-plan li { position: relative; padding-left: 23px; color: #566159; font-size: 12px; line-height: 1.5; }
.lp-plan-featured li { color: rgba(255,255,255,.76); }
.lp-plan li::before { content: '✓'; position: absolute; left: 0; color: var(--lp-green); font-weight: 900; }
.lp-plan-featured li::before { color: var(--lp-gold); }
.lp-plan .lp-btn { width: 100%; margin-top: auto; }
.lp-plan-note { margin: 30px auto 0; color: var(--lp-muted); font-size: 11px; text-align: center; }

.lp-final { position: relative; padding: 112px 0; overflow: hidden; background: var(--lp-green-dark); color: #fff; }
.lp-final::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--lp-green-dark) 0%, rgba(1,42,20,.94) 48%, rgba(1,42,20,.5) 100%); }
.lp-final-art { position: absolute; inset: 0 0 0 48%; background: url('assets/landing/hero-swing-v2.jpg') center 38% / cover no-repeat; filter: saturate(.82); opacity: .46; }
.lp-final-inner { position: relative; z-index: 1; }
.lp-final h2 { max-width: 750px; margin: 18px 0 18px; color: #fff; font-family: var(--font-brand); font-size: clamp(48px, 5vw, 72px); font-weight: 600; line-height: .94; letter-spacing: -.035em; }
.lp-final p { max-width: 530px; margin: 0; color: rgba(255,255,255,.68); font-size: 15px; line-height: 1.7; }
.lp-final-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.lp-footer { padding: 70px 0 28px; background: #0a1910; color: #fff; }
.lp-footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, .65fr); gap: 7%; padding-bottom: 58px; }
.lp-footer .lp-brand > span { color: #fff; }
.lp-footer-brand p { max-width: 330px; margin: 24px 0 0; color: rgba(255,255,255,.52); font-size: 12px; line-height: 1.7; }
.lp-footer h4 { margin: 0 0 20px; color: var(--lp-gold); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.lp-footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; }
.lp-footer-grid > div:not(:first-child) a { margin: 0 0 12px; color: rgba(255,255,255,.65); font-size: 12px; }
.lp-footer-grid > div:not(:first-child) a:hover { color: #fff; }
.lp-footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.35); font-size: 9px; line-height: 1.5; }

@media (max-width: 1180px) {
  .lp-links { gap: 18px; }
  .lp-login, .lp-lang { display: none; }
  .lp-nav-inner { width: min(100% - 40px, 1240px); }
  .lp-hero-inner { grid-template-columns: 50% 50%; }
  .lp-hero-copy { padding-left: 12px; }
  .lp-hero-title { font-size: clamp(54px, 6vw, 70px); }
  .lp-service-card { min-height: 230px; }
}

@media (max-width: 900px) {
  :root { --lp-nav-height: 78px; }
  .lp-wrap { width: min(100% - 40px, 720px); }
  .lp-nav-inner { width: calc(100% - 32px); }
  .lp-brand img { width: 104px; height: 24px; }
  .lp-brand > span { font-size: 21px; }
  .lp-links, .lp-nav-actions > .lp-btn { display: none; }
  .lp-nav-actions { margin-left: auto; }
  .lp-burger { display: block; }
  .lp-hero { min-height: auto; padding-top: var(--lp-nav-height); }
  .lp-hero::before { display: none; }
  .lp-hero-art { position: relative; inset: auto; width: 100%; height: 520px; }
  .lp-hero-art::after { content: ''; position: absolute; inset: auto 0 0; height: 110px; background: linear-gradient(transparent, var(--lp-cream)); }
  .lp-hero-art img { object-position: 46% 18%; }
  .lp-hero-inner { display: block; min-height: 0; }
  .lp-hero-copy { padding: 10px 0 65px; }
  .lp-hero-title { max-width: 720px; font-size: clamp(55px, 10vw, 72px); }
  .lp-hero-lead { max-width: 650px; }
  .lp-service-rail { grid-template-columns: repeat(2, 1fr); }
  .lp-service-card { min-height: 250px; }
  .lp-service-card:nth-child(2) { border-right: 0; }
  .lp-service-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.28); }
  .lp-trust-grid { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .lp-trust-item:nth-child(2) { border-right: 0; }
  .lp-section { padding: 88px 0; }
  .lp-section-head-wide { grid-template-columns: 1fr; gap: 24px; }
  .lp-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-feature-large { grid-column: span 2; }
  .lp-steps { grid-template-columns: repeat(2, 1fr); gap: 45px 0; }
  .lp-steps article:nth-child(3) { padding-left: 0; border-left: 0; }
  .lp-who-grid, .lp-resource-grid { grid-template-columns: 1fr; }
  .lp-who-grid article { min-height: auto; }
  .lp-who-grid h3 { margin-top: 32px; }
  .lp-plan-grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .lp-plan { min-height: 0; }
  .lp-plan-featured { transform: none; order: -1; }
  .lp-footer-grid { grid-template-columns: 1.4fr repeat(3, .7fr); gap: 4%; }
}

@media (max-width: 620px) {
  .lp-wrap { width: calc(100% - 32px); }
  .lp-mobile-actions { grid-template-columns: 1fr; }
  .lp-hero-art { height: 385px; }
  .lp-hero-art img { width: 112%; max-width: none; object-position: 48% center; }
  .lp-hero-copy { padding-top: 4px; }
  .lp-eyebrow { font-size: 9px; }
  .lp-hero-title { margin-top: 15px; font-size: clamp(48px, 15vw, 62px); }
  .lp-hero-lead { font-size: 14px; }
  .lp-hero-actions { width: 100%; }
  .lp-hero-actions .lp-btn { width: 100%; }
  .lp-service-rail { grid-template-columns: 1fr; }
  .lp-service-card { min-height: 215px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.28); }
  .lp-service-name { font-size: 28px; }
  .lp-trust { padding: 25px 0; }
  .lp-trust-item { justify-content: flex-start; padding-left: 17px; }
  .lp-trust-item > span { font-size: 30px; }
  .lp-section { padding: 72px 0; }
  .lp-section-head h2 { font-size: clamp(42px, 13vw, 55px); }
  .lp-section-head-centered { margin-bottom: 45px; text-align: left; }
  .lp-section-head-centered .lp-eyebrow { justify-content: flex-start; }
  .lp-section-head-centered > p { margin-left: 0; }
  .lp-feature-grid { grid-template-columns: 1fr; }
  .lp-feature, .lp-feature-large { grid-column: auto; min-height: 325px; }
  .lp-mini-profile, .lp-mini-row { display: none; }
  .lp-feature-large h3, .lp-feature-large p { max-width: none; }
  .lp-feature-large::after { content: 'PRO'; position: absolute; right: 28px; top: 50px; display: grid; width: 90px; height: 90px; place-items: center; border: 1px solid var(--lp-line); border-radius: 50%; color: var(--lp-green); font-family: var(--font-brand); font-size: 27px; }
  .lp-steps { grid-template-columns: 1fr; gap: 0; }
  .lp-steps article, .lp-steps article + article { min-height: 0; padding: 0 0 40px; border-left: 0; }
  .lp-steps article + article { padding-top: 32px; border-top: 1px solid var(--lp-line); }
  .lp-plan { padding: 28px; }
  .lp-final { padding: 84px 0; }
  .lp-final h2 { font-size: clamp(45px, 13vw, 59px); }
  .lp-final-actions .lp-btn { width: 100%; }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 42px 25px; }
  .lp-footer-brand { grid-column: 1 / -1; }
  .lp-footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
