@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Noto+Sans+SC:wght@400;500;600;700&display=swap");

:root {
  --nx-ink: #0b1220;
  --nx-text: #152033;
  --nx-muted: #5b6b81;
  --nx-line: #e6edf5;
  --nx-bg: #f4f8fb;
  --nx-card: #ffffff;
  --nx-primary: #0d9488;
  --nx-primary-deep: #0f766e;
  --nx-primary-soft: #e6f7f5;
  --nx-accent: #f59e0b;
  --nx-accent-2: #ea580c;
  --nx-sky: #0284c7;
  --nx-radius: 18px;
  --nx-shadow: 0 18px 50px rgba(11, 42, 56, 0.08);
  --nx-font: "Noto Sans SC", "Manrope", sans-serif;
  --nx-display: "Manrope", "Noto Sans SC", sans-serif;
}

.lp-body {
  margin: 0;
  font-family: var(--nx-font);
  color: var(--nx-text);
  background: #fff;
  overflow-x: hidden;
  position: relative;
}

.lp-container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

/* ===== Nav ===== */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  height: 70px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(230, 237, 245, 0.9);
}
.lp-nav .inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}
.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--nx-ink);
  font-family: var(--nx-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.lp-brand-text {
  white-space: nowrap;
}
.lp-brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}
.lp-brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(145deg, #14b8a6, #0369a1);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.lp-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.lp-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #0f172a;
  transition: transform .18s, opacity .18s;
}
.lp-nav.is-open .lp-nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lp-nav.is-open .lp-nav-toggle span:nth-child(2) { opacity: 0; }
.lp-nav.is-open .lp-nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.lp-nav-panel {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  min-width: 0;
}
.lp-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.lp-menu a {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--nx-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s ease;
}
.lp-menu a:hover,
.lp-menu a.active {
  color: var(--nx-primary-deep);
  background: var(--nx-primary-soft);
}
.lp-nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lp-lang {
  color: var(--nx-muted);
  font-size: 13px;
}

/* ===== Buttons ===== */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.lp-btn:hover { transform: translateY(-1px); }
.lp-btn-primary {
  background: linear-gradient(120deg, var(--nx-accent), var(--nx-accent-2));
  color: #fff;
  box-shadow: 0 12px 28px rgba(234, 88, 12, 0.28);
}
.lp-btn-primary:hover { color: #fff; }
.lp-btn-teal {
  background: linear-gradient(120deg, #14b8a6, #0d9488);
  color: #fff;
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.28);
}
.lp-btn-teal:hover { color: #fff; }
.lp-btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: #d5e0ec;
  color: var(--nx-text);
}
.lp-btn-ghost:hover {
  border-color: var(--nx-primary);
  color: var(--nx-primary-deep);
}
.lp-btn-lg { height: 52px; padding: 0 26px; font-size: 15px; }
.lp-btn-sm { height: 36px; padding: 0 14px; font-size: 13px; }
.lp-btn-block { width: 100%; }

/* ===== Hero ===== */
.lp-hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 8% -10%, rgba(245, 158, 11, 0.16), transparent 55%),
    radial-gradient(1000px 520px at 92% 0%, rgba(13, 148, 136, 0.18), transparent 58%),
    radial-gradient(700px 380px at 50% 100%, rgba(2, 132, 199, 0.08), transparent 60%),
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 70%);
}
.lp-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
  animation: nxFloat 9s ease-in-out infinite;
}
.lp-hero-orb.a {
  width: 180px; height: 180px; left: 4%; top: 12%;
  background: radial-gradient(circle at 35% 35%, #5eead4, transparent 70%);
  opacity: 0.55;
}
.lp-hero-orb.b {
  width: 120px; height: 120px; left: 18%; top: 28%;
  background: radial-gradient(circle at 40% 40%, #fcd34d, transparent 68%);
  opacity: 0.5;
  animation-delay: -2s;
}
.lp-hero-orb.c {
  width: 280px; height: 280px; right: -40px; top: 8%;
  background: radial-gradient(circle at 40% 40%, rgba(14, 165, 164, 0.35), transparent 68%);
  animation-delay: -4s;
}
@keyframes nxFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-16px) scale(1.04); }
}
@keyframes nxRise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.lp-hero .inner {
  position: relative;
  z-index: 1;
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 72px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
}
.lp-hero-copy { animation: nxRise 0.7s ease both; }
.lp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #dce8f0;
  color: var(--nx-primary-deep);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.08);
}
.lp-chip i {
  width: 8px; height: 8px; border-radius: 50%;
  background: #14b8a6;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.2);
}
.lp-hero-brand {
  margin: 0 0 10px;
  font-family: var(--nx-display);
  font-size: clamp(52px, 7vw, 76px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--nx-ink);
}
.lp-hero-title {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--nx-primary-deep);
}
.lp-hero-sub {
  margin: 0 0 28px;
  max-width: 520px;
  color: var(--nx-muted);
  font-size: 16px;
  line-height: 1.8;
}
.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.lp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--nx-muted);
  font-size: 13px;
}
.lp-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lp-trust strong { color: var(--nx-text); }

