/* UPDATED: Import shared color system first for consistency across all pages */
@import url('shared-colors.css');

:root {
  /* Legacy color variables - now overridden by shared-colors.css */
  --bg: #f7fafc;
  --bg-soft: #eef6ff;
  --bg-card: #ffffff;
  --border-subtle: #e5e7eb;
  --border-strong: #d1d5db;
  --text-main: #0f172a;
  --text-muted: #4b5563;
  --text-soft: #6b7280;
  --accent: #2563eb;
  --accent-soft: #e0ecff;
  --accent-alt: #fbbf24;
  --danger: #ef4444;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
}

/* RESET */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overscroll-behavior-y: none;
}

html, body {
  height: 100%;
  overscroll-behavior-y: none;
  overscroll-behavior: none;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  padding-bottom: env(safe-area-inset-bottom);
  opacity: 0;
  transform: translateY(8px);
  background-position: 0% 0%;
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background-position 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(251, 191, 36, 0.02) 100%);
  overscroll-behavior-y: none;
  overscroll-behavior: none;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

body.page-visible {
  opacity: 1;
  transform: translateY(0);
}

body.page-fade-out {
  opacity: 0;
  transform: translateY(4px);
}

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

.light-body {
  background: transparent;
}

/* TOP HEADER */

.top-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.top-header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e2e8f0, #f8fafc);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid #e5e7eb;
}

.avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-circle--clarity {
  position: relative;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 45%, #fbbf24 100%);
  border: 1px solid rgba(251, 191, 36, 0.75);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation: clarity-badge-spin 9s linear infinite;
}

.avatar-circle--clarity::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 45%);
  pointer-events: none;
}

.avatar-circle--clarity .avatar-letter {
  position: relative;
  z-index: 1;
  color: #fffaf0;
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.06em;
  text-shadow: 0 1px 2px rgba(15, 23, 42, 0.18);
}

@keyframes clarity-badge-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.top-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.top-handle {
  font-weight: 700;
  font-size: 14px;
  color: #0f172a;
}

.top-sub {
  font-size: 11px;
  color: #4b5563;
}

.top-nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
}

.top-nav a {
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.top-nav a:hover {
  color: #0f172a;
}

.top-cta-wrap {
  flex-shrink: 0;
}

.top-cta {
  border-radius: var(--radius-pill);
  border: 1px solid #cbd5e1;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #f8fafc;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.top-cta:hover,
.top-cta:active {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.32);
}

/* PAGE LAYOUT */

.lp-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px 64px;
  background: transparent;
}

/* HERO */

/* ===== HERO SECTION UPDATED: Added gradient background, repositioned stat, button glow ===== */

.lp-hero {
  text-align: center;
  min-height: 85vh;
  padding: 60px 16px 50px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  gap: 12px;
}

/* Subtle pattern overlay for depth */
.lp-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(37, 99, 235, 0.02) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* Decorative circles for visual interest */
.lp-hero::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, rgba(37, 99, 235, 0) 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, -20px) scale(1.05);
  }
}

/* Scholarship Badge */
.scholarship-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #fbbf24;
  border-radius: 999px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  animation: badge-pulse 2s ease-in-out infinite;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.25), 
              0 0 0 0 rgba(251, 191, 36, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.scholarship-badge-secondary {
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.3);
  margin-bottom: 12px;
  animation: none;
  box-shadow: none;
}

.scholarship-badge-secondary:hover {
  box-shadow: none;
  transform: none;
}

.scholarship-tooltip {
  font-size: 11px;
  color: var(--text-secondary);
  text-align: center;
  opacity: 0.8;
  margin-top: 4px;
  margin-bottom: 12px;
}

.scholarship-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.35), 
              0 0 0 4px rgba(251, 191, 36, 0.1);
}

@keyframes badge-pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.25), 
                0 0 0 0 rgba(251, 191, 36, 0.4);
  }
  50% {
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.25), 
                0 0 0 8px rgba(251, 191, 36, 0);
  }
}

.badge-icon {
  width: 20px;
  height: 20px;
  color: #d97706;
  stroke-width: 2.5;
  animation: badge-icon-bounce 2s ease-in-out infinite;
}

@keyframes badge-icon-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.scholarship-badge span {
  font-size: 14px;
  font-weight: 600;
  color: #92400e;
  letter-spacing: 0.3px;
}

.badge-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #fbbf24;
  border-radius: 50%;
  color: #78350f;
  font-size: 14px;
  font-weight: bold;
  transition: transform 0.2s ease;
}

.scholarship-badge:hover .badge-arrow {
  transform: translateX(3px);
}

@keyframes pulse-glow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(255, 184, 77, 0.6)) 
            drop-shadow(0 0 30px rgba(255, 184, 77, 0.4))
            drop-shadow(0 0 40px rgba(255, 144, 37, 0.3));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(255, 184, 77, 0.9)) 
            drop-shadow(0 0 50px rgba(255, 184, 77, 0.6))
            drop-shadow(0 0 70px rgba(255, 144, 37, 0.5));
    transform: scale(1.02);
  }
}

