/* MyCollector Landing — Refined Professional Theme
   Brand-aligned: deep navy + gold + teal/cyan from logo shield gradient. */
:root {
  /* Brand surfaces */
  --mc-navy: #050A14;
  --mc-navy-light: #0A1224;
  --mc-navy-mid: #121C38;
  --mc-navy-soft: #182448;

  /* Gold (logo left accent) */
  --mc-gold: #F2D396;
  --mc-gold-bright: #FFD700;
  --mc-gold-dark: #D4A843;
  --mc-gold-soft: rgba(242, 211, 150, 0.14);

  /* Teal / cyan (logo right accent) */
  --mc-teal: #00CED1;
  --mc-teal-light: #00D4FF;
  --mc-teal-soft: rgba(0, 206, 209, 0.14);

  /* Emerald (live / success) */
  --mc-green: #2FB37A;
  --mc-green-light: #4FD7A1;

  /* Trust accent (light sections) — teal-tinted */
  --mc-indigo: #00A8B5;
  --mc-indigo-light: #00CED1;

  /* Neutrals */
  --mc-white: #FFFFFF;
  --mc-off-white: #F6F7FB;
  --mc-gray-50: #FBFCFE;
  --mc-gray-100: #EEF1F7;
  --mc-gray-200: #E2E7F0;
  --mc-gray-300: #CBD3E1;
  --mc-gray-400: #94A0B5;
  --mc-gray-600: #5A6580;
  --mc-gray-700: #3E475C;
  --mc-gray-800: #1E2535;
  --mc-text-dark: #111726;
  --mc-text-body: #44506A;
  --mc-text-light: rgba(255, 255, 255, 0.82);
  --mc-text-muted: rgba(255, 255, 255, 0.56);

  --mc-radius-sm: 10px;
  --mc-radius: 14px;
  --mc-radius-lg: 18px;
  --mc-radius-xl: 24px;

  /* Layered, soft, professional shadows */
  --mc-shadow-xs: 0 1px 2px rgba(16, 24, 51, 0.06);
  --mc-shadow: 0 4px 16px rgba(16, 24, 51, 0.07), 0 1px 3px rgba(16, 24, 51, 0.05);
  --mc-shadow-md: 0 12px 32px rgba(16, 24, 51, 0.10), 0 2px 8px rgba(16, 24, 51, 0.05);
  --mc-shadow-lg: 0 24px 64px rgba(16, 24, 51, 0.14), 0 6px 16px rgba(16, 24, 51, 0.06);
  --mc-shadow-gold: 0 10px 30px rgba(212, 168, 67, 0.28);

  --mc-border: 1px solid var(--mc-gray-200);
  --mc-border-dark: 1px solid rgba(255, 255, 255, 0.08);

  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-med: 0.35s var(--ease-out);

  --mc-container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--mc-text-dark);
  background: var(--mc-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { text-decoration: none; transition: color var(--transition-fast), opacity var(--transition-fast); }

:focus-visible {
  outline: 2px solid var(--mc-teal);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: rgba(0, 206, 209, 0.22); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--mc-gray-100); }
::-webkit-scrollbar-thumb { background: var(--mc-gray-300); border-radius: 999px; border: 2px solid var(--mc-gray-100); }
::-webkit-scrollbar-thumb:hover { background: var(--mc-gray-400); }

/* ── Scroll animations (additive — content always visible) ── */
.lp-animate {
  opacity: 1;
  transform: translateY(0);
}
html.js-ready .lp-animate:not(.lp-visible) {
  transform: translateY(24px);
  transition: transform 0.7s var(--ease-out);
}
html.js-ready .lp-animate.lp-visible {
  transform: translateY(0);
  transition: transform 0.7s var(--ease-out);
}
.lp-animate.lp-delay-1 { transition-delay: 0.08s; }
.lp-animate.lp-delay-2 { transition-delay: 0.16s; }
.lp-animate.lp-delay-3 { transition-delay: 0.24s; }

/* ── Navbar ── */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: background var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
  border-bottom: 1px solid transparent;
}

