/**
 * Afripay Sales Funnel Engine — funnels.afripayglobal.com marketing landing
 */

@import url('landing-testimonials.css');

:root {
  --al-navy: #0a1931;
  --al-navy-2: #001a3d;
  --al-navy-hero: #0c1f3d;
  --al-blue: #0048ff;
  --al-blue-light: #3b82f6;
  --al-yellow: #ffcc00;
  --al-yellow-hover: #ffd633;
  --al-green: #22c55e;
  --al-white: #ffffff;
  --al-gray-50: #f7f9fc;
  --al-gray-100: #eef2f7;
  --al-gray-500: #64748b;
  --al-gray-700: #334155;
  --al-gray-900: #0f172a;
  --al-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --al-radius: 16px;
  --al-wrap: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.al-lp-page {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--al-gray-900);
  background: var(--al-white);
  line-height: 1.6;
  overflow-x: clip;
}

body.al-lp-menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.al-lp-wrap {
  width: 100%;
  max-width: var(--al-wrap);
  margin: 0 auto;
  padding-left: max(16px, env(safe-area-inset-left, 0px));
  padding-right: max(16px, env(safe-area-inset-right, 0px));
}

/* Header */
.al-lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--al-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.2s ease;
  padding-top: env(safe-area-inset-top, 0px);
}

.al-lp-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.al-lp-header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 12px;
  min-height: 64px;
  padding: 10px 0;
}

.al-lp-urgency {
  background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
  color: #0f172a;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

.al-lp-urgency-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  min-height: 40px;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.al-lp-urgency-countdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.12);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.al-lp-sticky-wa {
  position: fixed;
  left: 50%;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease, box-shadow 0.2s ease;
}

.al-lp-sticky-wa.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.al-lp-sticky-wa:hover {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
  color: #fff;
}

.al-lp-sticky-wa-icon {
  display: inline-flex;
  flex-shrink: 0;
}

body.al-lp-has-sticky-wa {
  padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 769px) {
  .al-lp-sticky-wa {
    display: none !important;
  }

  body.al-lp-has-sticky-wa {
    padding-bottom: 0;
  }
}

.al-lp-brand {
  flex: 1 1 auto;
  min-width: 0;
}

.al-lp-brand img {
  display: block;
  height: clamp(42px, 11vw, 56px);
  width: auto;
  max-width: min(300px, 78vw);
  object-fit: contain;
  border-radius: 3px;
  background: var(--al-white);
}

.al-lp-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  color: var(--al-white);
}

.al-lp-menu-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.al-lp-header.is-menu-open .al-lp-menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.al-lp-header.is-menu-open .al-lp-menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.al-lp-header.is-menu-open .al-lp-menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.al-lp-header-cta {
  flex-shrink: 0;
  min-height: 44px;
  white-space: nowrap;
}

.al-lp-header-cta__short {
  display: none;
}

.al-lp-nav {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
  flex-basis: 100%;
  order: 10;
  margin: 0;
  padding: 8px 0 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.al-lp-header.is-menu-open .al-lp-nav {
  display: flex;
}

.al-lp-nav a {
  display: block;
  padding: 14px 4px;
  min-height: 48px;
  line-height: 1.3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.al-lp-nav a:last-child {
  border-bottom: none;
}

.al-lp-nav a:hover {
  color: var(--al-yellow);
}

/* Buttons */
.al-lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
  text-align: center;
  font-family: inherit;
}

.al-lp-btn:hover {
  transform: translateY(-1px);
}

.al-lp-btn-sm {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 10px;
}

.al-lp-btn-lg {
  padding: 16px 28px;
  font-size: 17px;
  width: 100%;
}

.al-lp-btn-yellow {
  background: var(--al-yellow);
  color: #000;
  border-color: var(--al-yellow);
}

.al-lp-btn-yellow:hover {
  background: var(--al-yellow-hover);
}

.al-lp-btn-outline {
  background: transparent;
  color: var(--al-white);
  border-color: rgba(255, 255, 255, 0.45);
}

.al-lp-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--al-white);
}

.al-lp-icon {
  flex-shrink: 0;
}

/* Hero — mockup-aligned two-column layout */
.al-lp-hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(0, 72, 255, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255, 204, 0, 0.06) 0%, transparent 50%),
    linear-gradient(160deg, var(--al-navy) 0%, var(--al-navy-2) 42%, var(--al-navy-hero) 100%);
  color: var(--al-white);
  padding: clamp(36px, 5vw, 56px) 0 clamp(28px, 4vw, 40px);
  overflow: hidden;
}

.al-lp-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}

.al-lp-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.al-lp-hero-copy {
  text-align: left;
}

.al-lp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(0, 72, 255, 0.35);
  border: 1px solid rgba(96, 165, 250, 0.45);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.al-lp-hero-title {
  margin: 0 0 18px;
  font-size: clamp(1.85rem, 4.8vw, 3rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.al-lp-hero-title-line {
  display: block;
}

.al-lp-accent {
  color: var(--al-yellow);
}

.al-lp-accent--brush {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.al-lp-accent--brush::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 0.05em;
  height: 0.28em;
  background: var(--al-yellow);
  border-radius: 3px;
  opacity: 0.85;
  z-index: -1;
  transform: skewX(-6deg);
}

.al-lp-lead {
  margin: 0 0 22px;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 34em;
}

.al-lp-checks {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 28px;
  font-size: clamp(0.8125rem, 1.35vw, 0.9rem);
  color: rgba(255, 255, 255, 0.95);
}

.al-lp-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.al-lp-checks li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--al-green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M4.5 8.2 2.3 6l-.8.8 3 3 6.5-6.5-.8-.8z'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.al-lp-hero-ctas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.al-lp-btn-hero {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 2px solid transparent;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.al-lp-btn-hero:hover {
  transform: translateY(-1px);
}

.al-lp-btn-hero--primary {
  background: var(--al-yellow);
  border-color: var(--al-yellow);
  color: #0a0a0a;
  box-shadow: 0 8px 24px rgba(255, 204, 0, 0.28);
}

.al-lp-btn-hero--primary:hover {
  background: var(--al-yellow-hover);
}

.al-lp-btn-hero--demo {
  background: transparent;
  border-color: var(--al-yellow);
  color: var(--al-white);
}

.al-lp-btn-hero--demo:hover {
  background: rgba(255, 204, 0, 0.08);
}

.al-lp-btn-hero-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.al-lp-btn-hero-icon--wa {
  background: #25d366;
  color: #fff;
}

.al-lp-btn-hero-icon--play {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: var(--al-white);
}

.al-lp-btn-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.al-lp-btn-hero-main {
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  font-weight: 800;
  line-height: 1.25;
}

.al-lp-btn-hero-sub {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.65);
}