.lp-hero-visual {
  position: relative;
  min-height: 440px;
  animation: nxRise 0.85s ease 0.08s both;
}
.lp-hero-stage {
  position: absolute;
  inset: 10px 0 30px 24px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(255,255,255,0.55), rgba(255,255,255,0.08)),
    linear-gradient(145deg, #0f766e 0%, #0d9488 42%, #0284c7 100%);
  box-shadow: 0 30px 70px rgba(15, 118, 110, 0.28);
  border: 1px solid rgba(255,255,255,0.4);
}
.lp-hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(252, 211, 77, 0.45), transparent 32%),
    radial-gradient(circle at 18% 82%, rgba(255,255,255,0.25), transparent 36%),
    linear-gradient(transparent 55%, rgba(7, 30, 40, 0.22));
}
.lp-hero-stage-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.lp-hero-stage-inner .kicker {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}
.lp-hero-stage-inner .big {
  margin-top: 10px;
  font-family: var(--nx-display);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.lp-metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.lp-metric-row div {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 12px;
  backdrop-filter: blur(10px);
}
.lp-metric-row strong {
  display: block;
  font-family: var(--nx-display);
  font-size: 20px;
}
.lp-metric-row span { font-size: 12px; opacity: 0.85; }

.lp-float-card {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,0.94);
  border: 1px solid #e7eef5;
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: var(--nx-shadow);
  animation: nxFloat 6s ease-in-out infinite;
}
.lp-float-card.top {
  right: -6px;
  top: 42px;
}
.lp-float-card.bottom {
  left: -8px;
  bottom: 48px;
  animation-delay: -3s;
}
.lp-float-card strong {
  display: block;
  color: var(--nx-primary-deep);
  font-size: 18px;
  font-family: var(--nx-display);
}
.lp-float-card span { color: var(--nx-muted); font-size: 12px; }

/* ===== Sections ===== */
.lp-section { padding: 92px 0; }
.lp-section.soft { background: var(--nx-bg); }
.lp-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
}
.lp-section-head .eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--nx-primary-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.lp-section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--nx-ink);
}
.lp-section-head p {
  margin: 0;
  color: var(--nx-muted);
  font-size: 15px;
  line-height: 1.75;
}

