/* =============================================================================
   Oakscroft Partner Network — Landing polish
   Motion, spacing, responsive. Brand tokens from app.css.
   ============================================================================= */

.lp-body {
  margin: 0;
  background: #f8fafc;
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.lp-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
}
.lp-skip:focus { left: 1rem; top: 1rem; }

.lp-container {
  width: min(1120px, calc(100% - 1.5rem));
  margin-inline: auto;
  padding-inline: 0;
}
@media (min-width: 360px) {
  .lp-container { width: min(1120px, calc(100% - 2rem)); }
}
@media (min-width: 768px) {
  .lp-container { width: min(1120px, calc(100% - 2.5rem)); }
}

/* -------------------------------------------------------------------------- */
/* Header                                                                     */
/* -------------------------------------------------------------------------- */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  background: rgba(248, 250, 252, 0.78);
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
  box-shadow: 0 0 0 transparent;
  transition: background 0.35s ease-out, box-shadow 0.35s ease-out, border-color 0.35s ease-out;
}
.lp-header.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  border-bottom-color: rgba(226, 232, 240, 0.95);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}
.lp-header-inner {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 0;
  padding-block: 0.3rem;
}
@media (min-width: 960px) {
  .lp-header-inner {
    gap: 1rem;
    padding-block: 0.35rem;
  }
}
.lp-brand {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  text-decoration: none;
  line-height: 0;
}
.lp-brand:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 8px;
}
/* Large logo; header stays compact (tight padding only) */
.lp-brand-logo {
  height: 96px;
  width: auto;
  max-height: 96px;
  max-width: min(280px, 52vw);
  object-fit: contain;
  object-position: left center;
  display: block;
}
@media (min-width: 360px) {
  .lp-brand-logo {
    height: 104px;
    max-height: 104px;
    max-width: min(300px, 54vw);
  }
}
@media (min-width: 480px) {
  .lp-brand-logo {
    height: 112px;
    max-height: 112px;
    max-width: min(320px, 48vw);
  }
}
@media (min-width: 960px) {
  .lp-brand-logo {
    height: 120px;
    max-height: 120px;
    max-width: none;
  }
}
.lp-nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
  margin-left: 1.25rem;
}
.lp-nav a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease-out;
}
.lp-nav a:hover { color: var(--primary); }
.lp-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (min-width: 960px) {
  .lp-nav { display: flex; }
}

.lp-header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.lp-lang {
  display: inline-flex;
  align-items: center;
  padding: 0.16rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.lp-lang-btn {
  border: 0;
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
  min-height: 34px;
  transition: background 0.25s ease-out, color 0.25s ease-out;
}
@media (min-width: 375px) {
  .lp-lang-btn { font-size: 0.74rem; padding: 0.38rem 0.7rem; }
}
.lp-lang-btn.is-active {
  background: var(--primary-soft);
  color: var(--primary);
}
.lp-lang-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.lp-menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.25s ease-out, box-shadow 0.25s ease-out;
}
.lp-menu-toggle:hover {
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: var(--shadow);
}
.lp-menu-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
@media (min-width: 960px) {
  .lp-menu-toggle { display: none; }
}
@media (max-width: 959px) {
  .lp-hide-sm { display: none !important; }
}

.lp-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.4rem 1rem 1rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  animation: lp-menu-in 0.28s ease-out;
}
.lp-mobile-nav[hidden] { display: none !important; }
.lp-mobile-nav a {
  padding: 0.85rem 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius-sm);
  min-height: 48px;
  display: flex;
  align-items: center;
  transition: background 0.2s ease-out;
}
.lp-mobile-nav a:hover,
.lp-mobile-nav a:focus-visible { background: var(--bg-muted); }
.lp-mobile-nav .lp-btn {
  justify-content: center;
  margin-top: 0.45rem;
  width: 100%;
}
@media (min-width: 960px) {
  .lp-mobile-nav { display: none !important; }
}
@keyframes lp-menu-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