.al-lp-btn-hero-sub--light {
  color: rgba(255, 255, 255, 0.72);
}

.al-lp-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.al-lp-social-proof p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.al-lp-social-highlight {
  color: var(--al-yellow);
  font-weight: 800;
}

.al-lp-avatars {
  display: flex;
  flex-shrink: 0;
}

.al-lp-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--al-navy);
  margin-left: -12px;
  object-fit: cover;
  background: #334155;
}

.al-lp-avatars img:first-child {
  margin-left: 0;
}

.al-lp-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(280px, 44vw, 400px);
  overflow: hidden;
}

.al-lp-hero-scene {
  position: relative;
  width: 100%;
  max-width: 480px;
  min-height: 380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.al-lp-hero-scene:has(.al-lp-hero-dash) {
  max-width: 100%;
  min-height: clamp(260px, 44vw, 400px);
}

.al-lp-hero-scene__bg {
  position: absolute;
  inset: 6% -4% 10% 8%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse 68% 56% at 42% 44%, rgba(59, 130, 246, 0.5) 0%, transparent 68%),
    radial-gradient(ellipse 42% 38% at 78% 52%, rgba(255, 204, 0, 0.12) 0%, transparent 72%);
  filter: blur(2px);
  pointer-events: none;
}

.al-lp-hero-composite {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: min(100%, 480px);
  height: auto;
  max-height: min(560px, 78vh);
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.35));
}

/* Live desktop + mobile dashboard pair (same embed as launch.afripayglobal.com hero) */
.al-lp-hero-dash {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 auto;
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.al-lp-hero-dash .al-launch-dash-hero-scaler {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: clamp(260px, 44vw, 400px);
  overflow: hidden;
}

.al-lp-hero-dash .al-dash-hero-stage--lp-pair {
  --al-hero-mobile-w: clamp(108px, 26vw, 168px);
  --al-hero-mobile-overlap: clamp(36px, 8.5vw, 58px);
  min-height: clamp(260px, 44vw, 400px);
  height: clamp(260px, 44vw, 400px);
  overflow: hidden;
}

.al-lp-hero-dash .al-dash-frame--desktop .al-dash-frame-viewport {
  height: clamp(220px, 34vw, 340px);
  min-height: clamp(220px, 34vw, 340px);
}

.al-lp-hero-dash .al-dash-frame--mobile .al-dash-frame-viewport {
  height: clamp(200px, 32vw, 320px);
  min-height: clamp(200px, 32vw, 320px);
}

/* Hero trust bar (white strip inside hero) */
.al-lp-hero-trust-wrap {
  position: relative;
  z-index: 2;
  margin-top: clamp(24px, 4vw, 40px);
}

.al-lp-hero-trust {
  list-style: none;
  margin: 0;
  padding: clamp(16px, 2.5vw, 22px) clamp(14px, 2vw, 28px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 12px;
  background: var(--al-white);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.al-lp-hero-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.al-lp-hero-trust-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 72, 255, 0.08);
  color: var(--al-blue);
}

.al-lp-hero-trust-label {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--al-gray-700);
}

.al-lp-hero-trust-label strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--al-gray-900);
}

/* Sections */
.al-lp-section {
  padding: clamp(56px, 8vw, 88px) 0;
}

.al-lp-eyebrow {
  text-align: center;
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--al-blue);
  text-transform: uppercase;
}

.al-lp-h2 {
  text-align: center;
  margin: 0 0 48px;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--al-gray-900);
}

.al-lp-testimonials-sec.al-lp-section {
  padding-top: clamp(56px, 8vw, 88px);
  padding-bottom: clamp(56px, 8vw, 88px);
}

.al-lp-text-blue {
  color: var(--al-blue);
}

/* Features */
.al-lp-features-sec {
  background: var(--al-gray-50);
}

.al-lp-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.al-lp-feature-card {
  background: var(--al-white);
  padding: 28px 24px;
  border-radius: var(--al-radius);
  border: 1px solid var(--al-gray-100);
  box-shadow: var(--al-shadow);
}

.al-lp-feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: var(--al-gray-900);
}

.al-lp-feature-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--al-gray-500);
}

.al-lp-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  margin-bottom: 16px;
  position: relative;
}

.al-lp-feature-icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  background: var(--al-blue);
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

.al-lp-feature-icon--phone::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 2h10a2 2 0 012 2v16a2 2 0 01-2 2H7a2 2 0 01-2-2V4a2 2 0 012-2zm0 2v16h10V4H7z'/%3E%3C/svg%3E");
}

.al-lp-feature-icon--globe::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2a10 10 0 100 20 10 10 0 000-20zm7.93 9h-3.4a15.9 15.9 0 00-1.1-4.02A8.03 8.03 0 0119.93 11zM12 4.07c.95 1.1 1.74 2.57 2.2 4.43H9.8c.46-1.86 1.25-3.33 2.2-4.43zM4.07 13h3.4c.22 1.45.62 2.8 1.1 4.02A8.03 8.03 0 014.07 13zm3.4-2H4.07a8.03 8.03 0 014.5-4.02c-.48 1.22-.88 2.57-1.1 4.02zM12 19.93c-.95-1.1-1.74-2.57-2.2-4.43h4.4c-.46 1.86-1.25 3.33-2.2 4.43zm4.53-2.91c.48-1.22.88-2.57 1.1-4.02h3.4a8.03 8.03 0 01-4.5 4.02z'/%3E%3C/svg%3E");
}