/* Features */
.lp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lp-feature {
  background: var(--nx-card);
  border: 1px solid var(--nx-line);
  border-radius: 20px;
  padding: 26px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.lp-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--nx-shadow);
  border-color: #c7ebe6;
}
.lp-feature .ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(145deg, #e6f7f5, #dff3fb);
  color: var(--nx-primary-deep);
  font-size: 20px;
}
.lp-feature h3 { margin: 0 0 8px; font-size: 18px; }
.lp-feature p {
  margin: 0;
  color: var(--nx-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Products */
.lp-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lp-product {
  position: relative;
  background: #fff;
  border: 1px solid var(--nx-line);
  border-radius: 22px;
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  transition: 0.25s ease;
}
.lp-product:hover {
  transform: translateY(-6px);
  box-shadow: var(--nx-shadow);
  border-color: #bfe8e2;
}
.lp-product.featured {
  border-color: var(--nx-primary);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(160deg, rgba(13,148,136,.18), rgba(2,132,199,.12)) border-box;
  box-shadow: 0 20px 44px rgba(13, 148, 136, 0.12);
}
.lp-product .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(120deg, var(--nx-accent), var(--nx-accent-2));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}
.lp-product .icon-line {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: var(--nx-primary-soft);
  color: var(--nx-primary-deep);
  font-size: 18px;
}
.lp-product h3 { margin: 0 0 8px; font-size: 22px; letter-spacing: -0.02em; }
.lp-product .desc {
  margin: 0 0 16px;
  color: var(--nx-muted);
  font-size: 14px;
  line-height: 1.65;
  min-height: 46px;
}
.lp-product .price {
  margin-bottom: 16px;
}
.lp-product .price em {
  display: block;
  font-style: normal;
  color: var(--nx-muted);
  font-size: 12px;
  margin-bottom: 2px;
}
.lp-product .price strong {
  font-family: var(--nx-display);
  font-size: 34px;
  letter-spacing: -0.04em;
  color: var(--nx-primary-deep);
}
.lp-product .price strong small {
  font-size: 15px;
  font-weight: 600;
  margin-left: 2px;
}
.lp-product ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  flex: 1;
}
.lp-product li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
  color: #405168;
  font-size: 13.5px;
}
.lp-product li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nx-primary);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.15);
}
.lp-product .actions { display: flex; gap: 8px; }

/* Quotes */
.lp-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lp-quote {
  background: #fff;
  border: 1px solid var(--nx-line);
  border-radius: 20px;
  padding: 24px;
}
.lp-quote p {
  margin: 0 0 18px;
  color: #3b4a5f;
  line-height: 1.75;
  font-size: 14px;
  min-height: 92px;
}
.lp-quote .who {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-quote .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, #0d9488, #0284c7);
}
.lp-quote strong { display: block; font-size: 14px; }
.lp-quote .who span { color: var(--nx-muted); font-size: 12px; }

/* Countries */
.lp-countries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.lp-country {
  background: #fff;
  border: 1px solid var(--nx-line);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.2s;
}
.lp-country:hover {
  border-color: #9adfd6;
  background: #f7fcfb;
}
.lp-country strong { font-size: 14px; }
.lp-country span {
  color: var(--nx-primary-deep);
  font-weight: 700;
  font-size: 12px;
}

/* FAQ */
.lp-faq { max-width: 780px; margin: 0 auto; }
.lp-faq details {
  background: #fff;
  border: 1px solid var(--nx-line);
  border-radius: 14px;
  padding: 0 20px;
  margin-bottom: 10px;
}
.lp-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 650;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: "+";
  color: var(--nx-primary);
  font-size: 20px;
  font-weight: 400;
}
.lp-faq details[open] summary::after { content: "–"; }
.lp-faq .ans {
  padding: 0 0 18px;
  color: var(--nx-muted);
  line-height: 1.75;
  font-size: 14px;
}