/* -------------------------------------------------------------------------- */
/* Buttons                                                                    */
/* -------------------------------------------------------------------------- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 48px;
  padding: 0.75rem 1.15rem;
  transition:
    transform 0.28s ease-out,
    box-shadow 0.28s ease-out,
    background 0.28s ease-out,
    color 0.28s ease-out,
    border-color 0.28s ease-out;
}
.lp-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.lp-btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.86rem;
  min-height: 40px;
}
.lp-btn-lg {
  padding: 0.9rem 1.4rem;
  font-size: 0.95rem;
  min-height: 50px;
}
@media (min-width: 375px) {
  .lp-btn-lg { font-size: 0.98rem; padding: 0.9rem 1.5rem; }
}
.lp-btn-primary {
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(15, 118, 110, 0.26);
}
.lp-btn-secondary {
  background: #fff;
  color: var(--text) !important;
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.lp-btn-ghost {
  background: transparent;
  color: var(--text-secondary) !important;
}
.lp-btn-light {
  background: rgba(255,255,255,0.12);
  color: #fff !important;
  border-color: rgba(255,255,255,0.28);
}

@media (hover: hover) and (pointer: fine) {
  .lp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(15, 118, 110, 0.34);
    color: #fff !important;
  }
  .lp-btn-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 118, 110, 0.4);
    color: var(--primary) !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  }
  .lp-btn-ghost:hover {
    color: var(--primary) !important;
    background: var(--primary-soft);
  }
  .lp-btn-light:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.22);
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  }
}
.lp-btn:active {
  transform: translateY(1px) scale(0.985);
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */
.lp-hero {
  position: relative;
  padding: 2.25rem 0 2.75rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .lp-hero { padding: 3rem 0 3.5rem; }
}
@media (min-width: 960px) {
  .lp-hero { padding: 3.75rem 0 4.5rem; overflow: visible; }
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(900px 420px at 12% -12%, rgba(15, 118, 110, 0.12), transparent 62%),
    radial-gradient(720px 360px at 88% 8%, rgba(20, 184, 166, 0.1), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.lp-hero-bg::after {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(40% 30% at 70% 40%, rgba(20, 184, 166, 0.07), transparent 70%),
    radial-gradient(35% 28% at 20% 60%, rgba(15, 118, 110, 0.06), transparent 70%);
  animation: lp-glow-shift 14s ease-in-out infinite alternate;
}
.lp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.45;
  animation: lp-orb-float 9s ease-in-out infinite;
}
.lp-orb-a {
  width: 120px;
  height: 120px;
  top: 12%;
  right: 8%;
  background: rgba(20, 184, 166, 0.14);
  animation-delay: 0s;
}
.lp-orb-b {
  width: 80px;
  height: 80px;
  bottom: 18%;
  left: 6%;
  background: rgba(15, 118, 110, 0.1);
  animation-delay: 1.2s;
}
.lp-orb-c {
  width: 56px;
  height: 56px;
  top: 48%;
  left: 42%;
  background: rgba(20, 184, 166, 0.08);
  animation-delay: 2.4s;
}
@keyframes lp-glow-shift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(2%, -2%, 0) scale(1.04); }
}
@keyframes lp-orb-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -12px, 0); }
}

.lp-hero-grid {
  position: relative;
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 768px) {
  .lp-hero-grid { gap: 2.25rem; }
}
@media (min-width: 960px) {
  .lp-hero-grid {
    grid-template-columns: 1.02fr 0.98fr;
    gap: 2.5rem;
  }
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (min-width: 375px) {
  .lp-eyebrow { font-size: 0.8rem; margin-bottom: 0.9rem; }
}
.lp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.16);
}

.lp-hero-copy h1 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.75rem, 6.2vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: #0f172a;
  max-width: 15ch;
  font-weight: 800;
}
@media (min-width: 375px) {
  .lp-hero-copy h1 { margin-bottom: 1rem; }
}
.lp-hero-sub {
  margin: 0 0 1.35rem;
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 2.8vw, 1.08rem);
  line-height: 1.7;
  max-width: 36rem;
}
@media (min-width: 375px) {
  .lp-hero-sub { margin-bottom: 1.55rem; }
}
.lp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}
.lp-hero-cta .lp-btn {
  flex: 1 1 auto;
  min-width: min(100%, 148px);
}
@media (min-width: 400px) {
  .lp-hero-cta .lp-btn { flex: 0 1 auto; }
}
.lp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-secondary);
  font-size: 0.86rem;
  font-weight: 500;
}
@media (min-width: 375px) {
  .lp-trust { font-size: 0.9rem; gap: 0.7rem 1.15rem; }
}
.lp-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.lp-trust i {
  width: 17px;
  height: 17px;
  color: var(--primary);
  flex-shrink: 0;
}

