/* AI Startup OS — dark luxury landing (Aseer-inspired) */
.lp {
  --lp-gold: #c5a059;
  --lp-gold-soft: rgba(197, 160, 89, 0.16);
  --lp-ink: #0b0f14;
  --lp-panel: #121820;
  --lp-card: #ffffff;
  --lp-muted: #8b97a5;
  --lp-text: #eef1f4;
  --lp-radius: 1.15rem;
  --lp-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  font-family: "Tajawal", "IBM Plex Sans Arabic", Inter, sans-serif;
  background: var(--lp-ink);
  color: var(--lp-text);
  overflow-x: clip;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

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

/* —— Nav —— */
.lp-nav {
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background .25s ease, backdrop-filter .25s ease, box-shadow .25s ease;
}
.lp-nav.is-solid {
  position: fixed;
  background: rgba(11, 15, 20, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border-radius: 0 0 18px 18px;
  inset-inline: 1rem;
  top: .4rem;
  max-width: calc(1240px - 2rem);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(1240px, calc(100% - 2rem));
}
[dir="rtl"] .lp-nav.is-solid { transform: translateX(50%); left: auto; right: 50%; }

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}
.lp-logo {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #111;
  font-size: 0.78rem;
  font-weight: 900;
  background: linear-gradient(135deg, #e0c57a, var(--lp-gold));
}
.lp-links {
  display: flex;
  gap: 1.15rem;
  align-items: center;
  flex-wrap: wrap;
}
.lp-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 0.92rem;
}
.lp-links a:hover { color: var(--lp-gold); }
.lp-links a.is-active { color: var(--lp-gold); }
.lp-nav-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}
.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.lp-menu-btn {
  display: none;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  flex-shrink: 0;
  z-index: 60;
}
.lp-menu-btn span {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}
.lp-nav.is-open .lp-menu-btn span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lp-nav.is-open .lp-menu-btn span:nth-child(2) { opacity: 0; }
.lp-nav.is-open .lp-menu-btn span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.lp-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(5, 8, 12, 0.55);
  backdrop-filter: blur(2px);
}
.lp-nav-backdrop[hidden] { display: none !important; }

.lp-lang {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.18rem;
}
.lp-lang form { margin: 0; }
.lp-lang button {
  border: none;
  background: transparent;
  border-radius: 999px;
  padding: 0.32rem 0.68rem;
  font-weight: 750;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.lp-lang button.on {
  background: var(--lp-gold);
  color: #111;
}

/* —— Buttons —— */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  font-weight: 800;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.lp-btn:hover { transform: translateY(-2px); }
.lp-btn-gold {
  background: linear-gradient(135deg, #e0c57a, var(--lp-gold));
  color: #14110b !important;
  box-shadow: 0 12px 28px rgba(197, 160, 89, 0.35);
}
.lp-btn-ghost {
  background: transparent;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.lp-btn-lg { padding: 0.95rem 1.55rem; font-size: 1rem; }

/* —— Hero —— */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 7.5rem 1.5rem 3.5rem;
  overflow: hidden;
}
.lp-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.lp-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transform: scale(1.02);
}
.lp-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 15, 20, 0.28) 0%, rgba(11, 15, 20, 0.18) 35%, rgba(11, 15, 20, 0.78) 78%, rgba(11, 15, 20, 0.94) 100%),
    radial-gradient(ellipse 70% 50% at 50% 25%, transparent 0%, rgba(11, 15, 20, 0.25) 100%);
  pointer-events: none;
}
.lp-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.lp-brand-signal {
  color: var(--lp-gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}
.lp-hero h1 {
  font-size: clamp(2.2rem, 5.4vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin: 0 auto 1rem;
  max-width: 16ch;
  color: #fff;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}
.lp-hero-sub {
  max-width: 46ch;
  margin: 0 auto 1.6rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.7;
}
.lp-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.lp-hero-visual {
  max-width: 920px;
  margin: 0 auto;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.45));
}
.lp-float { animation: lp-float 5.5s ease-in-out infinite; }
@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Dashboard mock */
.lp-dash {
  background: linear-gradient(160deg, rgba(24, 32, 42, 0.96), rgba(12, 16, 22, 0.98));
  border: 1px solid rgba(197, 160, 89, 0.22);
  border-radius: 1.25rem;
  overflow: hidden;
  text-align: start;
}
.lp-dash-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.lp-dash-chrome span {
  width: 9px; height: 9px; border-radius: 50%;
  background: #3a4654;
}
.lp-dash-chrome span:first-child { background: #e07070; }
.lp-dash-chrome em {
  margin-inline-start: auto;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--lp-gold);
  font-weight: 700;
}
.lp-dash-body {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1rem;
  padding: 1.15rem;
}
.lp-dash-head {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 0.9rem;
}
.lp-ring {
  --p: 70;
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: conic-gradient(var(--lp-gold) calc(var(--p) * 1%), rgba(255,255,255,.1) 0);
  position: relative;
}
.lp-ring::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #151c26;
}
.lp-ring strong {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  color: #fff;
}
.lp-dash-status {
  color: var(--lp-gold);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}