.al-lp-feature-icon--card::after,
.al-lp-feature-icon--bank::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M4 4h16v4H4V4zm0 6h16v10H4V10zm2 2v6h12v-6H6z'/%3E%3C/svg%3E");
}

.al-lp-feature-icon--user::after,
.al-lp-feature-icon--users::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 12a4 4 0 100-8 4 4 0 000 8zm-8 8v-1.2a6 6 0 016-6h4a6 6 0 016 6V20H4z'/%3E%3C/svg%3E");
}

.al-lp-feature-icon--box::after,
.al-lp-feature-icon--template::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M4 6h16v12H4V6zm2 2v8h12V8H6z'/%3E%3C/svg%3E");
}

.al-lp-feature-icon--ai::after,
.al-lp-feature-icon--leads::after,
.al-lp-feature-icon--chart::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M3 13h4v8H3v-8zm7-6h4v14h-4V7zm7 3h4v11h-4V10z'/%3E%3C/svg%3E");
}

.al-lp-feature-icon--clock::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2a10 10 0 100 20 10 10 0 000-20zm1 11H7v-2h5V5h2v8z'/%3E%3C/svg%3E");
}

/* Simple process — 3 steps */
.al-lp-steps-sec {
  background: var(--al-white);
}

.al-lp-h2--underline .al-lp-text-blue {
  text-decoration: underline;
  text-decoration-color: var(--al-blue);
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}

.al-lp-steps-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.al-lp-step-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  padding: 16px 20px 26px;
  padding-top: 46px;
  background: var(--al-white);
  border: 1px solid #e8edf5;
  border-radius: 20px;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.07);
  text-align: center;
  overflow: visible;
}

.al-lp-step-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--al-blue);
  color: var(--al-white);
  font-size: 14px;
  font-weight: 800;
  line-height: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 72, 255, 0.35);
}

.al-lp-step-illus {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(160px, 24vw, 220px);
  margin: 0 0 16px;
  padding: 16px 12px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 14px;
  border: 1px solid #eef2f7;
}

.al-lp-step-illus img {
  width: 100%;
  max-width: 268px;
  height: auto;
  max-height: min(220px, 32vw);
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 10px 24px rgba(15, 23, 42, 0.1));
}

/* Step 1 — WhatsApp bootcamp mockup */
.al-lp-step-illus--bootcamp {
  --al-lp-bootcamp-scale: 0.42;
  padding: 10px 6px 6px;
  background: #fff;
  border-color: #edf2f7;
  overflow: hidden;
}

.al-lp-bootcamp-scale-wrap {
  width: 100%;
  max-width: 268px;
  height: calc(700px * var(--al-lp-bootcamp-scale));
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.al-lp-bootcamp-card {
  position: relative;
  flex-shrink: 0;
  width: 620px;
  height: 700px;
  background: #fff;
  border-radius: 40px;
  overflow: hidden;
  transform: scale(var(--al-lp-bootcamp-scale));
  transform-origin: top center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid #edf2f7;
}

.al-lp-bootcamp-bg-circle {
  position: absolute;
  width: 420px;
  height: 420px;
  background: #eef4ff;
  border-radius: 50%;
  left: -100px;
  top: 140px;
}

.al-lp-bootcamp-whatsapp-icon {
  position: absolute;
  width: 120px;
  height: auto;
  right: 80px;
  top: 170px;
  z-index: 5;
}

.al-lp-bootcamp-phone-frame {
  position: absolute;
  width: 310px;
  height: 620px;
  background: #fff;
  border-radius: 45px;
  left: 90px;
  top: 60px;
  overflow: hidden;
  border: 10px solid #111;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.18);
  z-index: 4;
}

.al-lp-bootcamp-phone-header {
  background: #032d8f;
  padding: 30px 20px;
  color: #fff;
}

.al-lp-bootcamp-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.al-lp-bootcamp-logo-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1e5eff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 24px;
  flex-shrink: 0;
}

.al-lp-bootcamp-phone-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.al-lp-bootcamp-phone-meta {
  margin: 5px 0 0;
  opacity: 0.8;
  font-size: 14px;
}