.lp-nav.scrolled {
  background: rgba(5, 10, 20, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.lp-nav-inner {
  max-width: var(--mc-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  text-decoration: none;
}

.lp-logo-shield {
  display: block;
  width: 88px;
  height: 88px;
  min-width: 88px;
  min-height: 88px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.lp-footer-brand {
  display: flex;
  align-items: center;
}

.lp-footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.lp-footer-logo-shield {
  display: block;
  height: 34px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* Legacy text/icon logo — kept for any residual markup */
.lp-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(145deg, #F2D396 0%, var(--mc-gold) 45%, var(--mc-gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--mc-navy);
  box-shadow: 0 6px 18px rgba(207, 163, 71, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.lp-logo-icon.sm {
  width: 32px;
  height: 32px;
  font-size: 0.95rem;
  border-radius: 9px;
}

.lp-logo-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--mc-white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  position: relative;
}

.lp-nav-links a:not(.lp-nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--mc-gold);
  transition: width var(--transition-fast);
}

.lp-nav-links a:not(.lp-nav-cta):hover { color: var(--mc-white); }
.lp-nav-links a:not(.lp-nav-cta):hover::after { width: 100%; }

.lp-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(145deg, #F2D396, var(--mc-gold-dark));
  color: var(--mc-navy) !important;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: var(--mc-shadow-gold);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}

.lp-nav-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 14px 36px rgba(207, 163, 71, 0.42);
  color: var(--mc-navy) !important;
}

.lp-mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: var(--mc-white);
  padding: 8px 11px;
  font-size: 1.25rem;
  cursor: pointer;
}

/* ── Buttons ── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), filter var(--transition-fast);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.lp-btn-primary {
  background: linear-gradient(145deg, #F2D396, var(--mc-gold-dark));
  color: var(--mc-navy);
  box-shadow: var(--mc-shadow-gold);
}

.lp-btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 16px 40px rgba(207, 163, 71, 0.45);
  color: var(--mc-navy);
}

.lp-btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--mc-white);
}

.lp-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
  color: var(--mc-white);
}

.lp-btn-outline {
  background: transparent;
  border: 1.5px solid var(--mc-gray-300);
  color: var(--mc-text-dark);
}

.lp-btn-outline:hover {
  background: var(--mc-navy);
  border-color: var(--mc-navy);
  color: var(--mc-white);
  transform: translateY(-2px);
}

/* ── Hero ── */
.lp-hero {
  background:
    radial-gradient(ellipse 70% 60% at 78% 28%, rgba(0, 206, 209, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 50% 50% at 12% 88%, rgba(242, 211, 150, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, #040810 0%, var(--mc-navy) 55%, var(--mc-navy-light) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 2rem 90px;
  position: relative;
  overflow: hidden;
}

/* Subtle technical grid for a serious, engineered feel */
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 0%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 0%, transparent 80%);
  pointer-events: none;
}

.lp-hero-grid {
  max-width: var(--mc-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.lp-hero-content { color: var(--mc-white); }

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(47, 179, 122, 0.10);
  border: 1px solid rgba(47, 179, 122, 0.30);
  color: var(--mc-green-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin-bottom: 1.75rem;
  animation: lp-fade-up 0.6s var(--ease-out) both;
}

.lp-hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mc-green-light);
  box-shadow: 0 0 0 0 rgba(79, 215, 161, 0.6);
  animation: lp-ping 2s ease-in-out infinite;
}

@keyframes lp-ping {
  0% { box-shadow: 0 0 0 0 rgba(79, 215, 161, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(79, 215, 161, 0); }
  100% { box-shadow: 0 0 0 0 rgba(79, 215, 161, 0); }
}

.lp-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.2vw, 3.7rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 1.35rem;
  letter-spacing: -0.035em;
  animation: lp-fade-up 0.6s var(--ease-out) 0.1s both;
}

.lp-hero h1 span {
  background: linear-gradient(120deg, var(--mc-gold-bright) 0%, var(--mc-gold) 45%, var(--mc-teal-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--mc-gold);
}

.lp-hero-sub {
  font-size: 1.1rem;
  color: var(--mc-text-light);
  line-height: 1.7;
  margin: 0 0 1.85rem;
  max-width: 500px;
  animation: lp-fade-up 0.6s var(--ease-out) 0.2s both;
}

.lp-hero-checks {
  list-style: none;
  margin: 0 0 2.1rem;
  padding: 0;
  animation: lp-fade-up 0.6s var(--ease-out) 0.25s both;
}

.lp-hero-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--mc-text-light);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.lp-hero-checks .check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(47, 179, 122, 0.16);
  border: 1px solid rgba(47, 179, 122, 0.4);
  color: var(--mc-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  flex-shrink: 0;
}

.lp-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: lp-fade-up 0.6s var(--ease-out) 0.3s both;
}

/* ── Hero Phone Mockup ── */
.lp-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  animation: lp-fade-up 0.8s var(--ease-out) 0.35s both;
}

/* ── Hero brand watermark (shield crop, behind radar + phone) ── */
.lp-hero-brand-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.lp-hero-brand-bg img {
  width: min(480px, 95%);
  height: min(480px, 95%);
  object-fit: contain;
  object-position: center;
  opacity: 0.11;
  filter: saturate(0.85);
}

/* ── Hero GPS radar video (behind phone mockup) ── */
.lp-hero-radar-wrap {
  position: absolute;
  width: min(540px, 108%);
  height: min(540px, 108%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle, #000 38%, transparent 70%);
  mask-image: radial-gradient(circle, #000 38%, transparent 70%);
  transition: transform 0.35s var(--ease-out);
}

.lp-hero-radar {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.78;
  mix-blend-mode: screen;
  filter: saturate(1.15) brightness(1.08) contrast(1.05);
}

.lp-hero-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 206, 209, 0.16) 0%, rgba(242, 211, 150, 0.06) 42%, transparent 70%);
  filter: blur(8px);
  z-index: 0;
  animation: lp-glow-pulse 5s ease-in-out infinite;
  transition: transform 0.3s var(--ease-out);
  opacity: 0.55;
}

@keyframes lp-glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.12); opacity: 1; }
}

.lp-orbit-ring {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  z-index: 1;
  animation: lp-orbit 32s linear infinite;
  opacity: 0.45;
  pointer-events: none;
}

.lp-orbit-ring::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mc-gold);
  box-shadow: 0 0 12px rgba(242, 211, 150, 0.8);
}

@keyframes lp-orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.lp-phone-mockup {
  position: relative;
  z-index: 2;
  width: 226px;
  background: linear-gradient(160deg, #20243B, #14172A);
  border-radius: 36px;
  padding: 11px;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.55),
    0 0 0 1.5px rgba(255, 255, 255, 0.10),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  animation: lp-float 6s ease-in-out infinite;
}