.lp-dash-head h3 {
  margin: 0.15rem 0 0;
  font-size: 1.05rem;
  color: #fff;
}
.lp-dash-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}
.lp-dash-tabs span {
  font-size: 0.72rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.65);
}
.lp-dash-tabs span.on {
  background: var(--lp-gold-soft);
  color: var(--lp-gold);
}
.lp-dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}
.lp-dash-stats div {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0.7rem;
  padding: 0.55rem;
}
.lp-dash-stats span {
  display: block;
  font-size: 0.68rem;
  color: var(--lp-muted);
}
.lp-dash-stats strong {
  color: #fff;
  font-size: 0.95rem;
}
.lp-dash-bars { display: grid; gap: 0.4rem; }
.lp-dash-bars div {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.lp-dash-bars i {
  display: block;
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, var(--lp-gold), #e0c57a);
  border-radius: inherit;
}
.lp-dash-side {
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.18);
  border-radius: 1rem;
  padding: 0.9rem;
}
.lp-ai-chip {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--lp-gold);
}
.lp-ai-chip span { display: block; font-size: 0.72rem; color: var(--lp-muted); }
.lp-ai-chip strong { color: #fff; font-size: 1.2rem; }
.lp-dash-side ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}
.lp-dash-side li {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  padding-inline-start: 0.85rem;
  position: relative;
}
.lp-dash-side li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.45rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lp-gold);
}

/* —— Sections —— */
.lp-section {
  padding: 5rem 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.lp-section-light {
  max-width: none;
  background: #f6f4ef;
  color: #14212b;
  padding-inline: 0;
}
.lp-section-light > .lp-head,
.lp-section-light > .lp-feat-grid,
.lp-section-light > .lp-stats,
.lp-section-light > .lp-show,
.lp-section-light > .lp-proof {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.lp-section-dark {
  max-width: none;
  background: #0e141c;
  padding-inline: 0;
}
.lp-section-dark > .lp-head,
.lp-section-dark > .lp-journey-track {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.lp-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.lp-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  margin: 0 0 0.65rem;
}
.lp-head p {
  max-width: 48ch;
  margin: 0 auto;
  color: var(--lp-muted);
  font-size: 1.05rem;
}
.lp-section-light .lp-head p { color: #5c6b76; }
.lp-eyebrow {
  color: var(--lp-gold);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.55rem;
}
.lp-eyebrow.gold { color: #e0c57a; }

/* Features */
.lp-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.lp-feat {
  background: #fff;
  border-radius: var(--lp-radius);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(20, 33, 43, 0.08);
  border: 1px solid rgba(20, 33, 43, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .22s ease, box-shadow .22s ease;
}
.lp-feat:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(20, 33, 43, 0.12);
}
.lp-feat-top { padding: 1.35rem 1.35rem 1rem; }
.lp-ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--lp-gold-soft);
  color: var(--lp-gold);
  margin-bottom: 0.85rem;
}
.lp-ico svg { width: 20px; height: 20px; }
.lp-feat h3 {
  font-size: 1.12rem;
  font-weight: 800;
  margin: 0 0 0.45rem;
  color: #14212b;
}
.lp-feat p {
  margin: 0;
  color: #5c6b76;
  font-size: 0.95rem;
  line-height: 1.55;
}
.lp-feat-media {
  margin-top: auto;
  height: 140px;
  background-size: cover;
  background-position: center;
}
.lp-prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.lp-prog {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--lp-radius);
  padding: 1.25rem 1.3rem;
}
.lp-section-light .lp-prog {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.08);
  color: #0f172a;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}
.lp-prog h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
}
.lp-prog p {
  margin: 0 0 0.85rem;
  opacity: 0.78;
  line-height: 1.55;
  font-size: 0.92rem;
}
.lp-section-light .lp-prog p { color: #5c6b76; opacity: 1; }
.lp-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0;
}
.lp-meta div {
  background: rgba(197, 160, 89, 0.12);
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
}
.lp-meta dt {
  font-size: 0.68rem;
  font-weight: 700;
  opacity: 0.7;
  margin: 0;
}
.lp-meta dd {
  margin: 0.1rem 0 0;
  font-weight: 800;
  font-size: 0.88rem;
}