.al-lp-bootcamp-chat-area {
  padding: 25px 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.al-lp-bootcamp-message {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.al-lp-bootcamp-message img {
  width: 45px;
  height: 45px;
  max-width: none;
  max-height: none;
  border-radius: 50%;
  object-fit: cover;
  filter: none;
  flex-shrink: 0;
}

.al-lp-bootcamp-message-box {
  background: #f4f6fb;
  padding: 16px;
  border-radius: 18px;
  font-size: 16px;
  line-height: 1.5;
  color: #111827;
  flex: 1;
  text-align: left;
}

.al-lp-bootcamp-lady-image {
  position: absolute;
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  right: 40px;
  bottom: 90px;
  z-index: 3;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  filter: none;
}

/* Step 2 — Funnel builder laptop + phone mockup */
.al-lp-step-illus--fbuilder {
  --al-lp-fbuilder-scale: 0.29;
  padding: 10px 6px 6px;
  background: #fff;
  border-color: #edf2f7;
  overflow: hidden;
}

.al-lp-fbuilder-scale-wrap {
  width: 100%;
  max-width: 268px;
  height: calc(720px * var(--al-lp-fbuilder-scale));
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.al-lp-fbuilder-card {
  position: relative;
  flex-shrink: 0;
  width: 950px;
  height: 720px;
  margin: 0;
  background: #fff;
  border-radius: 40px;
  border: 2px solid #edf2f7;
  overflow: hidden;
  transform: scale(var(--al-lp-fbuilder-scale));
  transform-origin: top center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.al-lp-fbuilder-laptop {
  position: absolute;
  width: 760px;
  height: 470px;
  background: #fff;
  border-radius: 28px 28px 12px 12px;
  border: 14px solid #111;
  left: 40px;
  top: 130px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.al-lp-fbuilder-topbar {
  flex-shrink: 0;
  height: 70px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  border-bottom: 1px solid #edf2f7;
}

.al-lp-fbuilder-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
  color: #111827;
}

.al-lp-fbuilder-brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1d4fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  flex-shrink: 0;
}

.al-lp-fbuilder-publish-btn {
  background: #1d4fff;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  font-family: inherit;
  cursor: default;
}

.al-lp-fbuilder-dashboard-body {
  flex: 1;
  min-height: 0;
  display: flex;
}

.al-lp-fbuilder-sidebar {
  width: 180px;
  flex-shrink: 0;
  background: #021c63;
  padding: 30px 18px;
}

.al-lp-fbuilder-menu {
  padding: 14px 16px;
  border-radius: 12px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 14px;
}

.al-lp-fbuilder-menu--active {
  background: #1d4fff;
}

.al-lp-fbuilder-content {
  flex: 1;
  min-width: 0;
  padding: 30px;
  text-align: left;
}

.al-lp-fbuilder-content-title {
  font-size: 42px;
  margin: 0 0 25px;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
}

.al-lp-fbuilder-content-grid {
  display: flex;
  gap: 25px;
  min-height: 0;
}

.al-lp-fbuilder-steps-box {
  width: 280px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #edf2f7;
  border-radius: 20px;
  padding: 25px;
}

.al-lp-fbuilder-steps-heading {
  margin: 0 0 25px;
  font-size: 18px;
  font-weight: 800;
  color: #111827;
}

.al-lp-fbuilder-step {
  padding: 14px;
  background: #f7f9fc;
  border-radius: 10px;
  margin-bottom: 15px;
  font-size: 15px;
  color: #111827;
}

.al-lp-fbuilder-add-btn {
  width: 100%;
  padding: 14px;
  border: none;
  background: #edf4ff;
  color: #1d4fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  font-family: inherit;
  cursor: default;
}

.al-lp-fbuilder-preview-box {
  flex: 1;
  min-width: 0;
}

.al-lp-fbuilder-preview-card {
  background: #02143e;
  color: #fff;
  border-radius: 22px;
  padding: 40px 30px;
  height: 100%;
  min-height: 280px;
  box-sizing: border-box;
}

.al-lp-fbuilder-preview-card h3 {
  margin: 0 0 20px;
  font-size: 34px;
  line-height: 1.3;
  font-weight: 800;
}

.al-lp-fbuilder-preview-card p {
  margin: 0 0 25px;
  line-height: 1.7;
  font-size: 16px;
  opacity: 0.92;
}

.al-lp-fbuilder-preview-card button {
  background: #1d4fff;
  color: #fff;
  border: none;
  padding: 16px 25px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  font-family: inherit;
  cursor: default;
}

.al-lp-fbuilder-preview-phone {
  position: absolute;
  width: 210px;
  height: 430px;
  background: #fff;
  border-radius: 40px;
  border: 10px solid #111;
  right: 60px;
  bottom: 90px;
  overflow: hidden;
  z-index: 20;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.al-lp-fbuilder-phone-notch {
  position: absolute;
  width: 110px;
  height: 22px;
  background: #111;
  border-radius: 0 0 20px 20px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.al-lp-fbuilder-phone-screen {
  height: 100%;
  background: #02143e;
  padding: 90px 20px 20px;
  box-sizing: border-box;
}

.al-lp-fbuilder-mini-preview h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 800;
}

.al-lp-fbuilder-mini-preview p {
  margin: 0 0 22px;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.92;
}

.al-lp-fbuilder-mini-preview button {
  width: 100%;
  background: #1d4fff;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  font-family: inherit;
  cursor: default;
}

/* Step 3 — Payment received + growth chart mockup */
.al-lp-step-illus--payment {
  --al-lp-payment-scale: 0.3;
  padding: 10px 6px 6px;
  background: #fff;
  border-color: #edf2f7;
  overflow: hidden;
}

.al-lp-payment-scale-wrap {
  width: 100%;
  max-width: 268px;
  height: calc(900px * var(--al-lp-payment-scale));
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.al-lp-payment-card {
  position: relative;
  flex-shrink: 0;
  width: 700px;
  height: 900px;
  margin: 0;
  background: #fff;
  border-radius: 40px;
  border: 2px solid #edf2f7;
  overflow: hidden;
  transform: scale(var(--al-lp-payment-scale));
  transform-origin: top center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.al-lp-payment-growth-chart {
  position: absolute;
  display: flex;
  align-items: flex-end;
  gap: 25px;
  right: 110px;
  bottom: 170px;
  z-index: 2;
}

.al-lp-payment-bar {
  width: 65px;
  border-radius: 12px 12px 0 0;
  background: #15c96b;
}

.al-lp-payment-bar--small {
  height: 120px;
}

.al-lp-payment-bar--medium {
  height: 210px;
}

.al-lp-payment-bar--medium2 {
  height: 320px;
}

.al-lp-payment-bar--large {
  height: 420px;
}

.al-lp-payment-arrow-line {
  position: absolute;
  width: 450px;
  height: 220px;
  border-top: 14px solid #1d74ff;
  border-right: 14px solid #1d74ff;
  border-radius: 0 100% 0 0;
  right: 60px;
  top: 150px;
  transform: rotate(10deg);
  z-index: 1;
  pointer-events: none;
}

.al-lp-payment-phone {
  position: absolute;
  width: 250px;
  height: 500px;
  background: #fff;
  border-radius: 45px;
  border: 10px solid #111;
  left: 70px;
  bottom: 120px;
  overflow: hidden;
  z-index: 10;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.al-lp-payment-notch {
  position: absolute;
  width: 120px;
  height: 24px;
  background: #111;
  border-radius: 0 0 20px 20px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.al-lp-payment-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  box-sizing: border-box;
  color: #111827;
}

.al-lp-payment-success-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #15c96b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 25px;
  flex-shrink: 0;
}

.al-lp-payment-title {
  margin: 0 0 30px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
}

.al-lp-payment-amount {
  font-size: 58px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1;
}

.al-lp-payment-from {
  margin: 0 0 12px;
  font-size: 24px;
}

.al-lp-payment-via {
  font-size: 22px;
  color: #555;
}

.al-lp-payment-coins {
  position: absolute;
  right: 50px;
  bottom: 70px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  z-index: 5;
}

.al-lp-payment-coin-stack {
  width: 110px;
  height: 140px;
  border-radius: 50%;
  background: repeating-linear-gradient(
    to bottom,
    #f8c12c,
    #f8c12c 12px,
    #d89100 12px,
    #d89100 22px
  );
  position: relative;
}

.al-lp-payment-coin-stack::before {
  content: '';
  position: absolute;
  width: 110px;
  height: 32px;
  background: #ffd34d;
  border-radius: 50%;
  top: -10px;
  left: 0;
}

.al-lp-payment-coin-stack--second {
  height: 170px;
}

.al-lp-payment-single-coin {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #f8c12c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 900;
  color: #fff;
  margin-right: -20px;
  flex-shrink: 0;
}

.al-lp-step-title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--al-gray-900);
  letter-spacing: -0.02em;
}

.al-lp-step-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--al-gray-500);
  max-width: 28em;
  margin-left: auto;
  margin-right: auto;
}

.al-lp-step-connector {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93c5fd;
  transform: rotate(90deg);
}

.al-lp-step-connector svg {
  display: block;
}

/* FAQ */
.al-lp-faq-sec {
  background: var(--al-white);
}

.al-lp-faq-wrap {
  max-width: 800px;
}

.al-lp-faq-list {
  text-align: left;
}

.al-lp-faq-item {
  border-bottom: 1px solid var(--al-gray-100);
}

.al-lp-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--al-gray-900);
  text-align: left;
  cursor: pointer;
}