.lp-hero-visual {
  width: 100%;
  display: flex;
  justify-content: center;
}
.lp-hero-stage {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  padding: 0.65rem;
  overflow: visible;
}
@media (min-width: 480px) {
  .lp-hero-stage {
    border-radius: 28px;
    padding: 0.85rem;
  }
}
@media (min-width: 960px) {
  .lp-hero-stage {
    max-width: none;
    margin-right: -1.25rem;
  }
}
@media (min-width: 1200px) {
  .lp-hero-stage { margin-right: -2rem; }
}
.lp-hero-stage picture {
  display: block;
  width: 100%;
}
.lp-hero-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 16px;
  background: #e2e8f0;
  object-fit: contain;
  object-position: center center;
  max-height: none;
}
@media (min-width: 480px) {
  .lp-hero-img { border-radius: 20px; }
}
@media (min-width: 960px) {
  .lp-hero-img {
    object-fit: cover;
    object-position: center top;
    max-height: 540px;
  }
}
.lp-hero-float {
  animation: lp-float 6.5s ease-in-out infinite;
}
@keyframes lp-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

/* -------------------------------------------------------------------------- */
/* Sections                                                                   */
/* -------------------------------------------------------------------------- */
.lp-section {
  padding: 3.25rem 0;
}
@media (min-width: 768px) {
  .lp-section { padding: 4.25rem 0; }
}
@media (min-width: 1024px) {
  .lp-section { padding: 4.75rem 0; }
}
.lp-section-soft {
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
}
.lp-section-head {
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  text-align: center;
  padding-inline: 0.15rem;
}
@media (min-width: 768px) {
  .lp-section-head { margin-bottom: 2.4rem; }
}
.lp-section-head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.45rem, 4.2vw, 2.25rem);
  letter-spacing: -0.03em;
  font-weight: 750;
  color: #0f172a;
  line-height: 1.2;
}
.lp-section-sub {
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(0.94rem, 2.4vw, 1.02rem);
  line-height: 1.7;
}

.lp-cards-3 {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .lp-cards-3 {
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .lp-cards-3 { grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
}

.lp-card,
.lp-who-card,
.lp-timeline-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03), 0 8px 24px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.35s ease-out,
    box-shadow 0.35s ease-out,
    border-color 0.35s ease-out;
}
.lp-card {
  border-radius: 18px;
  padding: 1.25rem 1.15rem;
}
@media (min-width: 375px) {
  .lp-card { padding: 1.4rem 1.25rem; }
}
@media (hover: hover) and (pointer: fine) {
  .lp-card:hover,
  .lp-who-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
    border-color: rgba(15, 118, 110, 0.26);
  }
  .lp-timeline-item:hover .lp-timeline-card {
    transform: translateY(-5px);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.09);
    border-color: rgba(15, 118, 110, 0.22);
  }
}
.lp-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.04rem;
  letter-spacing: -0.015em;
}
.lp-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.6;
}
.lp-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  background: var(--primary-soft);
  color: var(--primary);
  transition: transform 0.35s ease-out;
}
.lp-icon i { width: 21px; height: 21px; }
@media (hover: hover) and (pointer: fine) {
  .lp-card:hover .lp-icon { transform: scale(1.06); }
}

/* Who */
.lp-who-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .lp-who-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (min-width: 1000px) {
  .lp-who-grid { grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
}
.lp-who-card {
  border-radius: 18px;
  padding: 1.25rem 1.1rem;
  text-align: left;
}
@media (min-width: 375px) {
  .lp-who-card { padding: 1.35rem 1.2rem; }
}
.lp-who-emoji {
  font-size: 1.65rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}
.lp-who-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.04rem;
}
.lp-who-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}
.lp-who-wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.06), rgba(20, 184, 166, 0.05));
  border-color: rgba(15, 118, 110, 0.14);
}
.lp-who-wide .lp-who-emoji { margin: 0; }