/* Journey */
.lp-journey-track { overflow-x: auto; padding-bottom: 0.5rem; }
.lp-journey {
  list-style: none;
  margin: 0;
  padding: 1.5rem 0 0.5rem;
  display: flex;
  gap: 0.35rem;
  min-width: max-content;
  position: relative;
  justify-content: space-between;
}
.lp-journey::before {
  content: "";
  position: absolute;
  top: 2.55rem;
  inset-inline: 1.5rem;
  border-top: 2px dashed rgba(197, 160, 89, 0.45);
}
.lp-journey li {
  width: 120px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.lp-journey-node {
  width: 54px; height: 54px;
  margin: 0 auto 0.7rem;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(145deg, #e0c57a, var(--lp-gold));
  color: #14110b;
  box-shadow: 0 10px 24px rgba(197, 160, 89, 0.35);
}
.lp-journey-node svg { width: 22px; height: 22px; }
.lp-journey strong {
  display: block;
  font-size: 0.88rem;
  color: #fff;
  font-weight: 700;
}

/* Stats */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
}
.lp-stat {
  background: #fff;
  border-radius: var(--lp-radius);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(20, 33, 43, 0.06);
  border: 1px solid rgba(20, 33, 43, 0.05);
}
.lp-stat .lp-ico { margin-inline: auto  ; margin-bottom: 0.65rem; }
.lp-stat strong {
  display: block;
  font-size: 1.65rem;
  font-weight: 900;
  color: #14212b;
  margin-bottom: 0.2rem;
}
.lp-stat h3 {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: #5c6b76;
}

/* Showcase zigzag */
.lp-show {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3.5rem;
}
.lp-show.img-last .lp-show-media { order: 2; }
.lp-show.img-last .lp-show-copy { order: 1; }
.lp-show-media {
  min-height: 320px;
  border-radius: calc(var(--lp-radius) + 0.35rem);
  background-size: cover;
  background-position: center;
  box-shadow: var(--lp-shadow);
}
.lp-show-copy h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 900;
  margin: 0 0 0.85rem;
  color: #14212b;
  max-width: 18ch;
}
.lp-show-copy p {
  color: #5c6b76;
  line-height: 1.7;
  margin: 0 0 1.25rem;
  max-width: 42ch;
}

/* AI banner */
.lp-ai {
  position: relative;
  padding: 5.5rem 1.5rem;
  background:
    linear-gradient(100deg, rgba(11, 15, 20, 0.92), rgba(11, 15, 20, 0.72)),
    var(--ai-img) center/cover no-repeat;
  color: #fff;
}
.lp-ai-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 15, 20, 0.85), rgba(11, 15, 20, 0.35));
}
.lp-ai-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto 0;
  margin-inline-start: max(1.5rem, calc((100% - 1180px) / 2 + 1.5rem));
}
[dir="ltr"] .lp-ai-inner {
  margin-inline-start: max(1.5rem, calc((100% - 1180px) / 2 + 1.5rem));
}
.lp-ai h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 900;
  margin: 0 0 0.85rem;
  max-width: 16ch;
}
.lp-ai > .lp-ai-inner > p,
.lp-ai-inner > p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 1.35rem;
  max-width: 46ch;
}
.lp-ai-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.lp-ai-cols h4 {
  color: var(--lp-gold);
  font-size: 0.9rem;
  margin-bottom: 0.55rem;
}
.lp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.lp-pills span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
}
.lp-pills.accent span {
  background: var(--lp-gold-soft);
  border-color: rgba(197, 160, 89, 0.35);
  color: #e0c57a;
}