@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.lp-phone-notch {
  width: 78px;
  height: 22px;
  background: #14172A;
  border-radius: 0 0 14px 14px;
  margin: -3px auto 0;
  position: relative;
  z-index: 3;
}

.lp-phone-screen {
  background: #0C0E1C;
  border-radius: 26px;
  overflow: hidden;
  min-height: 384px;
}

.lp-phone-header {
  display: flex;
  justify-content: space-between;
  padding: 10px 18px;
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.lp-phone-app-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.lp-phone-app-icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.64rem;
  font-weight: 800;
  color: #fff;
}

.lp-phone-app-icon.wa { background: #25D366; }

.lp-phone-messages {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.lp-phone-msg {
  max-width: 80%;
  padding: 9px 13px;
  border-radius: 15px;
  font-size: 0.72rem;
  line-height: 1.45;
}

.lp-phone-msg.incoming {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  align-self: flex-start;
  border-bottom-left-radius: 5px;
}

.lp-phone-msg.outgoing {
  background: linear-gradient(135deg, #0c8a5f, #075E54);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 5px;
}

/* ── Floating notification cards ── */
.lp-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 15px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
  z-index: 4;
  min-width: 188px;
  animation: lp-float-card 7s ease-in-out infinite;
}

.lp-float-card strong {
  display: block;
  font-size: 0.74rem;
  color: var(--mc-text-dark);
  font-weight: 700;
}

.lp-float-card span:last-child,
.lp-float-card div span {
  font-size: 0.66rem;
  color: var(--mc-gray-600);
}

.lp-float-icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  flex-shrink: 0;
}

.lp-float-icon.green { background: rgba(47, 179, 122, 0.16); }
.lp-float-icon.gold { background: rgba(242, 211, 150, 0.24); }

.lp-float-card-1 { top: 7%; right: -6%; animation-delay: 0s; }
.lp-float-card-2 { bottom: 30%; left: -9%; animation-delay: 1.8s; }
.lp-float-card-3 { bottom: 7%; right: 4%; animation-delay: 3.4s; }

@keyframes lp-float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes lp-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Trust bar ── */
.lp-trust {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 30px 2rem;
  background: var(--mc-navy-light);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 500;
}

.lp-trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ── Sections ── */
.lp-section {
  padding: 110px 2rem;
  max-width: var(--mc-container);
  margin: 0 auto;
}

.lp-section-light {
  background: var(--mc-off-white);
  max-width: none;
  border-top: 1px solid var(--mc-gray-100);
  border-bottom: 1px solid var(--mc-gray-100);
}

.lp-section-light > *:not(.lp-steps):not(.lp-testimonials) {
  max-width: var(--mc-container);
  margin-left: auto;
  margin-right: auto;
}

.lp-section-white {
  background: var(--mc-white);
  max-width: none;
  padding-left: max(2rem, calc((100vw - var(--mc-container)) / 2));
  padding-right: max(2rem, calc((100vw - var(--mc-container)) / 2));
}

.lp-section-navy {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 206, 209, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, var(--mc-navy) 0%, var(--mc-navy-light) 100%);
  max-width: none;
  color: var(--mc-white);
}

.lp-section-navy .lp-section-label { color: var(--mc-gold); }
.lp-section-navy .lp-section-label::before { background: var(--mc-gold); }
.lp-section-navy .lp-section-title { color: var(--mc-white); }
.lp-section-navy .lp-section-sub { color: var(--mc-text-muted); }

.lp-section-center { text-align: center; }
.lp-section-center .lp-section-sub { margin-left: auto; margin-right: auto; }
.lp-section-center .lp-section-label { justify-content: center; }

.lp-section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mc-indigo);
  margin-bottom: 1.1rem;
}

.lp-section-label::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--mc-indigo);
}

.lp-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  margin: 0 0 1.1rem;
  letter-spacing: -0.03em;
  line-height: 1.14;
  color: var(--mc-text-dark);
}

.lp-section-sub {
  font-size: 1.08rem;
  color: var(--mc-text-body);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ── Steps ── */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  max-width: var(--mc-container);
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.lp-step {
  position: relative;
  text-align: left;
  padding: 2.5rem 2rem;
  background: var(--mc-white);
  border: var(--mc-border);
  border-radius: var(--mc-radius-xl);
  box-shadow: var(--mc-shadow);
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
  overflow: hidden;
}

.lp-step::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mc-gold), var(--mc-gold-dark));
  opacity: 0;
  transition: opacity var(--transition-med);
}

.lp-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--mc-shadow-lg);
  border-color: var(--mc-gray-300);
}

.lp-step:hover::after { opacity: 1; }

.lp-step-num {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: linear-gradient(145deg, var(--mc-navy-mid), var(--mc-navy));
  color: var(--mc-gold);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.5rem;
  box-shadow: 0 8px 20px rgba(8, 12, 28, 0.22);
}

.lp-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.7rem;
  color: var(--mc-text-dark);
  letter-spacing: -0.01em;
}

.lp-step p {
  color: var(--mc-text-body);
  font-size: 0.94rem;
  line-height: 1.7;
  margin: 0;
}

/* ── Features Split / Accordion ── */
.lp-features-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  max-width: var(--mc-container);
  margin: 0 auto;
}

.lp-features-left .lp-section-sub { margin-bottom: 2rem; }