/* CTA */
.lp-cta {
  border-radius: 28px;
  padding: 56px 36px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(560px 240px at 18% 0%, rgba(245,158,11,0.28), transparent 60%),
    linear-gradient(125deg, #0f766e, #0d9488 48%, #0369a1);
  box-shadow: 0 24px 50px rgba(15, 118, 110, 0.28);
}
.lp-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.03em;
}
.lp-cta p { margin: 0 0 24px; opacity: 0.9; }
.lp-cta .actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Footer */
.lp-footer {
  background: #08111f;
  color: rgba(255,255,255,0.68);
  padding: 56px 0 28px;
}
.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}
.lp-footer-grid-3 {
  grid-template-columns: minmax(220px, 320px) minmax(120px, 160px) minmax(220px, 340px);
  justify-content: start;
  column-gap: 48px;
  row-gap: 28px;
}
.lp-footer-legal-col a {
  text-decoration: none;
}
.lp-footer-legal-col a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lp-footer-contact-col h4 {
  margin-bottom: 16px;
}
.lp-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-contact-row {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(255,255,255,.78) !important;
  text-decoration: none !important;
  line-height: 1.45;
}
.lp-contact-row:hover {
  color: #fff !important;
}
.lp-contact-row:hover .lp-contact-line b {
  color: #fff;
}
.lp-contact-ico {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.12);
  color: #fff;
}
.lp-contact-ico.is-phone { background: #0ea5e9; }
.lp-contact-ico.is-email { background: #2563eb; }
.lp-contact-ico.is-telegram { background: #229ED9; }
.lp-contact-ico.is-whatsapp { background: #25D366; }
.lp-contact-ico.is-place { background: #64748b; }
.lp-contact-line {
  font-size: 14px;
  font-weight: 400;
  font-style: normal !important;
  color: inherit;
  word-break: break-word;
}
.lp-contact-line b {
  font-weight: 650;
  font-style: normal;
  color: rgba(255,255,255,.92);
}
.help-site-with-footer {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.help-site-with-footer .help-article {
  flex: 1 0 auto;
}
.help-site-with-footer .lp-footer {
  margin-top: 48px;
}
.lp-footer .brand {
  color: #fff;
  font-family: var(--nx-display);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.lp-footer-tagline {
  margin: 0 0 8px !important;
  color: rgba(255,255,255,.88) !important;
  font-weight: 650;
  font-size: 14px !important;
}
.lp-footer p {
  margin: 0;
  line-height: 1.7;
  font-size: 14px;
  max-width: 360px;
}
.lp-footer h4 {
  color: #fff;
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 650;
}
.lp-footer a {
  display: block;
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
}
.lp-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.lp-footer-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lp-fcontact {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 !important;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff !important;
  text-decoration: none !important;
  transition: transform .15s, background .15s;
}
.lp-fcontact:hover { transform: translateY(-2px); background: rgba(255,255,255,.16); }
.lp-fcontact.is-email { background: #2563eb; }
.lp-fcontact.is-telegram { background: #229ED9; }
.lp-fcontact.is-whatsapp { background: #25D366; }
.lp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.lp-footer-bottom-center {
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,.45);
}

/* ===== ISP-focused landing ===== */
.lp-nav-over {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}
.lp-nav-over .lp-menu a {
  color: #5b6b81;
}
.lp-nav-over .lp-menu a:hover,
.lp-nav-over .lp-menu a.active {
  color: var(--nx-primary-deep);
  background: rgba(13, 148, 136, 0.08);
}
.lp-link {
  color: #5b6b81;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 0 6px;
}
.lp-link:hover { color: var(--nx-primary-deep); }

.lp-hero-v2 {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(165deg, #eef8f5 0%, #e8f2f7 40%, #f5f8fb 100%);
  padding: 96px 24px 72px;
}
.lp-hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.lp-hero-photo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 78% 28%, rgba(20, 184, 166, 0.22), transparent 70%),
    radial-gradient(ellipse 40% 50% at 12% 70%, rgba(14, 165, 233, 0.14), transparent 65%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%230f766e' stroke-opacity='0.06'%3E%3Cpath d='M20 80h120M80 20v120'/%3E%3Ccircle cx='80' cy='80' r='36'/%3E%3Ccircle cx='80' cy='80' r='58'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, auto, 160px 160px;
  opacity: .9;
  animation: lpPhotoDrift 22s ease-in-out infinite;
}
.lp-hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 118, 110, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 118, 110, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 75%);
}
.lp-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: .55;
}
.lp-hero-glow.g1 {
  width: 320px; height: 320px;
  background: #5eead4;
  right: 8%; top: 12%;
  animation: lpGlow 10s ease-in-out infinite;
}
.lp-hero-glow.g2 {
  width: 260px; height: 260px;
  background: #7dd3fc;
  left: 6%; bottom: 18%;
  animation: lpGlow 14s ease-in-out infinite reverse;
}
.lp-hero-glow.g3 {
  width: 180px; height: 180px;
  background: #99f6e4;
  left: 42%; top: 8%;
  opacity: .35;
  animation: lpGlow 12s ease-in-out infinite 1s;
}
.lp-hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(15, 118, 110, 0.16);
}
.lp-hero-ring.r1 {
  width: min(72vw, 680px);
  height: min(72vw, 680px);
  right: -12%;
  top: 8%;
  animation: lpRing 14s ease-in-out infinite;
}
.lp-hero-ring.r2 {
  width: min(48vw, 420px);
  height: min(48vw, 420px);
  right: 4%;
  top: 22%;
  border-color: rgba(14, 165, 233, 0.14);
  animation: lpRing 18s ease-in-out infinite reverse;
}
.lp-hero-ring.r3 {
  width: min(28vw, 220px);
  height: min(28vw, 220px);
  left: 6%;
  top: 28%;
  border-color: rgba(15, 118, 110, 0.1);
  animation: lpRing 16s ease-in-out infinite 2s;
}
.lp-hero-nodes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .7;
}
.lp-edges path {
  stroke-dasharray: 8 10;
  animation: lpDash 18s linear infinite;
}
.lp-dot {
  fill: #0d9488;
  opacity: .55;
  animation: lpPulse 3.6s ease-in-out infinite;
}
.lp-dot.d2 { animation-delay: .4s; }
.lp-dot.d3 { animation-delay: .8s; }
.lp-dot.d4 { animation-delay: 1.2s; }
.lp-dot.d5 { animation-delay: .6s; }
.lp-dot.d6 { animation-delay: 1.5s; }
.lp-dot.d7 { animation-delay: .2s; }
.lp-dot.d8 { animation-delay: 1.8s; }
.lp-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15, 118, 110, .12);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 650;
  color: #0f766e;
  letter-spacing: .02em;
  animation: lpFloat 7s ease-in-out infinite;
}
.lp-float span {
  width: 8px; height: 8px; border-radius: 50%;
  background: #14b8a6;
  box-shadow: 0 0 0 4px rgba(20,184,166,.18);
  animation: lpPulse 2.4s ease-in-out infinite;
}
.lp-float.f1 { right: 9%; top: 26%; }
.lp-float.f2 { left: 8%; top: 58%; animation-delay: 1.2s; }
.lp-float.f3 { right: 18%; bottom: 22%; animation-delay: 2.1s; color: #0369a1; }
.lp-float.f3 span { background: #0ea5e9; box-shadow: 0 0 0 4px rgba(14,165,233,.18); }
.lp-hero-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.88));
}
.lp-btn-pulse {
  position: relative;
  box-shadow: 0 12px 28px rgba(13, 148, 136, .28);
  animation: lpCtaPulse 2.8s ease-in-out infinite;
}
@keyframes lpRing {
  0%, 100% { transform: translateY(0) scale(1); opacity: .7; }
  50% { transform: translateY(-12px) scale(1.03); opacity: 1; }
}
@keyframes lpGlow {
  0%, 100% { transform: translate(0,0) scale(1); opacity: .45; }
  50% { transform: translate(12px,-18px) scale(1.08); opacity: .7; }
}
@keyframes lpPulse {
  0%, 100% { transform: scale(1); opacity: .5; }
  50% { transform: scale(1.35); opacity: 1; }
}
@keyframes lpFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes lpDash {
  to { stroke-dashoffset: -120; }
}
@keyframes lpPhotoDrift {
  0%, 100% { transform: scale(1) translate(0,0); }
  50% { transform: scale(1.04) translate(-1%, 1%); }
}
@keyframes lpCtaPulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(13, 148, 136, .28); }
  50% { box-shadow: 0 16px 36px rgba(13, 148, 136, .42); }
}