/* Why region */
.lp-region {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 4.5rem 1.5rem;
  background: var(--region-img) center/cover no-repeat;
  text-align: center;
}
.lp-region-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 20, 0.55), rgba(11, 15, 20, 0.72));
}
.lp-region-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}
.lp-about-eyebrow {
  color: var(--lp-gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin: 0 0 0.75rem;
}
.lp-region h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 900;
  margin: 0 0 0.55rem;
  color: #fff;
}
.lp-about-lead {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 42rem;
  margin: 0 auto 0.85rem !important;
}
.lp-about-body {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 40rem;
  margin: 0 auto 1.75rem !important;
}
.lp-about-region {
  color: var(--lp-gold);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 1.25rem;
}
.lp-region p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}
.lp-region-points {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.lp-region-points > div {
  display: grid;
  gap: 0.65rem;
  justify-items: center;
}
.lp-region-ico {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(145deg, #e0c57a, var(--lp-gold));
  color: #14110b;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
.lp-region-ico svg { width: 24px; height: 24px; }
.lp-region-points strong {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

/* Social proof */
.lp-proof {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.lp-partners-block h2,
.lp-quote-block h2 {
  font-size: 1.55rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
  color: #14212b;
}
.lp-partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.lp-partner {
  background: #fff;
  border: 1px solid rgba(20, 33, 43, 0.08);
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 10px 24px rgba(20, 33, 43, 0.05);
}
.lp-partner span {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  margin: 0 auto 0.55rem;
  border-radius: 14px;
  background: #14212b;
  color: var(--lp-gold);
  font-weight: 900;
  font-size: 0.78rem;
}
.lp-partner em {
  font-style: normal;
  font-size: 0.78rem;
  color: #5c6b76;
  font-weight: 700;
}
.lp-quote {
  background: #fff;
  border-radius: calc(var(--lp-radius) + 0.2rem);
  padding: 1.6rem;
  margin: 0;
  box-shadow: 0 18px 45px rgba(20, 33, 43, 0.08);
  border: 1px solid rgba(20, 33, 43, 0.06);
}
.lp-quote > p {
  font-size: 1.12rem;
  line-height: 1.75;
  color: #14212b;
  margin: 0 0 1.25rem;
  font-weight: 600;
}
.lp-quote footer {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.lp-quote img,
.lp-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.lp-avatar {
  display: grid; place-items: center;
  background: var(--lp-gold-soft);
  color: var(--lp-gold);
  font-weight: 800;
}
.lp-quote strong { display: block; color: #14212b; }
.lp-quote span { color: #5c6b76; font-size: 0.88rem; }

/* Final CTA */
.lp-final {
  position: relative;
  padding: 5.5rem 1.5rem;
  text-align: center;
  background: var(--cta-img) center/cover no-repeat;
}
.lp-final-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 20, 0.55), rgba(11, 15, 20, 0.78));
}
.lp-final-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.lp-final h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 0.75rem;
}
.lp-final p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

/* Footer */
.lp-footer {
  background: #0a0e13;
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 1.5rem 1.5rem;
}
.lp-footer-grid {
  max-width: 1180px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.85fr) 1.15fr;
  gap: 1.5rem;
}
.lp-footer h4 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}
.lp-footer a {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}
.lp-footer a:hover { color: var(--lp-gold); }
.lp-footer-brand p {
  margin: 0.85rem 0 1rem;
  max-width: 28ch;
  line-height: 1.6;
  font-size: 0.92rem;
}
.lp-social {
  display: flex;
  gap: 0.55rem;
}
.lp-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.06);
  margin: 0;
}
.lp-social svg { width: 16px; height: 16px; }
.lp-newsletter-form {
  display: grid;
  gap: 0.55rem;
}
.lp-newsletter-form input {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  outline: none;
}
.lp-newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.45); }
.lp-copy {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.lp-legal { display: flex; gap: 1rem; }
.lp-legal a { display: inline; margin: 0; }

/* Reveal */
.lp-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.lp-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .lp-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-stats { grid-template-columns: repeat(3, 1fr); }
  .lp-region-points { grid-template-columns: repeat(3, 1fr); }
  .lp-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-prog-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-menu-btn { display: flex; }
  .lp-nav {
    flex-wrap: nowrap;
    padding-inline: 1rem;
  }
  .lp-nav-panel {
    position: fixed;
    top: 0;
    inset-inline-end: 0;
    width: min(20rem, calc(100vw - 2.5rem));
    height: 100dvh;
    height: 100vh;
    margin: 0;
    padding: 5.25rem 1.25rem 1.5rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1.25rem;
    background: rgba(11, 15, 20, 0.97);
    border-inline-start: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.45);
    transform: translateX(110%);
    transition: transform .28s ease;
    z-index: 55;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  [dir="rtl"] .lp-nav-panel {
    transform: translateX(-110%);
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.45);
  }
  .lp-nav.is-open .lp-nav-panel {
    transform: translateX(0);
  }
  .lp-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    width: 100%;
  }
  .lp-links a {
    display: block;
    padding: 0.85rem 0.9rem;
    border-radius: 12px;
    font-size: 1rem;
    color: #fff;
  }
  .lp-links a:hover,
  .lp-links a.is-active {
    background: rgba(197, 160, 89, 0.14);
    color: var(--lp-gold);
  }
  .lp-nav-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .lp-nav-actions .lp-btn {
    width: 100%;
  }
  .lp-lang { justify-content: center; align-self: center; }
  body.lp-menu-lock { overflow: hidden; }
}