/* Decorative small circles - subtle accents */
.lp-hero-social-proof::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  width: 16px;
  height: 16px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.lp-hero-social-proof::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.lp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fee2e2;
  color: #b91c1c;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 14px;
}

.lp-hero-title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  color: #0f172a;
  line-height: 1.1;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.lp-hero-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 6px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.25), rgba(251, 191, 36, 0.35));
}

/* HERO UPDATED: Stat now sits under headline, gold color, styled as part of headline grouping */
.lp-hero-stat {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 600;
  color: #fbbf24;
  letter-spacing: 0.2px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.4);
}

.lp-hero-stat-compact {
  padding: 3px 10px;
  font-size: 15px;
  background: transparent;
  border: none;
}

.lp-hero-stat-compact .lp-stat-number,
.lp-hero-stat-compact .lp-stat-plus,
.lp-hero-stat-compact .lp-stat-label {
  font-size: 15px;
}

.lp-hero-stat .lp-stat-number {
  font-weight: 600;
  color: inherit;
  display: inline;
  font-size: 15px;
}

.lp-hero-stat .lp-stat-plus {
  color: inherit;
  font-weight: 600;
  font-size: 15px;
}

.lp-hero-stat .lp-stat-label {
  color: inherit;
  font-weight: 600;
  font-size: 15px;
}

.lp-hero-sub {
  font-size: 16px;
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* HERO UPDATED: Consolidated social proof block with enhanced trust badge styling */
.lp-hero-social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(37, 99, 235, 0.01) 100%);
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  box-shadow: 0 1px 4px rgba(37, 99, 235, 0.03);
}

.lp-hero-social-proof-secondary {
  background: rgba(37, 99, 235, 0.02);
  border: 1px solid rgba(37, 99, 235, 0.08);
  padding: 6px 12px;
  box-shadow: none;
}

.lp-social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.lp-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: #ffffff;
  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid rgba(229, 231, 235, 0.8);
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  cursor: pointer;
}

.lp-hero-social-proof-secondary .lp-social-pill {
  padding: 6px 12px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: none;
}

.lp-social-pill svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.lp-social-pill .social-handle {
  font-size: 13px;
  font-weight: 600;
}

.lp-social-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
  border-color: rgba(229, 231, 235, 1);
}