.lp-feature-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.lp-acc-item {
  border: var(--mc-border);
  border-radius: var(--mc-radius-lg);
  overflow: hidden;
  background: var(--mc-white);
  box-shadow: var(--mc-shadow-xs);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.lp-acc-item:hover { transform: translateX(2px); }

.lp-acc-item.open {
  border-color: rgba(0, 206, 209, 0.35);
  box-shadow: 0 8px 28px rgba(0, 206, 209, 0.10);
}

.lp-acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--mc-text-dark);
  cursor: pointer;
  text-align: left;
  letter-spacing: -0.01em;
  transition: color var(--transition-fast);
}

.lp-acc-item.open .lp-acc-header { color: var(--mc-indigo); }

.lp-live-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(47, 179, 122, 0.15);
  border: 1px solid rgba(47, 179, 122, 0.4);
  color: #2fb37a;
  vertical-align: middle;
}

.lp-live-link {
  color: var(--mc-indigo);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.lp-live-link:hover { text-decoration: underline; }

.lp-acc-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--mc-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--mc-gray-600);
  transition: transform var(--transition-med), background var(--transition-fast), color var(--transition-fast);
  flex-shrink: 0;
}

.lp-acc-item.open .lp-acc-arrow {
  transform: rotate(45deg);
  background: rgba(0, 206, 209, 0.14);
  color: var(--mc-indigo);
}

.lp-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
  padding: 0 1.5rem;
}

.lp-acc-item.open .lp-acc-body {
  max-height: 280px;
  padding: 0 1.5rem 1.35rem;
}

.lp-acc-body p {
  margin: 0 0 1rem;
  font-size: 0.93rem;
  color: var(--mc-text-body);
  line-height: 1.7;
}

.lp-app-icons { display: flex; gap: 9px; flex-wrap: wrap; }

.lp-app-icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  box-shadow: var(--mc-shadow-xs);
  transition: transform var(--transition-fast);
}