/* Timeline */
.lp-timeline {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
  position: relative;
}
.lp-timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.35), rgba(20, 184, 166, 0.12));
}
@media (min-width: 720px) {
  .lp-timeline::before { left: 23px; }
}
.lp-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.85rem;
  align-items: start;
  margin-bottom: 0.9rem;
}
@media (min-width: 720px) {
  .lp-timeline-item {
    grid-template-columns: 50px 1fr;
    gap: 1.15rem;
    margin-bottom: 1rem;
  }
}
.lp-timeline-marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 2px solid rgba(15, 118, 110, 0.35);
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.08);
  z-index: 1;
}
.lp-timeline-marker span {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
}
.lp-timeline-card {
  border-radius: 16px;
  padding: 1.1rem 1.1rem;
}
@media (min-width: 375px) {
  .lp-timeline-card { padding: 1.15rem 1.2rem; }
}
.lp-timeline-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.04rem;
}
.lp-timeline-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.6;
}
.lp-center-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
  padding-inline: 0.25rem;
}
@media (min-width: 768px) {
  .lp-center-cta { margin-top: 2.15rem; }
}
.lp-center-cta .lp-btn { width: min(100%, 320px); }

/* FAQ */
.lp-faq-wrap { max-width: 760px; }
.lp-faq { display: flex; flex-direction: column; gap: 0.7rem; }
.lp-faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: border-color 0.3s ease-out, box-shadow 0.3s ease-out;
}
.lp-faq-item:has(.lp-faq-q[aria-expanded="true"]) {
  border-color: rgba(15, 118, 110, 0.22);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}
.lp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1rem 1.05rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  min-height: 54px;
  font-size: 0.95rem;
  line-height: 1.35;
  transition: background 0.25s ease-out;
}
@media (min-width: 375px) {
  .lp-faq-q { padding: 1.05rem 1.15rem; font-size: 1rem; }
}
.lp-faq-q:hover { background: rgba(248, 250, 252, 0.9); }
.lp-faq-q:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}
.lp-faq-q i {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: transform 0.35s ease-out, color 0.25s ease-out;
  flex-shrink: 0;
}
.lp-faq-q[aria-expanded="true"] i {
  transform: rotate(180deg);
  color: var(--primary);
}
.lp-faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease-out;
}
.lp-faq-a.is-open {
  grid-template-rows: 1fr;
}
.lp-faq-a-inner {
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.35s ease-out 0.02s, transform 0.35s ease-out 0.02s;
}
.lp-faq-a.is-open .lp-faq-a-inner {
  opacity: 1;
  transform: none;
}
.lp-faq-a p {
  margin: 0;
  padding: 0 1.05rem 1.05rem;
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.65;
}
@media (min-width: 375px) {
  .lp-faq-a p { padding: 0 1.15rem 1.15rem; font-size: 0.95rem; }
}

/* Final CTA */
.lp-final {
  padding: 0.75rem 0 3.5rem;
}
@media (min-width: 768px) {
  .lp-final { padding: 1rem 0 4.5rem; }
}
.lp-final-card {
  text-align: center;
  border-radius: 22px;
  padding: 2.25rem 1.15rem;
  background:
    radial-gradient(560px 220px at 18% 0%, rgba(20, 184, 166, 0.24), transparent 60%),
    radial-gradient(420px 180px at 88% 100%, rgba(13, 148, 136, 0.22), transparent 55%),
    linear-gradient(145deg, #0b1220 0%, #0f766e 58%, #0d9488 100%);
  background-size: 120% 120%, 120% 120%, 100% 100%;
  animation: lp-cta-glow 12s ease-in-out infinite alternate;
  color: #f8fafc;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}
@media (min-width: 480px) {
  .lp-final-card {
    border-radius: 28px;
    padding: 2.75rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .lp-final-card { padding: 3.15rem 1.75rem; }
}
@keyframes lp-cta-glow {
  from { background-position: 0% 40%, 100% 60%, 0 0; }
  to { background-position: 40% 0%, 40% 100%, 0 0; }
}
.lp-final-card h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.4rem, 4.5vw, 2.3rem);
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.lp-final-card p {
  margin: 0 auto 1.35rem;
  max-width: 34rem;
  color: rgba(248, 250, 252, 0.88);
  line-height: 1.7;
  font-size: clamp(0.95rem, 2.5vw, 1.02rem);
}
@media (min-width: 768px) {
  .lp-final-card p { margin-bottom: 1.55rem; }
}
.lp-final-actions {
  justify-content: center;
  margin-bottom: 0;
}
.lp-final-actions .lp-btn {
  min-width: min(100%, 168px);
}

/* Footer */
.lp-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  background: #0b1220;
  color: #cbd5e1;
  padding: 2.5rem 0 1.35rem;
}
@media (min-width: 768px) {
  .lp-footer { padding: 3rem 0 1.5rem; }
}
.lp-footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.75rem;
}
@media (min-width: 480px) {
  .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem 1.25rem; }
}
@media (min-width: 900px) {
  .lp-footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 1.75rem;
    margin-bottom: 2rem;
  }
}
.lp-footer-brand {
  grid-column: 1 / -1;
}
@media (min-width: 900px) {
  .lp-footer-brand { grid-column: auto; }
}
.lp-footer-brand img {
  height: 96px; /* 3× previous 32px */
  width: auto;
  max-width: min(360px, 85vw);
  object-fit: contain;
  margin-bottom: 0.9rem;
}
.lp-footer-brand p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 32ch;
}
.lp-footer h3 {
  margin: 0 0 0.75rem;
  color: #f8fafc;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.lp-footer nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.lp-footer a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  transition: color 0.25s ease-out;
}
.lp-footer a:hover,
.lp-footer a:focus-visible { color: #5eead4; }
.lp-footer a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
.lp-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  justify-content: space-between;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #64748b;
  font-size: 0.82rem;
}
.lp-footer-credit {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  color: #64748b;
  letter-spacing: 0.01em;
}
.lp-footer-heart {
  color: var(--accent);
  font-style: normal;
}