.al-lp-faq-trigger::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--al-blue);
  flex-shrink: 0;
}

.al-lp-faq-item.is-open .al-lp-faq-trigger::after {
  content: "−";
}

.al-lp-faq-panel {
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--al-gray-500);
}

/* Final CTA — mockup banner with gift box */
.al-lp-final-cta {
  padding: clamp(40px, 6vw, 64px) 0;
  background: var(--al-gray-50);
}

.al-lp-final-panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  padding: clamp(24px, 4vw, 32px) clamp(20px, 3vw, 36px);
  background: linear-gradient(135deg, var(--al-navy) 0%, var(--al-navy-2) 55%, #0d2847 100%);
  border-radius: 20px;
  color: var(--al-white);
  box-shadow: 0 16px 48px rgba(0, 27, 112, 0.22);
  overflow: visible;
}

.al-lp-final-gift-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -8px auto 0;
  width: clamp(160px, 34vw, 220px);
  height: clamp(160px, 34vw, 220px);
  overflow: visible;
}

/* CSS gift box (Don't Miss Out) */
.al-lp-gift-scaler {
  width: 220px;
  height: 220px;
  transform: scale(0.82);
  transform-origin: center center;
}

.al-lp-gift-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.al-lp-gift-box {
  position: relative;
  width: 150px;
  height: 120px;
  background: linear-gradient(145deg, #9fd2ff, #5fa9ff);
  border-radius: 12px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.25),
    inset 0 -8px 12px rgba(0, 0, 0, 0.08);
}

.al-lp-gift-top {
  position: absolute;
  width: 170px;
  height: 45px;
  background: linear-gradient(145deg, #b9ddff, #76b9ff);
  border-radius: 14px;
  top: -28px;
  left: -10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.al-lp-gift-ribbon-vertical {
  position: absolute;
  width: 28px;
  height: 165px;
  background: linear-gradient(to bottom, #6b38ff, #5020d5);
  left: 50%;
  top: -28px;
  transform: translateX(-50%);
  border-radius: 10px;
  z-index: 2;
}

.al-lp-gift-ribbon-horizontal {
  position: absolute;
  width: 170px;
  height: 28px;
  background: linear-gradient(to right, #6b38ff, #5020d5);
  top: 22px;
  left: -10px;
  border-radius: 10px;
  z-index: 2;
}

.al-lp-gift-bow {
  position: absolute;
  width: 55px;
  height: 55px;
  background: linear-gradient(145deg, #8c63ff, #5f30e8);
  top: -62px;
  border-radius: 50% 50% 0 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  z-index: 4;
}

.al-lp-gift-bow--left {
  left: 40px;
  transform: rotate(-35deg);
}

.al-lp-gift-bow--right {
  right: 40px;
  transform: rotate(125deg);
}

.al-lp-gift-knot {
  position: absolute;
  width: 28px;
  height: 28px;
  background: #6b38ff;
  border-radius: 50%;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.al-lp-gift-shadow {
  position: absolute;
  width: 160px;
  height: 25px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(10px);
  z-index: -1;
}

.al-lp-final-copy {
  flex: 1;
  min-width: 0;
}

.al-lp-final-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-align: center;
}

.al-lp-final-copy p {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  line-height: 1.55;
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
}

.al-lp-final-action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.al-lp-final-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 340px;
  padding: 14px 22px;
  border-radius: 12px;
  border: 2px solid var(--al-yellow);
  background: var(--al-yellow);
  color: #0a0a0a;
  font-family: inherit;
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255, 204, 0, 0.28);
  transition: transform 0.15s ease, background 0.2s ease;
}

.al-lp-final-btn:hover {
  transform: translateY(-1px);
  background: var(--al-yellow-hover);
}

.al-lp-final-btn-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
}

.al-lp-final-btn-label {
  line-height: 1.2;
}

.al-lp-final-note {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

/* Footer */
.al-lp-footer {
  background: var(--al-navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 0 24px;
}

.al-lp-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.al-lp-footer-brand img {
  display: block;
  height: clamp(42px, 11vw, 56px);
  width: auto;
  max-width: min(300px, 78vw);
  margin-bottom: 12px;
  object-fit: contain;
  border-radius: 3px;
  background: var(--al-white);
}

.al-lp-footer-brand p {
  margin: 0;
  font-size: 14px;
  max-width: 260px;
  color: rgba(255, 255, 255, 0.7);
}

.al-lp-footer h4 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
  color: var(--al-white);
}

.al-lp-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.al-lp-footer li {
  margin-bottom: 8px;
}

.al-lp-footer a:hover {
  color: var(--al-yellow);
}

.al-lp-footer-modal-links .al-lp-footer-link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: inherit;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  text-align: left;
  text-decoration: none;
}

.al-lp-footer-modal-links .al-lp-footer-link-btn:hover {
  color: var(--al-yellow);
}

.al-lp-social {
  display: flex;
  gap: 10px;
}

.al-lp-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}

.al-lp-footer-copy {
  text-align: center;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* Demo modal */
.al-lp-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

body.al-lp-modal-open {
  overflow: hidden;
}

.al-lp-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: var(--al-white);
  border-radius: var(--al-radius);
  padding: 24px;
}

.al-lp-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--al-gray-100);
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}