@media (max-width: 900px) {
  .lp-hero {
    min-height: auto;
    padding: 6.5rem 1.15rem 3rem;
    align-items: center;
  }
  .lp-hero-inner {
    padding-inline: 0;
    text-align: center;
    align-items: center;
  }
  .lp-hero h1 {
    max-width: none;
    font-size: clamp(1.7rem, 5.5vw, 2.5rem);
  }
  .lp-hero-sub { margin-inline: auto; }
  .lp-hero-ctas {
    justify-content: center;
    flex-wrap: wrap;
  }
  .lp-hero-visual {
    width: min(100%, 34rem);
    margin-inline: auto;
    margin-top: 1.5rem;
  }
  .lp-dash-body { grid-template-columns: 1fr; }
  .lp-dash-stats { grid-template-columns: repeat(2, 1fr); }
  .lp-show,
  .lp-show.img-last {
    grid-template-columns: 1fr;
  }
  .lp-show.img-last .lp-show-media,
  .lp-show.img-last .lp-show-copy,
  .lp-show .lp-show-media,
  .lp-show .lp-show-copy { order: unset; }
  .lp-show-media { min-height: 220px; }
  .lp-proof { grid-template-columns: 1fr; }
  .lp-ai-cols { grid-template-columns: 1fr; }
  .lp-region-points { grid-template-columns: repeat(2, 1fr); }
  .lp-section { padding-inline: 1.15rem; }
  .lp-journey {
    gap: 0.75rem;
    min-width: max-content;
    padding-inline: 0.25rem;
  }
  .lp-journey li { min-width: 7.5rem; }
  .lp-final-cta,
  .lp-ai,
  .lp-region { padding-inline: 1.15rem; }
}

@media (max-width: 640px) {
  .lp-feat-grid,
  .lp-stats,
  .lp-partners,
  .lp-prog-grid,
  .lp-footer-grid { grid-template-columns: 1fr; }
  .lp-region-points { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .lp-nav {
    padding: 0.85rem 0.85rem;
  }
  .lp-nav.is-solid {
    inset-inline: 0.5rem;
    width: calc(100% - 1rem);
    max-width: none;
  }
  .lp-brand strong { font-size: 0.92rem; }
  .lp-hero { padding-top: 5.75rem; }
  .lp-hero-ctas .lp-btn { width: 100%; }
  .lp-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }
  .lp-newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }
  .lp-newsletter-form .lp-btn { width: 100%; }
  .lp-product .lp-hero-inner { padding-bottom: 2rem; }
}

@media (max-width: 420px) {
  .lp-region-points { grid-template-columns: 1fr; }
  .lp-dash-stats { grid-template-columns: 1fr; }
}

/* iPad / tablet landscape polish */
@media (min-width: 641px) and (max-width: 1100px) {
  .lp-hero-visual { width: min(100%, 28rem); }
  .lp-section { padding-block: 3.25rem; }
  .lp-feat-grid,
  .lp-prog-grid { gap: 1rem; }
}

.lp-newsletter-flash {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
}
.lp-newsletter-flash.ok { color: #6ee7b7; }
.lp-newsletter-flash.err { color: #fca5a5; }