/* -------------------------------------------------------------------------- */
/* Reveal / stagger                                                           */
/* -------------------------------------------------------------------------- */
.lp-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(0.985);
  transition:
    opacity 0.55s ease-out,
    transform 0.55s ease-out;
  will-change: opacity, transform;
}
.lp-reveal[data-reveal="right"] {
  transform: translate3d(28px, 0, 0) scale(0.985);
}
.lp-reveal[data-reveal="left"] {
  transform: translate3d(-28px, 0, 0) scale(0.985);
}
.lp-reveal[data-reveal="scale"] {
  transform: scale(0.96);
}
.lp-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Parent stagger: children animate after parent is visible */
.lp-stagger > .lp-reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.985);
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
}
.lp-stagger.is-visible > .lp-reveal.is-visible,
.lp-stagger.is-visible > .lp-reveal {
  opacity: 1;
  transform: none;
}
.lp-stagger.is-visible > .lp-reveal:nth-child(1) { transition-delay: 0.04s; }
.lp-stagger.is-visible > .lp-reveal:nth-child(2) { transition-delay: 0.09s; }
.lp-stagger.is-visible > .lp-reveal:nth-child(3) { transition-delay: 0.14s; }
.lp-stagger.is-visible > .lp-reveal:nth-child(4) { transition-delay: 0.19s; }
.lp-stagger.is-visible > .lp-reveal:nth-child(5) { transition-delay: 0.24s; }
.lp-stagger.is-visible > .lp-reveal:nth-child(6) { transition-delay: 0.29s; }
.lp-stagger.is-visible > .lp-reveal:nth-child(7) { transition-delay: 0.34s; }
.lp-stagger.is-visible > .lp-reveal:nth-child(8) { transition-delay: 0.39s; }

/* Hero copy cascade when visible */
.lp-hero-copy.is-visible .lp-hero-cta {
  animation: lp-soft-rise 0.55s ease-out 0.08s both;
}
.lp-hero-copy.is-visible .lp-trust {
  animation: lp-soft-rise 0.55s ease-out 0.16s both;
}
@keyframes lp-soft-rise {
  from { opacity: 0; transform: translate3d(0, 12px, 0); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-reveal,
  .lp-stagger > .lp-reveal,
  .lp-hero-float,
  .lp-orb,
  .lp-hero-bg::after,
  .lp-final-card,
  .lp-card,
  .lp-who-card,
  .lp-timeline-card,
  .lp-btn,
  .lp-mobile-nav,
  .lp-hero-copy.is-visible .lp-hero-cta,
  .lp-hero-copy.is-visible .lp-trust {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .lp-faq-a,
  .lp-faq-a-inner {
    transition: none !important;
  }
}

html[lang="ml"] .lp-hero-copy h1 {
  max-width: 16ch;
  line-height: 1.28;
}
html[lang="ml"] .lp-section-head h2,
html[lang="ml"] .lp-hero-sub,
html[lang="ml"] .lp-section-sub,
html[lang="ml"] .lp-card p,
html[lang="ml"] .lp-who-card p {
  line-height: 1.65;
}