.al-lp-modal-title {
  margin: 0 0 16px;
  font-size: 1.25rem;
}

.al-lp-modal-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.al-lp-modal-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.al-lp-modal-foot {
  margin: 12px 0 0;
  text-align: center;
  font-size: 14px;
}

.al-lp-modal-foot a {
  color: var(--al-blue);
  font-weight: 700;
}

/* Contact modal */
.al-lp-contact-dialog {
  max-width: 520px;
  max-height: min(90vh, 720px);
  overflow-y: auto;
}

.al-lp-contact-lead {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--al-gray-500);
}

.al-lp-contact-form label {
  display: block;
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--al-gray-900);
}

.al-lp-contact-form input,
.al-lp-contact-form textarea {
  width: 100%;
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid var(--al-gray-100);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--al-gray-900);
  background: var(--al-white);
  box-sizing: border-box;
}

.al-lp-contact-form input:focus,
.al-lp-contact-form textarea:focus {
  outline: none;
  border-color: var(--al-blue);
  box-shadow: 0 0 0 3px rgba(0, 72, 255, 0.12);
}

.al-lp-contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.al-lp-optional {
  font-weight: 500;
  color: var(--al-gray-500);
}

.al-lp-contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.al-lp-contact-error {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 14px;
  font-weight: 600;
}

.al-lp-contact-submit {
  width: 100%;
  margin-top: 4px;
}

.al-lp-contact-thanks {
  text-align: center;
  padding: 12px 8px 8px;
}

.al-lp-contact-thanks__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #dcfce7;
  color: #15803d;
  font-size: 28px;
  font-weight: 800;
  line-height: 56px;
}

.al-lp-contact-thanks p {
  margin: 0 0 20px;
  color: var(--al-gray-500);
  font-size: 15px;
  line-height: 1.55;
}

body.funnel-legal-open {
  overflow: hidden;
}