.lp-app-icon:hover { transform: translateY(-3px) scale(1.05); }
.lp-app-icon.wa { background: #25D366; }
.lp-app-icon.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.lp-app-icon.tg { background: #0088cc; }
.lp-app-icon.fb { background: #1877F2; }
.lp-app-icon.sc { background: #FFFC00; color: #000; }

/* ── Device Scene (Features right) ── */
.lp-features-right { position: relative; min-height: 420px; }

.lp-device-scene {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.lp-laptop-mockup {
  position: relative;
  z-index: 2;
  animation: lp-float 7s ease-in-out infinite;
}

.lp-laptop-screen {
  width: 348px;
  background: linear-gradient(160deg, var(--mc-navy-light), var(--mc-navy));
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  box-shadow: var(--mc-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
}

.lp-laptop-base {
  width: 392px;
  height: 14px;
  background: linear-gradient(180deg, #2A2F4D, #181B30);
  border-radius: 0 0 10px 10px;
  margin: 0 auto;
  position: relative;
  left: -22px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.lp-dashboard-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 15px;
  background: rgba(0, 0, 0, 0.28);
}

.lp-dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.lp-dash-dot.red { background: #ff5f57; }
.lp-dash-dot.yellow { background: #febc2e; }
.lp-dash-dot.green { background: #28c840; }

.lp-dash-title {
  margin-left: 8px;
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.lp-dashboard-content { display: flex; min-height: 200px; }

.lp-dash-sidebar {
  width: 104px;
  padding: 13px 9px;
  background: rgba(0, 0, 0, 0.18);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-dash-nav-item {
  font-size: 0.56rem;
  color: rgba(255, 255, 255, 0.45);
  padding: 7px 8px;
  border-radius: 7px;
  margin-bottom: 4px;
}

.lp-dash-nav-item.active {
  background: rgba(242, 211, 150, 0.14);
  color: var(--mc-gold);
}

.lp-dash-main {
  flex: 1;
  padding: 13px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.lp-dash-msg { display: flex; gap: 9px; align-items: flex-start; }

.lp-dash-avatar {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(47, 179, 122, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.56rem;
  font-weight: 700;
  color: var(--mc-green-light);
  flex-shrink: 0;
}

.lp-dash-msg strong { display: block; font-size: 0.62rem; color: rgba(255, 255, 255, 0.82); }
.lp-dash-msg p { margin: 2px 0 0; font-size: 0.56rem; color: rgba(255, 255, 255, 0.5); }

.lp-mini-phone {
  position: absolute;
  bottom: 18px;
  right: 8%;
  width: 72px;
  background: linear-gradient(160deg, #20243B, #14172A);
  border-radius: 16px;
  padding: 4px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
  z-index: 3;
  animation: lp-float 5s ease-in-out infinite 1s;
}

.lp-mini-phone-screen {
  background: linear-gradient(135deg, #0c8a5f, #075E54);
  border-radius: 12px;
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-mini-msg { font-size: 1.5rem; }

.lp-speech-bubble {
  position: absolute;
  top: 14%;
  left: 0;
  background: var(--mc-white);
  border-radius: 16px;
  padding: 13px 17px;
  box-shadow: var(--mc-shadow-lg);
  display: flex;
  align-items: center;
  gap: 11px;
  z-index: 4;
  animation: lp-float-card 6s ease-in-out infinite 0.5s;
  max-width: 210px;
}

.lp-speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 24px;
  width: 16px;
  height: 16px;
  background: var(--mc-white);
  transform: rotate(45deg);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.05);
}

.lp-speech-bubble span { font-size: 1.2rem; }

.lp-speech-bubble p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--mc-text-dark);
  font-weight: 500;
  line-height: 1.45;
}

.lp-restore-badge {
  position: absolute;
  bottom: 4%;
  left: 4%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 17px;
  background: linear-gradient(135deg, var(--mc-green-light), var(--mc-green));
  color: var(--mc-white);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(47, 179, 122, 0.38);
  z-index: 5;
  animation: lp-float-card 6s ease-in-out infinite 2s;
  white-space: nowrap;
}

.lp-restore-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.66rem;
}

/* Live product video inside the laptop frame */
.lp-laptop-video {
  display: block;
  width: 100%;
  height: 214px;
  object-fit: cover;
  object-position: top center;
  background: #0b1020;
  border: none;
}

/* ── Product Showcase scene (video) ── */
.lp-showcase {
  position: relative;
  max-width: 880px;
  margin: 3.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}

.lp-show-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 206, 209, 0.22) 0%, rgba(242, 211, 150, 0.08) 45%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  animation: lp-glow-pulse 6s ease-in-out infinite;
}

.lp-show-laptop {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  background: linear-gradient(160deg, #20243B, #14172A);
  border-radius: 16px;
  padding: 0 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.lp-show-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.30);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lp-show-url {
  margin-left: 14px;
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  padding: 5px 14px;
  max-width: 320px;
  margin-right: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-show-video {
  display: block;
  width: 100%;
  aspect-ratio: 624 / 480;
  object-fit: cover;
  object-position: top center;
  background: #0b1020;
}

.lp-show-phone {
  position: absolute;
  z-index: 3;
  right: -8px;
  bottom: -28px;
  width: 158px;
  background: linear-gradient(160deg, #20243B, #14172A);
  border-radius: 26px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
  animation: lp-float 6.5s ease-in-out infinite;
}

.lp-show-phone-notch {
  width: 52px;
  height: 15px;
  background: #14172A;
  border-radius: 0 0 10px 10px;
  margin: -2px auto 4px;
}

.lp-show-phone-video {
  display: block;
  width: 100%;
  aspect-ratio: 464 / 688;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px;
  background: #0b1020;
}

.lp-show-badge {
  position: absolute;
  z-index: 4;
  top: 6%;
  left: -14px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--mc-text-dark);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  animation: lp-float-card 7s ease-in-out infinite 1s;
  white-space: nowrap;
}

.lp-show-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mc-green);
  box-shadow: 0 0 0 0 rgba(47, 179, 122, 0.6);
  animation: lp-ping 2s ease-in-out infinite;
}

/* ── Pricing ── */
.lp-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2.25rem 0 3.25rem;
}

.lp-pricing-toggle span {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--mc-text-muted);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.lp-pricing-toggle span.active { color: var(--mc-white); }

.lp-toggle-switch {
  width: 52px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  position: relative;
  transition: background var(--transition-fast);
}

.lp-toggle-switch.yearly {
  background: rgba(242, 211, 150, 0.22);
  border-color: rgba(242, 211, 150, 0.4);
}

.lp-toggle-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--mc-gold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-fast);
}

.lp-toggle-switch.yearly::after { transform: translateX(24px); }

.lp-pricing-save {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(47, 179, 122, 0.18);
  border: 1px solid rgba(47, 179, 122, 0.35);
  color: var(--mc-green-light);
  font-size: 0.72rem;
  font-weight: 700;
  margin-left: 0.5rem;
}

.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  max-width: var(--mc-container);
  margin: 0 auto;
  padding: 0 2rem;
}

.lp-price-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--mc-radius-xl);
  padding: 2.25rem 1.6rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-med), border-color var(--transition-med), box-shadow var(--transition-med), background var(--transition-med);
}

.lp-price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.lp-price-card.popular {
  border-color: rgba(242, 211, 150, 0.55);
  background: linear-gradient(180deg, rgba(242, 211, 150, 0.10) 0%, rgba(255, 255, 255, 0.03) 55%);
  box-shadow: 0 0 0 1px rgba(242, 211, 150, 0.18), 0 24px 60px rgba(0, 0, 0, 0.32);
}

.lp-price-card.popular:hover { transform: translateY(-9px); }

.lp-price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  border-radius: 999px;
  background: linear-gradient(145deg, #F2D396, var(--mc-gold-dark));
  color: var(--mc-navy);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
  box-shadow: var(--mc-shadow-gold);
}

.lp-price-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--mc-white);
}

.lp-price-desc {
  font-size: 0.82rem;
  color: var(--mc-text-muted);
  margin: 0 0 1.4rem;
  line-height: 1.5;
  min-height: 2.5em;
}

.lp-price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 0.25rem;
}

.lp-price-currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mc-text-muted);
}

.lp-price-value {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--mc-white);
  line-height: 1;
}

.lp-price-value.lp-price-custom { font-size: 1.7rem; }

.lp-price-period {
  font-size: 0.85rem;
  color: var(--mc-text-muted);
  font-weight: 500;
}

.lp-price-billed {
  font-size: 0.75rem;
  color: var(--mc-text-muted);
  margin: 0.4rem 0 1.4rem;
}

.lp-price-features {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  flex: 1;
}