.lp-hero-frame {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  text-align: center;
  animation: nxRise .8s ease both;
}
.lp-eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #0f766e;
}
.lp-name {
  margin: 0 0 16px;
  font-family: var(--nx-display);
  font-size: clamp(56px, 9vw, 88px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: .95;
  color: #0b1220;
}
.lp-lead {
  margin: 0 auto 14px;
  max-width: 16em;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 650;
  letter-spacing: -.02em;
  line-height: 1.35;
  color: #1e293b;
}
.lp-desc {
  margin: 0 auto 32px;
  max-width: 36em;
  font-size: 15.5px;
  line-height: 1.75;
  color: #64748b;
}
.lp-hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.lp-text-link {
  color: #0f766e;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 118, 110, .35);
  padding-bottom: 2px;
  transition: border-color .15s, color .15s;
}
.lp-text-link:hover {
  color: #115e59;
  border-bottom-color: #115e59;
}

.lp-isp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.lp-isp-point {
  background: #fff;
  border: 1px solid var(--nx-line);
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 10px 30px rgba(11,42,56,.04);
  transition: transform .2s ease, border-color .2s ease;
}
.lp-isp-point:hover {
  transform: translateY(-2px);
  border-color: #99f6e4;
}
.lp-isp-point strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  letter-spacing: -.02em;
}
.lp-isp-point p {
  margin: 0;
  color: var(--nx-muted);
  font-size: 14px;
  line-height: 1.6;
}