/* Responsive */
@media (min-width: 600px) {
  .al-lp-checks {
    grid-template-columns: 1fr 1fr;
  }

  .al-lp-hero-trust {
    grid-template-columns: repeat(3, 1fr);
  }

  .al-lp-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (min-width: 769px) {
  .al-lp-header-inner {
    flex-wrap: nowrap;
    gap: 16px;
    min-height: 72px;
    padding: 0;
  }

  .al-lp-brand {
    order: 1;
    flex: 0 0 auto;
  }

  .al-lp-brand img {
    height: 58px;
    max-width: 320px;
  }

  .al-lp-footer-brand img {
    height: 58px;
    max-width: 320px;
  }

  .al-lp-menu-toggle {
    display: none;
    order: 0;
  }

  .al-lp-header-cta {
    order: 3;
    margin-left: 0;
  }

  .al-lp-header-cta__full {
    display: inline;
  }

  .al-lp-header-cta__short {
    display: none !important;
  }

  .al-lp-nav {
    display: flex;
    flex-direction: row;
    flex: 1 1 auto;
    flex-basis: auto;
    order: 2;
    width: auto;
    margin: 0 auto;
    padding: 0;
    border-top: none;
    gap: 28px;
    justify-content: center;
  }

  .al-lp-nav a {
    display: inline;
    padding: 0;
    min-height: 0;
    border-bottom: none;
  }

  .al-lp-hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: clamp(32px, 4vw, 56px);
    align-items: center;
  }

  .al-lp-hero-ctas {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 12px;
  }

  .al-lp-hero-composite {
    max-width: 440px;
    margin-right: 0;
  }

  .al-lp-hero-dash .al-launch-dash-hero-scaler {
    min-height: clamp(300px, 38vw, 440px);
  }

  .al-lp-hero-dash .al-dash-hero-stage--lp-pair {
    --al-hero-mobile-w: clamp(128px, 14vw, 188px);
    --al-hero-mobile-overlap: clamp(44px, 5vw, 68px);
    min-height: clamp(300px, 38vw, 440px);
    height: clamp(300px, 38vw, 440px);
  }

  .al-lp-hero-dash .al-dash-frame--desktop .al-dash-frame-viewport {
    height: clamp(260px, 32vw, 380px);
    min-height: clamp(260px, 32vw, 380px);
  }

  .al-lp-hero-dash .al-dash-frame--mobile .al-dash-frame-viewport {
    height: clamp(240px, 30vw, 360px);
    min-height: clamp(240px, 30vw, 360px);
  }

  .al-lp-hero-visual {
    justify-content: flex-end;
  }

  .al-lp-btn-lg {
    width: auto;
    min-width: 240px;
  }

  .al-lp-hero-trust {
    grid-template-columns: repeat(6, 1fr);
    gap: 12px 8px;
  }

  .al-lp-hero-trust-label {
    font-size: 11px;
  }

  .al-lp-hero-trust-label strong {
    font-size: 12px;
  }

  .al-lp-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .al-lp-steps-row {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
  }

  .al-lp-step-card {
    flex: 1 1 0;
    max-width: none;
    min-width: 0;
  }

  .al-lp-step-connector {
    align-self: center;
    transform: none;
    padding: 0 2px;
    margin-top: 24px;
  }

  .al-lp-step-illus--bootcamp {
    --al-lp-bootcamp-scale: 0.34;
  }

  .al-lp-step-illus--fbuilder {
    --al-lp-fbuilder-scale: 0.27;
  }

  .al-lp-step-illus--payment {
    --al-lp-payment-scale: 0.28;
  }

  .al-lp-final-panel {
    flex-direction: row;
    align-items: center;
    gap: clamp(20px, 3vw, 36px);
    padding: clamp(20px, 3vw, 28px) clamp(24px, 3.5vw, 40px);
  }

  .al-lp-final-gift-wrap {
    margin: 0;
    align-self: center;
    justify-content: flex-start;
    width: 220px;
    height: 220px;
  }

  .al-lp-gift-scaler {
    transform: scale(1);
  }

  .al-lp-final-copy h2,
  .al-lp-final-copy p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .al-lp-final-action {
    align-items: flex-end;
  }

  .al-lp-final-btn {
    width: auto;
    min-width: 260px;
    white-space: nowrap;
  }

  .al-lp-final-note {
    text-align: center;
    width: 100%;
    max-width: 340px;
  }

  .al-lp-footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .al-lp-feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* —— Mobile & tablet (≤768px) —— */
@media (max-width: 768px) {
  .al-lp-wrap {
    padding-left: max(14px, env(safe-area-inset-left, 0px));
    padding-right: max(14px, env(safe-area-inset-right, 0px));
  }

  .al-lp-header-inner {
    gap: 8px 10px;
    min-height: 56px;
    padding: 8px 0;
  }

  .al-lp-brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 108px);
  }

  .al-lp-menu-toggle {
    order: 2;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .al-lp-header-cta {
    order: 3;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .al-lp-nav {
    order: 10;
    max-height: min(70vh, 520px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 14px;
    margin: 0 -2px;
    border-radius: 0 0 12px 12px;
    background: var(--al-navy);
  }

  .al-lp-nav a {
    padding: 14px 8px;
    min-height: 48px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  #top,
  #features,
  #how-it-works,
  #testimonials,
  #faq {
    scroll-margin-top: calc(64px + env(safe-area-inset-top, 0px));
  }

  .al-lp-section {
    padding: clamp(44px, 10vw, 56px) 0;
  }

  .al-lp-h2 {
    margin-bottom: 28px;
    font-size: clamp(1.35rem, 5.5vw, 1.65rem);
    padding-left: 4px;
    padding-right: 4px;
  }

  .al-lp-header .al-lp-btn-sm {
    font-size: 12px;
    padding: 10px 12px;
  }

  .al-lp-btn-hero,
  .al-lp-final-btn,
  .al-lp-btn,
  .al-lp-faq-trigger,
  .al-lp-footer-link-btn {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .al-lp-hero {
    padding-top: clamp(24px, 5vw, 36px);
    padding-bottom: clamp(20px, 4vw, 28px);
  }

  .al-lp-hero-grid {
    gap: 24px;
  }

  .al-lp-hero-copy {
    text-align: center;
    max-width: 100%;
  }

  .al-lp-pill {
    font-size: 11px;
    padding: 6px 12px;
  }

  .al-lp-hero-title {
    font-size: clamp(1.55rem, 7.5vw, 2rem);
  }

  .al-lp-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .al-lp-checks {
    text-align: left;
    gap: 10px 12px;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .al-lp-hero-ctas {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 24rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .al-lp-btn-hero {
    width: 100%;
    min-height: 52px;
  }

  .al-lp-btn-hero-main {
    font-size: 0.9375rem;
  }

  .al-lp-social-proof {
    justify-content: center;
    text-align: center;
  }

  .al-lp-social-proof p {
    font-size: 13px;
  }

  .al-lp-hero-visual {
    min-height: clamp(220px, 58vw, 280px);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .al-lp-hero-scene {
    min-height: clamp(220px, 58vw, 280px);
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  .al-lp-hero-dash {
    max-width: 100%;
    margin: 0 auto;
  }

  .al-lp-hero-dash .al-launch-dash-hero-scaler {
    max-width: 100%;
  }

  .al-lp-hero-composite {
    max-width: min(320px, 92vw);
    max-height: 52vh;
  }

  .al-lp-hero-dash .al-launch-dash-hero-scaler {
    min-height: clamp(200px, 54vw, 280px);
  }

  .al-lp-hero-dash .al-dash-hero-stage--lp-pair {
    --al-hero-mobile-w: clamp(88px, 28vw, 120px);
    --al-hero-mobile-overlap: clamp(28px, 9vw, 40px);
    min-height: clamp(200px, 54vw, 280px);
    height: clamp(200px, 54vw, 280px);
  }

  .al-lp-hero-dash .al-dash-frame--desktop .al-dash-frame-viewport {
    height: clamp(188px, 50vw, 248px);
    min-height: clamp(188px, 50vw, 248px);
  }

  .al-lp-hero-dash .al-dash-frame--mobile .al-dash-frame-viewport {
    height: clamp(172px, 46vw, 228px);
    min-height: clamp(172px, 46vw, 228px);
  }

  .al-lp-hero-trust-wrap {
    margin-top: 20px;
  }

  .al-lp-hero-trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 10px;
    padding: 16px 14px;
  }

  .al-lp-hero-trust-icon {
    width: 36px;
    height: 36px;
  }

  .al-lp-hero-trust-label {
    font-size: 11px;
  }

  .al-lp-feature-card {
    padding: 22px 18px;
  }

  .al-lp-steps-row {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    overflow: visible;
    padding-bottom: 0;
  }

  .al-lp-step-card {
    flex: none;
    width: 100%;
    max-width: none;
  }

  .al-lp-step-connector {
    transform: rotate(90deg);
    margin: -6px auto;
  }

  .al-lp-step-card {
    padding: 14px 14px 22px;
    padding-top: 42px;
  }

  .al-lp-step-illus {
    min-height: clamp(130px, 36vw, 170px);
    padding: 10px 8px;
    overflow: hidden;
    max-width: 100%;
  }

  .al-lp-bootcamp-scale-wrap,
  .al-lp-fbuilder-scale-wrap,
  .al-lp-payment-scale-wrap {
    max-width: 100%;
  }

  .al-lp-step-illus--bootcamp {
    --al-lp-bootcamp-scale: 0.34;
    min-height: clamp(180px, 48vw, 240px);
  }

  .al-lp-step-illus--fbuilder {
    --al-lp-fbuilder-scale: 0.32;
    min-height: clamp(180px, 48vw, 240px);
  }

  .al-lp-step-illus--payment {
    --al-lp-payment-scale: 0.32;
    min-height: clamp(180px, 48vw, 240px);
  }

  .al-lp-step-title {
    font-size: 1rem;
  }

  .al-lp-step-text {
    font-size: 12px;
    line-height: 1.55;
  }

  .al-lp-step-illus img {
    max-height: min(180px, 42vw);
  }

  .al-lp-faq-trigger {
    font-size: 15px;
    padding: 16px 0;
  }

  .al-lp-final-panel {
    padding: 20px 16px 22px;
    gap: 16px;
    overflow: hidden;
  }

  .al-lp-final-gift-wrap {
    width: clamp(150px, 40vw, 200px);
    height: clamp(150px, 40vw, 200px);
    margin: 0 auto;
  }

  .al-lp-gift-scaler {
    transform: scale(0.72);
  }

  .al-lp-final-copy h2,
  .al-lp-final-copy p {
    text-align: center;
  }

  .al-lp-final-action {
    width: 100%;
    max-width: 24rem;
    margin: 0 auto;
  }

  .al-lp-final-btn {
    width: 100%;
    max-width: none;
    white-space: normal;
    text-align: center;
    min-height: 52px;
  }

  .al-lp-final-btn-label {
    font-size: 0.9rem;
  }

  .al-lp-final-note {
    max-width: none;
    font-size: 11px;
  }

  .al-lp-footer {
    padding: 40px 0 max(20px, env(safe-area-inset-bottom, 0px));
  }

  .al-lp-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

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

  .al-lp-footer-brand img,
  .al-lp-footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .al-lp-footer h4,
  .al-lp-footer ul {
    text-align: center;
  }

  .al-lp-social {
    justify-content: center;
  }

  .al-lp-footer-copy {
    font-size: 12px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .al-lp-modal {
    padding: max(12px, env(safe-area-inset-top, 0px)) 12px max(12px, env(safe-area-inset-bottom, 0px));
    align-items: flex-end;
  }

  .al-lp-modal-dialog,
  .al-lp-contact-dialog {
    max-height: min(92dvh, calc(var(--al-lp-vh, 100vh) - 24px), 100%);
    margin: 0;
    padding: 20px 16px;
    border-radius: 16px 16px 0 0;
  }

  .al-lp-modal:not([hidden]) {
    align-items: flex-end;
  }
}

@media (max-width: 600px) {
  .al-lp-checks {
    grid-template-columns: 1fr;
  }

  .al-lp-hero-trust {
    grid-template-columns: 1fr;
  }

  .al-lp-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Small phones (≤480px) —— */
@media (max-width: 480px) {
  .al-lp-wrap {
    padding-left: max(12px, env(safe-area-inset-left, 0px));
    padding-right: max(12px, env(safe-area-inset-right, 0px));
  }

  .al-lp-brand img {
    height: clamp(38px, 10vw, 48px);
    max-width: min(240px, 72vw);
  }

  .al-lp-hero-title {
    font-size: clamp(1.4rem, 8vw, 1.75rem);
  }

  .al-lp-hero-dash .al-dash-hero-stage--lp-pair {
    --al-hero-mobile-w: clamp(76px, 24vw, 100px);
    --al-hero-mobile-overlap: clamp(24px, 8vw, 34px);
    min-height: clamp(180px, 52vw, 240px);
    height: clamp(180px, 52vw, 240px);
  }

  .al-lp-step-illus--bootcamp {
    --al-lp-bootcamp-scale: 0.3;
    min-height: clamp(160px, 44vw, 210px);
  }

  .al-lp-step-illus--fbuilder {
    --al-lp-fbuilder-scale: 0.28;
    min-height: clamp(160px, 44vw, 210px);
  }

  .al-lp-step-illus--payment {
    --al-lp-payment-scale: 0.28;
    min-height: clamp(160px, 44vw, 210px);
  }

  .al-lp-final-gift-wrap {
    width: clamp(130px, 38vw, 170px);
    height: clamp(130px, 38vw, 170px);
  }

  .al-lp-gift-scaler {
    transform: scale(0.62);
  }

  .al-lp-feature-card {
    padding: 18px 16px;
  }
}

/* —— Small phones (≤400px) —— */
@media (max-width: 400px) {
  .al-lp-header-cta__full {
    display: none;
  }

  .al-lp-header-cta__short {
    display: inline !important;
  }

  .al-lp-accent--brush {
    white-space: normal;
  }

  .al-lp-btn-hero-sub {
    font-size: 10px;
  }

  .al-lp-btn-hero-icon {
    width: 40px;
    height: 40px;
  }

  .al-lp-avatars img {
    width: 34px;
    height: 34px;
    margin-left: -10px;
  }

  .al-lp-hero-trust {
    padding: 14px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .al-lp-btn,
  .al-lp-btn-hero,
  .al-lp-final-btn,
  .al-lp-menu-toggle__bar {
    transition: none;
  }

}

@media (min-width: 600px) and (max-width: 768px) {
  .al-lp-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .al-lp-footer-brand {
    grid-column: 1 / -1;
  }
}