.lp-price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.84rem;
  color: var(--mc-text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-price-features li:last-child { border-bottom: none; }

.lp-price-features .check {
  color: var(--mc-green-light);
  font-weight: 700;
  flex-shrink: 0;
}

.lp-price-features .cross {
  color: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

.lp-price-note {
  font-size: 0.68rem;
  color: var(--mc-text-muted);
  margin: 0 0 1rem;
  text-align: center;
  line-height: 1.5;
}

.lp-price-cta { width: 100%; margin-top: auto; }

.lp-section-navy .lp-btn-outline {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--mc-white);
}

.lp-section-navy .lp-btn-outline:hover {
  background: var(--mc-white);
  border-color: var(--mc-white);
  color: var(--mc-navy);
}

/* ── Testimonials ── */
.lp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  max-width: var(--mc-container);
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.lp-testimonial {
  position: relative;
  background: var(--mc-white);
  border: var(--mc-border);
  border-radius: var(--mc-radius-xl);
  padding: 2.25rem 2rem 2rem;
  box-shadow: var(--mc-shadow);
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.lp-testimonial::before {
  content: "\201C";
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: Georgia, serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--mc-gray-200);
}

.lp-testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--mc-shadow-lg);
  border-color: var(--mc-gray-300);
}

.lp-testimonial.featured {
  border-color: rgba(242, 211, 150, 0.5);
  box-shadow: 0 12px 40px rgba(242, 211, 150, 0.16);
}

.lp-testimonial-stars {
  color: var(--mc-gold-dark);
  font-size: 0.92rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.lp-testimonial-text {
  color: var(--mc-text-body);
  font-size: 0.96rem;
  line-height: 1.7;
  margin: 0 0 1.5rem;
  font-style: normal;
}

.lp-testimonial-author { display: flex; align-items: center; gap: 12px; }

.lp-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--mc-navy-mid), var(--mc-navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--mc-gold);
  flex-shrink: 0;
}

.lp-testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--mc-text-dark);
}

.lp-testimonial-role { font-size: 0.78rem; color: var(--mc-gray-600); }

/* ── FAQ ── */
.lp-faq-list { max-width: 780px; margin: 3.5rem auto 0; }

.lp-faq-item {
  border: var(--mc-border);
  border-radius: var(--mc-radius-lg);
  margin-bottom: 0.85rem;
  overflow: hidden;
  background: var(--mc-white);
  box-shadow: var(--mc-shadow-xs);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.lp-faq-item:hover { border-color: var(--mc-gray-300); }

.lp-faq-item.open {
  border-color: rgba(0, 206, 209, 0.35);
  box-shadow: 0 8px 28px rgba(0, 206, 209, 0.10);
}

.lp-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.6rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--mc-text-dark);
  user-select: none;
  transition: color var(--transition-fast);
  text-align: left;
}

.lp-faq-q:hover { color: var(--mc-indigo); }

.lp-faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mc-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
  color: var(--mc-gray-600);
  flex-shrink: 0;
}

.lp-faq-item.open .lp-faq-arrow {
  transform: rotate(180deg);
  background: rgba(0, 206, 209, 0.14);
  color: var(--mc-indigo);
}

.lp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
  padding: 0 1.6rem;
  color: var(--mc-text-body);
  font-size: 0.94rem;
  line-height: 1.75;
}

.lp-faq-item.open .lp-faq-a {
  max-height: 400px;
  padding: 0 1.6rem 1.35rem;
}

/* ── Section brand mark (icon crop above headings) ── */
.lp-section-brand-mark {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  overflow: hidden;
  border-radius: 12px;
  opacity: 0.92;
}

.lp-section-brand-mark img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  object-position: center;
}

/* ── CTA Banner ── */
.lp-cta-banner {
  background:
    radial-gradient(ellipse 60% 90% at 50% 0%, rgba(0, 206, 209, 0.16) 0%, transparent 60%),
    linear-gradient(135deg, var(--mc-navy) 0%, var(--mc-navy-mid) 100%);
  padding: 96px 2rem;
  position: relative;
  overflow: hidden;
}

.lp-cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(242, 211, 150, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.lp-cta-brand-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.lp-cta-brand-bg img {
  width: min(360px, 70vw);
  height: min(360px, 70vw);
  object-fit: contain;
  object-position: center;
  opacity: 0.08;
  filter: saturate(0.8);
}

.lp-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.lp-cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--mc-white);
}

.lp-cta-banner p {
  color: var(--mc-text-light);
  font-size: 1.1rem;
  margin: 0 0 2.25rem;
  line-height: 1.65;
}