.lp-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lp-steps li {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--nx-line);
  padding: 22px 20px;
}
.lp-steps span {
  display: block;
  font-family: var(--nx-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--nx-primary);
  margin-bottom: 10px;
}
.lp-steps strong {
  display: block;
  font-size: 17px;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.lp-steps p {
  margin: 0;
  color: var(--nx-muted);
  font-size: 14px;
  line-height: 1.6;
}

.lp-section-head.row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.lp-help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.lp-help-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--nx-line);
  border-radius: 16px;
  padding: 20px;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.lp-help-card:hover {
  transform: translateY(-2px);
  border-color: #99f6e4;
  box-shadow: var(--nx-shadow);
  color: inherit;
}
.lp-help-card em {
  font-style: normal;
  display: inline-flex;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--nx-primary-soft);
  color: var(--nx-primary-deep);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
  align-items: center;
}
.lp-help-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  letter-spacing: -.02em;
}
.lp-help-card p {
  margin: 0;
  color: var(--nx-muted);
  font-size: 14px;
  line-height: 1.6;
}

.lp-cta-slim {
  text-align: center;
  padding: 48px 28px;
}
.lp-footer-slim {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.lp-footer-slim .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
}
.lp-footer-slim .links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-footer-slim .links a {
  display: inline;
  margin: 0;
}
.lp-footer-legal {
  margin: 8px 0 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.lp-footer-legal h4 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 650;
  color: #fff;
}
.lp-footer-legal ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-footer-legal a {
  color: rgba(226, 232, 240, .72);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 14px;
}
.lp-footer-legal a:hover { color: #fff; }

@media (max-width: 980px) {
  .lp-brand-text { display: none; }
  .lp-nav-toggle { display: inline-flex; }
  .lp-nav-panel {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .14);
    z-index: 30;
  }
  .lp-nav.is-open .lp-nav-panel { display: flex; }
  .lp-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
    flex: none;
  }
  .lp-menu a {
    height: 44px;
    border-radius: 10px;
    justify-content: flex-start;
    font-size: 15px;
  }
  .lp-nav-actions {
    margin-left: auto;
    gap: 8px;
    position: relative;
    z-index: 2;
  }
  .lp-nav-actions .lp-link {
    font-size: 14px;
    padding: 0 4px;
  }
  .lp-nav-actions .lp-btn-sm {
    height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }
  .lp-isp-grid,
  .lp-steps,
  .lp-help-grid { grid-template-columns: 1fr; }
  .lp-section-head.row { flex-direction: column; align-items: flex-start; }
  .lp-hero-v2 {
    min-height: auto;
    padding: 108px 20px 56px;
    overflow: hidden;
  }
  .lp-hero-canvas { pointer-events: none; }
  .lp-hero-ring,
  .lp-float { display: none !important; }
  .lp-hero-nodes { opacity: .35; }
  .lp-hero-frame {
    position: relative;
    z-index: 2;
    max-width: 100%;
  }
  .lp-eyebrow {
    font-size: 11px;
    letter-spacing: .14em;
  }
  .lp-name {
    font-size: clamp(36px, 11vw, 52px);
    line-height: 1.08;
    word-break: break-word;
  }
  .lp-lead {
    font-size: 16px;
    line-height: 1.55;
    max-width: 100%;
  }
  .lp-desc {
    font-size: 14px;
    line-height: 1.7;
    max-width: 100%;
  }
  .lp-hero-cta {
    flex-wrap: wrap;
    gap: 12px;
  }
  .lp-footer {
    padding: 40px 0 24px;
  }
  .lp-footer-grid,
  .lp-footer-grid-3 {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 28px !important;
    grid-template-columns: none !important;
  }
  .lp-footer-brand-col,
  .lp-footer-legal-col,
  .lp-footer-contact-col {
    width: 100%;
    max-width: 100%;
  }
  .lp-footer p {
    max-width: none;
  }
  .lp-footer-legal-col a {
    display: block;
    width: fit-content;
    max-width: 100%;
    white-space: nowrap;
  }
  .lp-contact-row {
    align-items: flex-start;
  }
  .lp-contact-line {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}