.social-pill-instagram {
  background: linear-gradient(135deg, #f97316 0%, #ec4899 55%, #8b5cf6 100%);
  color: #ffffff;
  border-color: rgba(236, 72, 153, 0.45);
}

.social-pill-linkedin {
  background: #0a66c2;
  color: #ffffff;
  border-color: rgba(10, 102, 194, 0.5);
}

.lp-hero-social-proof-secondary .social-pill-instagram {
  background: linear-gradient(135deg, #f97316 0%, #ec4899 55%, #8b5cf6 100%);
  color: #ffffff;
  border-color: rgba(236, 72, 153, 0.45);
}

.lp-hero-social-proof-secondary .social-pill-linkedin {
  background: #0a66c2;
  color: #ffffff;
  border-color: rgba(10, 102, 194, 0.5);
}

.social-pill-instagram .lp-ig-icon,
.social-pill-linkedin .lp-linkedin-icon {
  fill: #ffffff;
}

.social-pill-instagram:hover,
.social-pill-linkedin:hover {
  filter: brightness(1.03);
  border-color: transparent;
}

/* Keep platform branding even when responsive pill styles apply */
.lp-social-pill.social-pill-instagram {
  background: linear-gradient(135deg, #f97316 0%, #ec4899 55%, #8b5cf6 100%) !important;
  color: #ffffff !important;
  border-color: rgba(236, 72, 153, 0.45) !important;
}

.lp-social-pill.social-pill-linkedin {
  background: #0a66c2 !important;
  color: #ffffff !important;
  border-color: rgba(10, 102, 194, 0.5) !important;
}

.lp-social-pill.social-pill-instagram .lp-ig-icon,
.lp-social-pill.social-pill-linkedin .lp-linkedin-icon {
  fill: #ffffff !important;
}

/* Fallback selectors by destination URL to ensure brand colors always apply */
.lp-social-pill[href*="instagram.com"] {
  background: linear-gradient(135deg, #f97316 0%, #ec4899 55%, #8b5cf6 100%) !important;
  color: #ffffff !important;
  border-color: rgba(236, 72, 153, 0.45) !important;
}

.lp-social-pill[href*="linkedin.com"] {
  background: #0a66c2 !important;
  color: #ffffff !important;
  border-color: rgba(10, 102, 194, 0.5) !important;
}

.lp-social-pill[href*="instagram.com"] .lp-ig-icon,
.lp-social-pill[href*="linkedin.com"] .lp-linkedin-icon {
  fill: #ffffff !important;
}

/* Instagram gradient icon */
.lp-ig-icon {
  fill: url(#ig-gradient);
}

/* LinkedIn gradient icon */
.lp-linkedin-icon {
  fill: url(#linkedin-gradient);
}

.dot-ig,
.dot-linkedin,
.dot-yt {
  width: 7px;
  height: 7px;
  border-radius: 999px;
}

.dot-ig {
  background: radial-gradient(circle at 30% 30%, #f97316, #ec4899, #8b5cf6);
}

.dot-linkedin {
  background: #0a66c2;
}

.dot-yt {
  background: #fbbf24;
}

.lp-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 0;
}

/* Supporting reassurance line below buttons - REMOVED per user request */
.lp-hero-supporting {
  display: none;
}

/* Trust metric row below buttons - simplified to single line */
.lp-trust-metric {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  color: #9ca3af;
  margin-top: 12px;
  margin-bottom: 24px;
  text-align: center;
  flex-wrap: wrap;
  font-weight: 400;
}

.lp-trust-metric .metric-divider {
  color: #d1d5db;
  font-weight: 300;
}

/* Confidence builders micro-copy */
.lp-confidence-builders {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 0;
}

.confidence-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #4b5563;
  font-weight: 500;
}

.confidence-check {
  width: 16px;
  height: 16px;
  color: #fbbf24;
  flex-shrink: 0;
  stroke-width: 3;
}

/* Hero testimonial quote */
.lp-hero-testimonial {
  max-width: 650px;
  margin: 18px auto 0;
  text-align: center;
}

.testimonial-quote {
  font-size: 15px;
  font-style: italic;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 8px;
}

.testimonial-author {
  font-size: 14px;
  color: #6b7280;
  font-weight: 600;
  margin: 0;
}

/* Scroll indicator - subtle animated arrow */
.scroll-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  opacity: 0.4;
  animation: fadeInScroll 1s ease-in-out 0.5s forwards;
}

.scroll-arrow {
  width: 28px;
  height: 28px;
  color: #6b7280;
  animation: bounce 2s ease-in-out infinite;
  cursor: pointer;
}

.scroll-indicator:hover .scroll-arrow {
  opacity: 0.8;
  color: #2563eb;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@keyframes fadeInScroll {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 0.4;
    transform: translateY(0);
  }
}

/* Hero social proof element - sits at top of social proof block */
.lp-hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #2563eb;
  font-weight: 600;
  position: relative;
}

.trust-icon-wrapper {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.lp-hero-trust .trust-icon {
  width: 20px;
  height: 20px;
  color: #2563eb;
  flex-shrink: 0;
}

.lp-hero-trust p {
  margin: 0;
  font-weight: 600;
}

/* Hero outcome statement - sits below buttons with target icon for clarity theme */
.lp-hero-outcome {
  font-size: 13px;
  color: #6b7280;
  max-width: 680px;
  margin: 0 auto 0;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.outcome-icon-wrapper {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  flex-shrink: 0;
}

.lp-hero-outcome .outcome-icon {
  width: 14px;
  height: 14px;
  color: #2563eb;
  flex-shrink: 0;
  stroke-width: 2.5;
}

/* Ensure hero content sits above the backdrop */
.lp-hero > * {
  position: relative;
  z-index: 1;
}

/* BUTTONS */

.primary-btn,
.ghost-btn {
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.15s ease, filter 0.15s ease, background-color 0.15s ease;
}


.primary-btn {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3), 0 0 1px rgba(37, 99, 235, 0.5);
  border: 1px solid #1d4ed8;
  cursor: pointer;
  padding: 14px 36px;
  font-size: 15px;
}

.primary-btn:hover,
.primary-btn:active {
  background: #1d4ed8;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35), 0 0 20px rgba(37, 99, 235, 0.2);
}

/* BUTTON GLOW: Enhanced shadow and soft glow for CTA emphasis */
.primary-btn-glow {
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3), 0 0 24px rgba(37, 99, 235, 0.25), 0 0 48px rgba(37, 99, 235, 0.15);
}

.primary-btn-glow:hover,
.primary-btn-glow:active {
  background: #1d4ed8;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.4), 0 0 32px rgba(37, 99, 235, 0.3), 0 0 64px rgba(37, 99, 235, 0.2);
  transform: translateY(-2px) scale(1.02);
}

/* HEARTBEAT ANIMATION: Draws attention with pulse effect */
@keyframes heartbeat {
  0%, 72%, 100% {
    transform: scale(1);
  }
  78% {
    transform: scale(1.015);
  }
  86% {
    transform: scale(0.995);
  }
  93% {
    transform: scale(1.01);
  }
}

.primary-btn-heartbeat {
  animation: heartbeat 3.4s ease-in-out infinite;
}


/* Secondary outline button - outline style with white background, blue border and text */
.secondary-btn {
  background: #ffffff;
  color: #2563eb;
  border: 2px solid #2563eb;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
  padding: 14px 36px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.secondary-btn:hover,
.secondary-btn:active {
  background: #f0f9ff;
  transform: translateY(-2px) scale(1.01);
  border-color: #1d4ed8;
  color: #1d4ed8;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.15);
}

.ghost-btn {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.ghost-btn:hover,
.ghost-btn:active {
  background: #f8fafc;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

/* GENERIC SECTION */

.lp-section {
  margin-top: 0;
  padding: 40px 16px;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

/* MENTORING SECTION: Inherits background from body, subtle visual separation */
.lp-section#mentoring {
  border-top: none;
  margin-top: 16px;
  padding: 40px 16px;
  position: relative;
}

.lp-section#mentoring::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.15) 50%, transparent 100%);
}

/* STATS SECTION SPACING: Consistent padding with other sections */
.lp-section:has(#stats-section) {
  margin-top: 0;
  padding: 40px 16px;
}

.lp-section-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.lp-section-header {
  text-align: center;
  margin-bottom: 32px;
}

.lp-section#mentoring .lp-section-header {
  margin-top: 16px;
  margin-bottom: 36px;
}

.lp-section-header h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.lp-section-header p {
  font-size: 15px;
  color: #4b5563;
  margin-top: 4px;
  line-height: 1.5;
}

/* STATS */

/* ===== STATS SECTION UPDATED: 2x2 GRID LAYOUT, PANEL STYLING, ANIMATION READY ===== */

/* Container panel behind the stats grid */
.lp-stats-panel {
  background: linear-gradient(135deg, 
    rgba(248, 250, 252, 0.5) 0%, 
    rgba(229, 231, 235, 0.25) 100%);
  padding: 40px 24px;
  border-radius: 16px;
  border: 1px solid rgba(229, 231, 235, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

/* Subtle diagonal stripe pattern overlay (low opacity) */
.lp-stats-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.02) 10px,
      rgba(255, 255, 255, 0.02) 20px
    );
  pointer-events: none;
}

/* 2x2 grid on desktop, stacked on mobile */
.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.lp-stat-card {
  padding: 32px 24px;
  border-radius: 14px;
  background: #f5f3ed;
  border: 1px solid rgba(229, 231, 235, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover lift effect */
.lp-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: rgba(37, 99, 235, 0.15);
}

/* Primary/featured stat (100+ calls) - highlighted with gold tint */
.lp-stat-card-primary {
  background: #f5f3ed;
  border: 1px solid rgba(251, 191, 36, 0.18);
  box-shadow: 0 6px 16px rgba(251, 191, 36, 0.08);
}

.lp-stat-card-primary:hover {
  border-color: rgba(251, 191, 36, 0.3);
  box-shadow: 0 12px 28px rgba(251, 191, 36, 0.14);
}

.lp-stat-number {
  font-size: 52px;
  font-weight: 900;
  color: #fbbf24;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.lp-stat-label {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
  text-transform: capitalize;
}

.lp-stat-card p {
  font-size: 13px;
  color: #4b5563;
  margin-top: 0;
  line-height: 1.6;
}

/* ===== END STATS SECTION UPDATES ===== */

/* SCREENSHOT SOCIAL PROOF GRID */

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.screenshot-card {
  background: #f3f0e8;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(148, 163, 184, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.screenshot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(148, 163, 184, 0.16);
}

.screenshot-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.screenshot-caption {
  font-size: 11px;
  color: #6b7280;
  margin-top: 6px;
  text-align: center;
  font-style: italic;
}

/* SCREENSHOT SOCIAL PROOF GRID */

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.screenshot-card {
  background: #f3f0e8;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(148, 163, 184, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.screenshot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(148, 163, 184, 0.16);
}

.screenshot-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.screenshot-caption {
  font-size: 11px;
  color: #6b7280;
  margin-top: 6px;
  text-align: center;
  font-style: italic;
}

/* SCREENSHOT SOCIAL PROOF GRID */

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.screenshot-card {
  background: #f3f0e8;
  border-radius: 12px;
  padding: 10px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 16px rgba(148, 163, 184, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.screenshot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(148, 163, 184, 0.15);
}

.screenshot-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.screenshot-caption {
  font-size: 10px;
  color: #6b7280;
  margin-top: 4px;
  text-align: center;
  font-style: italic;
}

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

@media (max-width: 600px) {
  .screenshots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .screenshot-card {
    padding: 8px;
    border-radius: 10px;
  }

  .screenshot-card img {
    border-radius: 6px;
  }
}

/* THREE THOUGHT CARDS */

.lp-three-cards {
  display: grid;
  gap: 20px;
}

.lp-thought-card {
  padding: 20px;
  border-radius: 12px;
  background: #f5f3ed;
  border: 1px solid rgba(229, 231, 235, 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.lp-thought-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #0f172a;
}

.lp-thought-card p {
  font-size: 13px;
  color: #4b5563;
}

/* FOUR FEATURE GRID */

.lp-four-grid {
  display: grid;
  gap: 20px;
}

.lp-feature-card {
  padding: 20px;
  border-radius: 12px;
  background: #f5f3ed;
  border: 1px solid rgba(229, 231, 235, 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.lp-feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #0f172a;
}

.lp-feature-card p {
  font-size: 13px;
  color: #4b5563;
}

/* MENTOR CARD - Photo left, text right, centered layout */

.lp-mentor-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  margin-top: 24px;
  gap: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.lp-mentor-photo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 280px;
  flex-shrink: 0;
}

.lp-mentor-photo {
  width: 280px;
  height: 280px;
  border-radius: 20px;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.lp-mentor-text {
  text-align: left;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
}

.lp-mentor-name {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0;
  color: #0f172a;
  line-height: 1.2;
}

.lp-mentor-sub {
  font-size: 16px;
  color: #5a6b7f;
  margin-bottom: 0;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.5;
}

.lp-mentor-list {
  list-style: none;
  font-size: 15px;
  color: #4b5563;
  margin-top: 8px;
  margin-bottom: 0;
  padding: 0;
  gap: 12px;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

.lp-mentor-list li {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.lp-mentor-list li::before {
  content: "●";
  color: var(--accent-alt);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0;
  font-size: 12px;
}

.lp-mentor-cta {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 24px;
  margin-top: 8px;
  font-weight: 500;
  line-height: 1.6;
}

.lp-mentor-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
}

.lp-mentor-buttons .primary-btn,
.lp-mentor-buttons .ghost-btn {
  flex: 1;
  padding: 14px 24px;
  font-size: 14px;
}

/* PRICING */

.lp-pricing-grid {
  display: grid;
  gap: 20px;
}

.lp-pricing-grid-single {
  grid-template-columns: minmax(0, 640px);
  justify-content: center;
}


.lp-price-card {
  padding: 28px 24px;
  border-radius: 16px;
  background: #f5f3ed;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lp-price-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

.lp-price-featured {
  border: 2.5px solid #fbbf24;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: scale(1);
}

.lp-price-featured:hover {
  border-color: #f59e0b;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  transform: scale(1.02) translateY(-2px);
}

.lp-price-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fbbf24;
  margin-bottom: 4px;
}

.lp-price-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 2px;
  color: #0f172a;
}

.lp-price-main {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin: 6px 0 4px;
}

.lp-price-main-gold {
  color: #fbbf24;
}

.lp-price-sub {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 8px;
}

.lp-price-list {
  list-style: none;
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 12px;
}

.lp-price-list li {
  margin-bottom: 4px;
}

.lp-price-list li::before {
  content: "✔";
  color: var(--accent);
  margin-right: 6px;
}

/* TESTIMONIALS */

.lp-testimonials {
  display: grid;
  gap: 20px;
}

.lp-testimonial-card {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  background: #f5f3ed;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.lp-testimonial-card p {
  font-size: 14px;
  color: #0f172a;
}

.lp-testimonial-name {
  font-size: 12px;
  font-weight: 600;
  color: #4b5563;
  margin-top: 6px;
}

/* FAQ */

.lp-faq-grid {
  display: grid;
  gap: 18px;
}

.lp-faq-item {
  padding: 0;
  border-radius: 14px;
  background: #f5f3ed;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.lp-faq-question {
  width: 100%;
  padding: 16px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  font-family: inherit;
  transition: background-color 0.2s ease;
}

.lp-faq-question:hover {
  background-color: rgba(37, 99, 235, 0.03);
}

.lp-faq-question:focus {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.lp-faq-text {
  text-align: left;
  flex: 1;
}

.lp-faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.lp-faq-item.open .lp-faq-icon {
  transform: rotate(45deg);
}

.lp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid var(--border-subtle);
}

.lp-faq-item.open .lp-faq-answer {
  border-top-color: var(--border-subtle);
}

.lp-faq-answer p {
  padding: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

/* Mobile responsive FAQ */
@media (max-width: 768px) {
  /* ===== HERO SECTION - MOBILE OPTIMIZED ===== */
  .lp-hero {
    min-height: auto;
    padding: 16px 16px 20px;
    gap: 8px;
  }

  .lp-hero-title {
    font-size: clamp(42px, 10vw, 56px);
    line-height: 1.1;
    margin-bottom: 6px;
    font-weight: 900;
  }

  .lp-hero-stat {
    font-size: 15px;
    margin: 0 0 8px 0;
  }

  .lp-hero-stat .lp-stat-number,
  .lp-hero-stat .lp-stat-plus,
  .lp-hero-stat .lp-stat-label {
    font-size: 15px;
    line-height: 1;
  }

  .lp-hero .lp-hero-stat-compact .lp-stat-number,
  .lp-hero .lp-hero-stat-compact .lp-stat-plus,
  .lp-hero .lp-hero-stat-compact .lp-stat-label {
    font-size: 15px !important;
    line-height: 1 !important;
    font-weight: 600;
  }

  .lp-hero-sub {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 10px;
    max-width: 100%;
  }

  /* Hero social proof - reduce padding, stack pills vertically with label visible */
  .lp-hero-social-proof {
    padding: 8px 12px;
    max-width: 100%;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
  }

  .lp-hero-trust {
    font-size: 12px;
    gap: 6px;
    display: flex;
  }

  .trust-icon-wrapper {
    width: 22px;
    height: 22px;
  }

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

  /* Social pills - stack vertically on mobile for better fit */
  .lp-social-row {
    flex-direction: column;
    width: 100%;
    gap: 6px;
    justify-content: center;
  }

  .lp-social-pill {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 10px 12px;
    font-size: 12px;
    gap: 6px;
    min-height: 44px;
  }

  .lp-social-pill svg {
    width: 16px;
    height: 16px;
  }

  .social-handle {
    font-size: 11px;
    white-space: nowrap;
  }

  /* Hero outcome - reduce padding */
  .lp-hero-outcome {
    font-size: 14px;
    padding: 0;
    flex-direction: column;
    gap: 12px;
    margin: 12px 0;
    line-height: 1.5;
  }

  .outcome-icon-wrapper {
    width: 26px;
    height: 26px;
  }

  .lp-hero-outcome .outcome-icon {
    width: 18px;
    height: 18px;
  }

  /* Buttons - full width with consistent spacing */
  .lp-hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 6px;
    margin: 8px 0 6px;
  }

  .primary-btn,
  .secondary-btn,
  .ghost-btn {
    width: 100%;
    padding: 16px 20px;
    min-height: 48px;
    font-size: 15px;
    font-weight: 600;
  }

  /* Supporting sentence on mobile */
  .lp-hero-supporting {
    font-size: 12px;
    margin: 0 auto 20px;
    line-height: 1.5;
  }

  /* Trust metric row - better spacing */
  .lp-trust-metric {
    font-size: 14px;
    gap: 8px;
    flex-wrap: wrap;
    padding: 0;
    margin: 12px 0;
    line-height: 1.5;
  }

  .metric-divider {
    opacity: 0.3;
  }

  /* Confidence builders - vertical stack */
  .lp-confidence-builders {
    gap: 4px;
    padding: 0;
    margin: 8px 0 0;
  }

  .confidence-item {
    font-size: 12px;
    line-height: 1.4;
    gap: 6px;
    padding: 0;
  }

  .confidence-check {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
  }

  /* Hero testimonial - better spacing */
  .lp-hero-testimonial {
    max-width: 100%;
    padding: 0;
    margin: 16px 0;
  }

  .testimonial-quote {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .testimonial-author {
    font-size: 13px;
    color: #6b7280;
  }

  .scroll-indicator {
    margin-top: 24px;
    margin-bottom: 0;
  }

  /* ===== SECTION SPACING - MOBILE OPTIMIZED ===== */
  .lp-section {
    padding: 40px 16px;
    margin: 0;
  }

  .lp-section-header {
    margin-bottom: 24px;
  }

  .lp-section-header h2 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .lp-section-header p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* ===== MENTOR SECTION - MOBILE OPTIMIZED ===== */
  .lp-mentor-card {
    flex-direction: column;
    gap: 24px;
    margin-top: 0;
    max-width: 100%;
    padding: 0;
  }

  .lp-mentor-photo-wrap {
    width: 100%;
    max-width: 240px;
    height: auto;
    margin: 0 auto;
  }

  .lp-mentor-photo {
    width: 100%;
    height: auto;
    border-radius: 14px;
  }

  .lp-mentor-text {
    text-align: center;
    max-width: 100%;
    gap: 12px;
  }

  .lp-mentor-name {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.2;
  }

  .lp-mentor-sub {
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #6b7280;
  }

  .lp-mentor-list {
    gap: 12px;
    margin: 12px 0;
    padding-left: 0;
  }

  .lp-mentor-list li {
    justify-content: center;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
  }

  .lp-mentor-cta {
    font-size: 14px;
    margin-bottom: 18px;
    margin-top: 8px;
    line-height: 1.5;
  }

  /* Mentor buttons - full width */
  .lp-mentor-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .lp-mentor-buttons .primary-btn,
  .lp-mentor-buttons .ghost-btn {
    width: 100%;
    flex: 1;
    padding: 16px 20px;
    min-height: 48px;
    font-size: 15px;
  }

  /* ===== STATS SECTION - MOBILE OPTIMIZED ===== */
  .lp-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lp-stat-card {
    padding: 28px 20px;
    gap: 12px;
  }

  .lp-stat-card p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
  }

  .lp-stat-number {
    font-size: 32px !important;
    font-weight: 800;
    line-height: 1;
  }

  .lp-stat-label {
    font-size: 16px;
    font-weight: 700;
    margin: 4px 0;
  }

  .lp-stats-panel {
    padding: 32px 16px;
  }

  .lp-section-cta {
    margin-top: 24px;
  }

  /* ===== TEXT SECTIONS - MOBILE OPTIMIZED ===== */
  .lp-three-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lp-thought-card {
    padding: 20px 16px;
    gap: 10px;
  }

  .lp-thought-card h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .lp-thought-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
  }

  .lp-four-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lp-feature-card {
    padding: 20px 16px;
    gap: 10px;
  }

  .lp-feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .lp-feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
  }

  /* ===== SCREENSHOT GRID - MOBILE OPTIMIZED ===== */
  .screenshots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .screenshot-card {
    padding: 8px;
    border-radius: 10px;
  }

  .screenshot-card img {
    border-radius: 6px;
  }

  .screenshot-caption {
    font-size: 10px;
    margin-top: 6px;
  }

  /* ===== PRICING - MOBILE OPTIMIZED ===== */
  .lp-pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lp-pricing-grid-single {
    grid-template-columns: 1fr;
  }

  .lp-price-card {
    padding: 24px 20px;
    gap: 12px;
  }

  .lp-price-card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
  }

  .lp-price-main {
    font-size: 24px;
    font-weight: 800;
    margin: 8px 0;
  }

  .lp-price-sub {
    font-size: 14px;
    line-height: 1.5;
    margin: 8px 0;
  }

  .lp-price-list {
    font-size: 13px;
    line-height: 1.6;
    gap: 8px;
    margin: 12px 0;
  }

  .lp-price-list li {
    margin-left: 16px;
  }

  .lp-price-card button {
    width: 100%;
    margin-top: 12px;
  }

  /* ===== TESTIMONIALS - MOBILE OPTIMIZED ===== */
  .lp-testimonials {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lp-testimonial-card {
    padding: 20px 16px;
    gap: 10px;
  }

  .lp-testimonial-card p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
  }

  .lp-testimonial-name {
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
  }

  /* ===== FAQ - MOBILE OPTIMIZED ===== */
  .lp-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lp-faq-item {
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
  }

  .lp-faq-question {
    padding: 14px 16px;
    font-size: 14px;
    gap: 12px;
    min-height: 48px;
  }

  .lp-faq-icon {
    width: 18px;
    height: 18px;
    font-size: 16px;
  }

  .lp-faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
  }

  .lp-faq-answer p {
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
  }

  /* ===== FINAL CTA - MOBILE OPTIMIZED ===== */
  .lp-final {
    padding: 40px 16px;
  }

  .lp-final h2 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .lp-final p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .lp-final-note {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .lp-final button {
    width: 100%;
    margin: 8px 0;
  }

  /* ===== FOOTER - MOBILE OPTIMIZED ===== */
  .lp-footer {
    padding: 16px 12px;
    font-size: 11px;
    gap: 6px;
  }
}

/* FINAL CTA */

.lp-final {
  text-align: center;
  padding-bottom: 18px;
}

.lp-final h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
  color: #0f172a;
}

.lp-final p {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 10px;
}

.lp-final-note {
  font-size: 12px;
  color: #6b7280;
  margin-top: 10px;
}

/* FORM (BOOKING PAGE SHARED) */

.lp-form {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-form-row label {
  flex: 1 1 180px;
  font-size: 13px;
  color: #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-form-row input,
.lp-form-row textarea {
  border-radius: 12px;
  border: 1px solid rgba(251, 191, 36, 0.25);
  padding: 8px 10px;
  font-size: 13px;
  font-family: inherit;
  color: #e5e7eb;
  background: #0b1220;
  outline: none;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}

.lp-form-row input:focus,
.lp-form-row textarea:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.3);
}

/* SIMPLE ORDERED LIST */

.lp-steps-list {
  margin-top: 6px;
  padding-left: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

/* FOOTER */

.lp-footer {
  border-top: 1px solid rgba(251, 191, 36, 0.2);
  padding: 14px 16px 20px;
  font-size: 11px;
  color: #9ca3af;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

/* RESPONSIVE */

/* Extra mobile optimization for small screens (under 480px) */
@media (max-width: 480px) {
  /* ===== HERO SECTION - EXTRA TIGHT FOR SMALL MOBILE ===== */
  .lp-hero {
    min-height: auto;
    padding: 16px 12px 20px;
    gap: 10px;
  }

  .lp-hero-title {
    font-size: clamp(36px, 9vw, 44px);
    line-height: 1.1;
    margin-bottom: 10px;
  }

  .lp-final {
    padding-bottom: 12px;
  }

  .lp-hero-stat {
    font-size: 15px;
    margin: 6px 0;
  }

  .lp-hero-stat .lp-stat-number,
  .lp-hero-stat .lp-stat-plus,
  .lp-hero-stat .lp-stat-label {
    font-size: 15px;
    line-height: 1;
  }

  .lp-hero .lp-hero-stat-compact .lp-stat-number,
  .lp-hero .lp-hero-stat-compact .lp-stat-plus,
  .lp-hero .lp-hero-stat-compact .lp-stat-label {
    font-size: 15px !important;
    line-height: 1 !important;
    font-weight: 600;
  }

  .lp-hero-sub {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    max-width: 100%;
  }

  /* Hide "Follow for more clarity tips" label on small mobile */
  .lp-hero-trust {
    display: none;
  }

  /* Social proof box - minimal padding, stack pills */
  .lp-hero-social-proof {
    padding: 6px 8px;
    margin-bottom: 10px;
    gap: 8px;
    max-width: 100%;
  }

  .lp-social-row {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .lp-social-pill {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 10px 14px;
    font-size: 13px;
    gap: 8px;
    min-height: 44px;
  }

  .lp-social-pill svg {
    width: 16px;
    height: 16px;
  }

  .social-handle {
    font-size: 13px;
    white-space: nowrap;
  }

  /* Buttons - full width, stacked with 8px gap */
  .lp-hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 8px;
    margin: 10px 0 8px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    padding: 14px 18px;
    min-height: 48px;
    font-size: 15px;
    font-weight: 600;
  }

  /* Supporting sentence - smaller and tighter */
  .lp-hero-supporting {
    font-size: 11px;
    margin: 0 auto 16px;
    line-height: 1.5;
    max-width: 100%;
  }

  /* Trust metric - tighter */
  .lp-trust-metric {
    font-size: 13px;
    gap: 6px;
    margin: 12px 0;
  }

  /* Hide confidence builders on small mobile to keep hero tight */
  .lp-confidence-builders {
    display: none;
  }

  /* Scroll indicator - minimal margin */
  .scroll-indicator {
    margin-top: 16px;
    margin-bottom: 0;
  }

  /* Section spacing - tighter */
  .lp-section {
    padding: 32px 12px;
  }
}

/* Extra optimization for very small iPhones (under 375px) */
@media (max-width: 375px) {
  /* ===== HERO SECTION - ULTRA TIGHT FOR SMALL IPHONES ===== */
  .lp-hero {
    padding: 32px 12px 24px;
    gap: 8px;
  }

  /* Heading to stat gap: 8px */
  .lp-hero-title {
    margin-bottom: 8px;
  }

  /* Stat to subheading gap: 10px */
  .lp-hero-stat {
    margin-bottom: 10px;
  }

  /* Subheading to social pills gap: 12px */
  .lp-hero-sub {
    margin-bottom: 12px;
  }

  /* Social proof box - tighter */
  .lp-hero-social-proof {
    padding: 6px 8px;
    margin-bottom: 12px;
  }

  /* Buttons gap: 8px, reduced padding */
  .lp-hero-buttons {
    gap: 8px;
    margin: 8px 0;
  }

  .primary-btn,
  .secondary-btn {
    padding: 12px 16px;
    min-height: 44px;
    font-size: 14px;
  }

  /* Confidence builders - tighter spacing, ensure visibility */
  .lp-confidence-builders {
    display: flex;
    gap: 4px;
    margin: 8px 0;
  }

  .confidence-item {
    font-size: 12px;
  }

  .confidence-check {
    width: 13px;
    height: 13px;
  }
}

@media (min-width: 768px) {
  /* Desktop: 2x2 grid */
  .lp-section-header h2 {
    font-size: 28px;
  }

  .lp-section-header p {
    font-size: 15px;
  }

  .lp-hero-trust {
    font-size: 12px;
    margin-top: 12px;
  }

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

  .lp-stats-panel {
    padding: 40px 32px;
  }

  .lp-three-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-four-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-pricing-grid-single {
    grid-template-columns: minmax(0, 640px);
  }

  .lp-testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


@media (max-width: 720px) {
  .top-header-inner {
    flex-wrap: nowrap;
    gap: 12px;
    padding: 12px 16px;
  }

  .top-left {
    gap: 10px;
    flex-shrink: 0;
  }

  .avatar-circle {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .avatar-circle--clarity .avatar-letter {
    font-size: 17px;
  }

  .top-handle {
    font-size: 13px;
  }

  .top-sub {
    font-size: 10px;
  }

  .top-nav {
    display: none;
  }

  .top-cta-wrap {
    flex-shrink: 0;
    margin-left: auto;
  }

  .top-cta {
    padding: 10px 18px;
    font-size: 13px;
    white-space: nowrap;
  }

  .lp-section,
  .lp-hero {
    padding-inline: 16px;
  }
}