/* ── Footer ── */
.lp-footer {
  background: var(--mc-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3.25rem 2rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
}

.lp-footer-inner {
  max-width: var(--mc-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.lp-footer-links { display: flex; gap: 1.75rem; justify-content: center; }

.lp-footer-links a { color: rgba(255, 255, 255, 0.55); font-size: 0.84rem; }
.lp-footer-links a:hover { color: var(--mc-gold); }

.lp-footer-copy { text-align: right; font-size: 0.8rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .lp-hero-badge, .lp-hero-checks { text-align: left; }
  .lp-hero-sub { margin-left: auto; margin-right: auto; }
  .lp-hero-checks { display: inline-block; }
  .lp-hero-actions { justify-content: center; }
  .lp-hero-visual { min-height: 400px; }
  .lp-hero-radar-wrap { width: min(420px, 115%); height: min(420px, 115%); }
  .lp-features-split { grid-template-columns: 1fr; gap: 3rem; }
  .lp-features-left { text-align: center; }
  .lp-features-left .lp-section-label { justify-content: center; }
  .lp-features-right { order: -1; min-height: 360px; }
  .lp-pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1.25rem; }
}

@media (max-width: 768px) {
  .lp-nav { padding: 0 1.25rem; }
  .lp-nav-inner { height: 84px; }
  .lp-logo-shield { width: 72px; height: 72px; min-width: 72px; min-height: 72px; }
  .lp-logo-text { font-size: 1.35rem; }
  .lp-footer-logo-shield { height: 28px; }
  .lp-hero-brand-bg img { opacity: 0.09; width: min(340px, 88%); height: min(340px, 88%); }
  .lp-nav-links { display: none; }
  .lp-mobile-toggle { display: block; }

  .lp-nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(8, 12, 28, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 1.1rem;
  }

  .lp-section { padding: 70px 1.25rem; }
  .lp-section-white { padding-left: 1.25rem; padding-right: 1.25rem; }
  .lp-steps { grid-template-columns: 1fr; padding: 0 1.25rem; }
  .lp-pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .lp-testimonials { grid-template-columns: 1fr; padding: 0 1.25rem; }
  .lp-trust { gap: 1.25rem 1.75rem; padding: 26px 1.25rem; }
  .lp-float-card-1 { right: 0; top: 0; }
  .lp-float-card-2 { left: 0; }
  .lp-laptop-screen { width: 290px; }
  .lp-laptop-base { width: 322px; left: -16px; }
  .lp-restore-badge { font-size: 0.66rem; white-space: normal; max-width: 180px; }
  .lp-footer-inner { grid-template-columns: 1fr; text-align: center; gap: 1.75rem; }
  .lp-footer-copy { text-align: center; }
  .lp-footer-links { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .lp-hero h1 { font-size: 2.1rem; }
  .lp-hero-actions { flex-direction: column; align-items: stretch; }
  .lp-btn { width: 100%; }
  .lp-phone-mockup { width: 196px; }
  .lp-hero-radar-wrap { width: min(340px, 120%); height: min(340px, 120%); opacity: 0.85; }
  .lp-float-card { min-width: 154px; padding: 9px 11px; }
  .lp-speech-bubble { max-width: 168px; left: -5%; }
}

@media (max-width: 768px) {
  .lp-showcase { min-height: auto; margin-top: 2.5rem; }
  .lp-show-phone { width: 120px; right: 0; bottom: -20px; }
  .lp-show-badge { left: 0; top: -14px; font-size: 0.66rem; padding: 8px 13px; }
}

@media (max-width: 480px) {
  .lp-show-phone { width: 96px; padding: 6px; }
  .lp-show-url { max-width: 160px; }
  .lp-show-badge { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-hero-radar-wrap.is-reduced,
  .lp-hero-radar-wrap.is-reduced .lp-hero-radar {
    display: none;
  }
}

/* ── Hero load animation: aurora drift + gold sweep ── */
.lp-hero::after {
  content: "";
  position: absolute;
  inset: -25%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(38% 38% at 22% 32%, rgba(0, 206, 209, 0.26), transparent 62%),
    radial-gradient(32% 32% at 80% 22%, rgba(47, 179, 122, 0.16), transparent 62%),
    radial-gradient(40% 40% at 72% 82%, rgba(242, 211, 150, 0.16), transparent 62%);
  filter: blur(46px);
  opacity: 0;
  animation: lp-hero-in 1.4s var(--ease-out) 0.1s forwards, lp-aurora 20s ease-in-out 1.4s infinite alternate;
}

@keyframes lp-hero-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes lp-aurora {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(3%, -2%, 0) scale(1.08); }
  100% { transform: translate3d(-2%, 2%, 0) scale(1.04); }
}

/* Animated champagne shimmer across the highlighted headline word */
.lp-hero h1 span {
  background: linear-gradient(100deg, #CFA347 0%, #F2D396 22%, #FFF4D6 50%, #F2D396 78%, #CFA347 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--mc-gold);
  animation: lp-gold-sweep 7s linear infinite;
}

@keyframes lp-gold-sweep {
  0% { background-position: 220% 0; }
  100% { background-position: -220% 0; }
}

/* Slightly richer entrance for the hero visual */
.lp-hero-visual {
  animation: lp-hero-visual-in 1.1s var(--ease-out) 0.35s both;
}

@keyframes lp-hero-visual-in {
  from { opacity: 0; transform: translateY(26px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.lp-phone-app-icon.safe { background: linear-gradient(135deg, #2FB37A, #1f8f60); }

/* ── Compliance notice bar ── */
.lp-notice {
  background: linear-gradient(180deg, var(--mc-navy-light), var(--mc-navy));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 2rem;
}

.lp-notice-inner {
  max-width: var(--mc-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.lp-notice-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.lp-notice p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.66);
}

.lp-notice strong { color: rgba(255, 255, 255, 0.92); font-weight: 600; }

/* ── Business / MDM ── */
.lp-mdm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  max-width: var(--mc-container);
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
  text-align: left;
}

.lp-mdm-card {
  background: var(--mc-white);
  border: var(--mc-border);
  border-radius: var(--mc-radius-xl);
  padding: 2rem 1.85rem;
  box-shadow: var(--mc-shadow);
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.lp-mdm-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mc-shadow-lg);
  border-color: var(--mc-gray-300);
}

.lp-mdm-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(0, 206, 209, 0.12), rgba(0, 206, 209, 0.05));
  border: 1px solid rgba(0, 206, 209, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1.25rem;
}

.lp-mdm-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
  color: var(--mc-text-dark);
  letter-spacing: -0.01em;
}

.lp-mdm-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--mc-text-body);
}

.lp-mdm-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.lp-mdm-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--mc-white);
  border: 1px solid var(--mc-gray-200);
  box-shadow: var(--mc-shadow-xs);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--mc-text-dark);
}

/* ── Testimonial disclaimer ── */
.lp-testimonial-disclaimer {
  margin: 1.75rem auto 0;
  font-size: 0.78rem;
  color: var(--mc-gray-600);
  max-width: 560px;
}

/* ── Cookie consent banner ── */
.lp-cookie {
  position: fixed;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2000;
  background: rgba(8, 12, 28, 0.97);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--mc-radius-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  animation: lp-cookie-in 0.5s var(--ease-out) both;
}

.lp-cookie[hidden] { display: none; }

@keyframes lp-cookie-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.lp-cookie-inner {
  max-width: var(--mc-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 1.1rem 1.5rem;
}

.lp-cookie-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--mc-white);
  margin-bottom: 0.25rem;
}

.lp-cookie-text p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

.lp-cookie-text a { color: var(--mc-gold); }
.lp-cookie-text a:hover { color: #F2D396; }

.lp-cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.lp-cookie-btn { padding: 11px 22px; font-size: 0.88rem; white-space: nowrap; }
.lp-cookie .lp-btn-outline { border-color: rgba(255, 255, 255, 0.25); color: var(--mc-white); }
.lp-cookie .lp-btn-outline:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.5); color: var(--mc-white); }

@media (max-width: 768px) {
  .lp-notice-inner { align-items: flex-start; }
  .lp-mdm-grid { grid-template-columns: 1fr; padding: 0 1.25rem; }
  .lp-cookie-inner { flex-direction: column; align-items: stretch; gap: 1rem; }
  .lp-cookie-actions { flex-direction: column; }
  .lp-cookie-btn { width: 100%; }
}

@media (max-width: 1024px) {
  .lp-mdm-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Legal pages ── */
.lp-legal-page { background: var(--mc-off-white); min-height: 100vh; }

.lp-legal-hero {
  background: linear-gradient(180deg, #040810 0%, var(--mc-navy) 100%);
  padding: 130px 2rem 60px;
  text-align: center;
  color: var(--mc-white);
}

.lp-legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}

.lp-legal-hero p { margin: 0; color: var(--mc-text-muted); font-size: 0.95rem; }

.lp-legal {
  max-width: 820px;
  margin: -28px auto 4rem;
  background: var(--mc-white);
  border: var(--mc-border);
  border-radius: var(--mc-radius-xl);
  box-shadow: var(--mc-shadow-md);
  padding: clamp(1.75rem, 4vw, 3.5rem);
  position: relative;
  z-index: 1;
}

.lp-legal-disclaimer {
  background: var(--mc-gold-soft);
  border: 1px solid rgba(207, 163, 71, 0.3);
  border-radius: var(--mc-radius);
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--mc-text-body);
  margin-bottom: 2rem;
}

.lp-legal-disclaimer--prominent {
  background: rgba(207, 163, 71, 0.18);
  border: 2px solid rgba(207, 163, 71, 0.55);
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
}

.lp-legal-disclaimer--prominent strong {
  display: block;
  font-size: 1rem;
  color: var(--mc-text-dark);
  margin-bottom: 0.35rem;
}

.lp-legal h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--mc-text-dark);
  letter-spacing: -0.01em;
  margin: 2.25rem 0 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--mc-gray-100);
}

.lp-legal h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0.5rem; }

.lp-legal h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--mc-text-dark);
  margin: 1.5rem 0 0.6rem;
}

.lp-legal p, .lp-legal li {
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--mc-text-body);
}

.lp-legal ul { padding-left: 1.25rem; margin: 0.5rem 0 1rem; }
.lp-legal li { margin-bottom: 0.4rem; }
.lp-legal a { color: var(--mc-indigo); }
.lp-legal a:hover { text-decoration: underline; }
.lp-legal strong { color: var(--mc-text-dark); }

.lp-legal-ph {
  background: rgba(0, 206, 209, 0.08);
  border-radius: 5px;
  padding: 0 5px;
  color: var(--mc-indigo);
  font-weight: 600;
}

.lp-legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mc-indigo);
}

.lp-legal-meta { font-size: 0.82rem; color: var(--mc-gray-600); margin-top: 2.5rem; }

/* ── Live Control 2.0 showcase ── */
.lp-live-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 1080px;
  margin: 2.5rem auto 0;
  text-align: left;
}

.lp-live-card {
  position: relative;
  padding: 1.5rem 1.35rem 1.65rem;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.92));
  border: 1px solid rgba(0, 206, 209, 0.16);
  box-shadow: var(--mc-shadow-sm);
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-fast);
}

.lp-live-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 206, 209, 0.34);
  box-shadow: var(--mc-shadow-md);
}

.lp-live-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: rgba(0, 206, 209, 0.12);
  margin-bottom: 1rem;
}

.lp-live-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--mc-text-dark);
  letter-spacing: -0.02em;
}

.lp-live-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--mc-text-body);
}

.lp-live-plan-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(47, 179, 122, 0.12);
  border: 1px solid rgba(47, 179, 122, 0.28);
  color: #1f8f5f;
}

.lp-live-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2.25rem;
}

@media (max-width: 960px) {
  .lp-live-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .lp-live-grid { grid-template-columns: 1fr; }
}

/* ── Reduced motion: keep it serious & comfortable ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html.js-ready .lp-animate { transform: none; }
}
