/* ============================================================
   BuamsHR — New Landing Pages Design System
   Mental & Behavioral Health HR Platform
   Bootstrap 5 + Custom CSS
   Primary: White + Green (#16a34a family)
   ============================================================ */

/* ── Google Fonts ────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── CSS Custom Properties ───────────────────────────────────── */
:root {
  /* Brand greens */
  --green-50:  #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;

  /* Neutral palette */
  --gray-50:   #f8fafc;
  --gray-100:  #f1f5f9;
  --gray-200:  #e2e8f0;
  --gray-300:  #cbd5e1;
  --gray-400:  #94a3b8;
  --gray-500:  #64748b;
  --gray-600:  #475569;
  --gray-700:  #334155;
  --gray-800:  #1e293b;
  --gray-900:  #0f172a;

  /* Semantic */
  --primary:        var(--green-600);
  --primary-light:  var(--green-500);
  --primary-dark:   var(--green-700);
  --primary-bg:     var(--green-50);
  --primary-muted:  var(--green-100);

  /* Surface */
  --surface-white:  #ffffff;
  --surface-light:  var(--gray-50);
  --surface-muted:  var(--gray-100);
  --border-color:   var(--gray-200);

  /* Text */
  --text-primary:   var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-muted:     var(--gray-400);

  /* Typography */
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;

  /* Spacing scale */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm:  0.375rem;
  --radius-md:  0.5rem;
  --radius-lg:  0.75rem;
  --radius-xl:  1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadow */
  --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-green: 0 4px 14px 0 rgb(22 163 74 / 0.25);
  --shadow-green-lg: 0 10px 30px 0 rgb(22 163 74 / 0.3);

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;

  /* Navbar height */
  --navbar-height: 72px;
}

/* ── Base Reset & Global ─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--surface-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── Bootstrap Overrides ─────────────────────────────────────── */
.btn {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  line-height: 1;
}

.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn-primary-brand {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
  padding: 0.75rem 1.75rem;
  font-size: 0.9375rem;
  box-shadow: var(--shadow-green);
}

.btn-primary-brand:hover,
.btn-primary-brand:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  box-shadow: var(--shadow-green-lg);
  transform: translateY(-1px);
}

.btn-primary-brand:active {
  transform: translateY(0);
}

.btn-outline-brand {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.6875rem 1.75rem;
  font-size: 0.9375rem;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background-color: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 0.6875rem 1.25rem;
  font-size: 0.9375rem;
}

.btn-ghost:hover {
  background-color: var(--surface-muted);
  color: var(--text-primary);
}

.btn-white {
  background-color: #fff;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.75rem 1.75rem;
  font-size: 0.9375rem;
}

.btn-white:hover {
  background-color: var(--gray-50);
  border-color: var(--gray-300);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.btn-sm-brand {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg-brand {
  padding: 0.9375rem 2.25rem;
  font-size: 1.0625rem;
  border-radius: var(--radius-xl);
}

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}

.hero-headline .highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero-headline .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-400), var(--green-600));
  border-radius: var(--radius-full);
  opacity: 0.6;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 1rem;
  background-color: var(--primary-muted);
  color: var(--primary-dark);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.section-eyebrow svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

/* ── Layout Utilities ────────────────────────────────────────── */
.section-pad {
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

.section-pad-sm {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.section-pad-lg {
  padding-top: var(--space-32);
  padding-bottom: var(--space-32);
}

/* ── Navbar ──────────────────────────────────────────────────── */
.lp-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.lp-navbar.scrolled {
  border-bottom-color: var(--border-color);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

/* Inner row — controls the navbar height via padding */
.lp-navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  gap: 1rem;
}

/* ── Brand / Logo ── */
.lp-navbar .nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 0; /* kills inline-block gap under img */
}

.lp-navbar .nav-brand img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ── Desktop nav links ── */
.lp-navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-navbar .nav-links a {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  white-space: nowrap;
}

.lp-navbar .nav-links a:hover {
  color: var(--text-primary);
  background-color: var(--surface-muted);
}

.lp-navbar .nav-links a.active {
  color: var(--primary);
  font-weight: 600;
  background-color: var(--primary-muted);
}

/* ── Desktop CTA group ── */
.lp-navbar .nav-cta-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.lp-navbar .btn-nav-login {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  background: transparent;
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
  line-height: 1.2;
}

.lp-navbar .btn-nav-login:hover {
  color: var(--text-primary);
  border-color: var(--gray-300);
  background-color: var(--surface-muted);
}

.lp-navbar .btn-nav-trial {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  padding: 0.5rem 1.125rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  border: none;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 2px 6px rgb(22 163 74 / 0.3);
  white-space: nowrap;
  line-height: 1.2;
}

.lp-navbar .btn-nav-trial:hover {
  color: #fff;
  box-shadow: 0 4px 14px rgb(22 163 74 / 0.45);
  transform: translateY(-1px);
}

/* ── Hamburger toggler ── */
.lp-navbar .nav-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: transparent;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  flex-shrink: 0;
  padding: 0;
}

.lp-navbar .nav-toggler:hover {
  background-color: var(--surface-muted);
  border-color: var(--gray-300);
  color: var(--text-primary);
}

.lp-navbar .nav-toggler:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ── Mobile nav panel ── */
.lp-navbar .mobile-nav-panel {
  display: none;
  background-color: var(--surface-white);
  border-top: 1px solid var(--border-color);
}

.lp-navbar .mobile-nav-panel.show {
  display: block;
}

.lp-navbar .mobile-nav-inner {
  padding: 0.75rem 0 1rem;
}

.lp-navbar .mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.lp-navbar .mobile-nav-link:hover {
  color: var(--text-primary);
  background-color: var(--surface-muted);
}

.lp-navbar .mobile-nav-link.active {
  color: var(--primary);
  background-color: var(--primary-muted);
  font-weight: 600;
}

.lp-navbar .mobile-nav-divider {
  height: 1px;
  background-color: var(--border-color);
  margin: 0.625rem 0;
}

.lp-navbar .mobile-nav-cta {
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lp-navbar .mobile-nav-cta .btn-nav-login {
  justify-content: center;
  width: 100%;
}

.lp-navbar .mobile-nav-cta .btn-nav-trial {
  justify-content: center;
  width: 100%;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  border-radius: var(--radius-xl);
  font-size: 0.9375rem;
}

.lp-navbar .mobile-nav-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Hero Section ────────────────────────────────────────────── */
.lp-hero {
  background-color: var(--surface-white);
  padding-top: calc(var(--space-24) + 0px);
  padding-bottom: var(--space-24);
  position: relative;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, var(--green-50) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.lp-hero .hero-content {
  position: relative;
  z-index: 1;
}

.lp-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem 0.375rem 0.5rem;
  background-color: var(--surface-white);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-xs);
}

.lp-hero .hero-badge .badge-dot {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-hero .hero-badge .badge-dot svg {
  width: 12px;
  height: 12px;
  color: #fff;
}

.lp-hero .hero-description {
  font-size: 1.1875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: var(--space-8);
}

.lp-hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}

.lp-hero .hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.lp-hero .hero-trust .avatars {
  display: flex;
}

.lp-hero .hero-trust .avatar {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: 2px solid var(--surface-white);
  margin-left: -8px;
  background: linear-gradient(135deg, var(--green-300), var(--green-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--green-900);
  flex-shrink: 0;
}

.lp-hero .hero-trust .avatar:first-child {
  margin-left: 0;
}

/* Hero dashboard mockup */
.lp-hero .hero-visual {
  position: relative;
}

.lp-hero .dashboard-mockup {
  background: var(--surface-white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl), 0 0 0 1px var(--border-color);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform var(--transition-slow);
}

.lp-hero .dashboard-mockup:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

.lp-hero .mockup-topbar {
  background: var(--gray-900);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lp-hero .mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.lp-hero .mockup-dot.red   { background: #ff5f57; }
.lp-hero .mockup-dot.yellow { background: #ffbd2e; }
.lp-hero .mockup-dot.green  { background: #28c840; }

.lp-hero .mockup-url {
  flex: 1;
  background: var(--gray-700);
  border-radius: var(--radius-full);
  height: 22px;
  margin: 0 auto;
  max-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-hero .mockup-url span {
  font-size: 0.6875rem;
  color: var(--gray-400);
  font-family: var(--font-sans);
}

.lp-hero .mockup-body {
  background: var(--gray-50);
  padding: 1.25rem;
  min-height: 360px;
}

/* Floating stat cards on hero */
.lp-hero .stat-card-float {
  position: absolute;
  background: var(--surface-white);
  border-radius: var(--radius-xl);
  padding: 0.875rem 1.125rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.lp-hero .stat-card-float .stat-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-hero .stat-card-float .stat-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.lp-hero .stat-card-float .stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Logos / Social Proof Bar ────────────────────────────────── */
.lp-logos {
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--gray-50);
}

.lp-logos .logos-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: var(--space-6);
}

.lp-logos .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: opacity var(--transition-base), filter var(--transition-base);
  padding: 0.5rem 1.5rem;
}

.lp-logos .logo-item:hover {
  opacity: 0.7;
  filter: grayscale(50%);
}

.lp-logos .logo-placeholder {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-500);
  white-space: nowrap;
}

/* ── Feature Cards ───────────────────────────────────────────── */
.lp-features {
  background: var(--surface-white);
}

.feature-card {
  background: var(--surface-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  transition: all var(--transition-base);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-400), var(--green-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.feature-card:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card .feature-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-muted);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  transition: background-color var(--transition-base);
}

.feature-card .feature-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
  transition: color var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
}

.feature-card:hover .feature-icon svg {
  color: #fff;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ── How It Works Steps ──────────────────────────────────────── */
.lp-how {
  background: var(--surface-light);
}

.step-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  box-shadow: var(--shadow-green);
  position: relative;
  z-index: 1;
}

.step-connector {
  position: absolute;
  top: calc(var(--space-8) + 28px);
  left: 50%;
  right: -50%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-300), var(--green-100));
  z-index: 0;
}

.step-card:last-child .step-connector {
  display: none;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Mental Health Specific Section ─────────────────────────── */
.lp-mental-health {
  background: var(--surface-white);
}

.mental-health-card {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  border-radius: var(--radius-2xl);
  padding: var(--space-12);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.mental-health-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.mental-health-card::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.mental-health-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.mental-health-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

.mental-health-feature-list .check-icon {
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.mental-health-feature-list .check-icon svg {
  width: 13px;
  height: 13px;
  color: #fff;
}

/* Stat pills in the mental health section */
.stat-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: var(--space-6);
}

.stat-pill {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 1.125rem 1rem;
  text-align: center;
}

.stat-pill .stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-pill .stat-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* ── Testimonials ────────────────────────────────────────────── */
.lp-testimonials {
  background: var(--surface-light);
}

.testimonial-card {
  background: var(--surface-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  height: 100%;
  transition: all var(--transition-base);
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.testimonial-card .quote-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-muted);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.testimonial-card .quote-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.testimonial-card .testimonial-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--green-200), var(--green-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-800);
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-card .author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card .author-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.testimonial-card .author-role {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.testimonial-card .stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-4);
}

.testimonial-card .stars svg {
  width: 16px;
  height: 16px;
  color: #f59e0b;
  fill: #f59e0b;
}

/* ── Pricing Teaser ──────────────────────────────────────────── */
.lp-pricing-teaser {
  background: var(--surface-light);
}


.pricing-includes-label {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

/* Fee breakdown row */
.pricing-fee-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  margin-top: 0.5rem;
}

.pricing-fee-block {
  flex: 1;
  text-align: center;
}

.pricing-fee-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
}

.pricing-fee-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.04em;
}

.pricing-fee-value sup {
  font-size: 1.25rem;
  font-weight: 700;
  vertical-align: top;
  margin-top: 0.6rem;
  display: inline-block;
  color: var(--primary);
}

.pricing-fee-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.375rem;
  line-height: 1.4;
}

.pricing-fee-plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
  line-height: 1;
}

/* Calculator */
.pricing-calculator {
  background: var(--surface-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 1.125rem 1.25rem;
}

.calc-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  cursor: default;
}

.calc-label svg {
  color: var(--primary);
  flex-shrink: 0;
}

.calc-input-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.calc-input {
  width: 90px;
  padding: 0.5rem 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  background: var(--surface-white);
  outline: none;
  transition: border-color var(--transition-fast);
  text-align: center;
  flex-shrink: 0;
}

.calc-input:focus {
  border-color: var(--primary);
}

.calc-result {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.calc-result-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calc-result-value {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.03em;
  transition: color var(--transition-fast);
}

.calc-breakdown {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.625rem;
  line-height: 1.5;
}

.calc-breakdown strong {
  color: var(--primary-dark);
  font-weight: 700;
}

/* ── Pricing dynamic card — redesign ─────────────────────────── */
.pricing-dynamic-card {
  background: var(--surface-white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--green-100);
  overflow: hidden;
}

/* Green gradient header */
.pdc-header {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 100%);
  padding: 2.5rem 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pdc-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% -10%, rgba(255,255,255,0.08), transparent);
  pointer-events: none;
}

.pdc-plan-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.75rem;
}

.pdc-prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.25rem;
}

.pdc-price-block {
  text-align: center;
}

.pdc-price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}

.pdc-price-amount sup {
  font-size: 1.375rem;
  font-weight: 700;
  vertical-align: top;
  margin-top: 0.6rem;
  display: inline-block;
  color: var(--green-300);
}

.pdc-price-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin-top: 0.5rem;
  line-height: 1.4;
}

.pdc-price-divider {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-400);
  line-height: 1;
  flex-shrink: 0;
  margin-bottom: 1.25rem;
}

.pdc-header-note {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
}

/* White body */
.pdc-body {
  padding: 2rem 2.5rem 2.25rem;
}

/* Calculator block */
.pdc-calc {
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
}

.pdc-calc-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.pdc-calc-label svg {
  color: var(--primary);
  flex-shrink: 0;
}

.pdc-calc-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.pdc-calc-left {
  flex: 1;
}

.pdc-calc-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
}

.pdc-calc-input {
  width: 90px;
  padding: 0.625rem 0.75rem;
  border: 2px solid var(--green-300);
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  background: var(--surface-white);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  text-align: center;
  flex-shrink: 0;
}

.pdc-calc-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(22,163,74,0.15);
}

.pdc-calc-input-suffix {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.pdc-calc-formula {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pdc-calc-formula strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.pdc-calc-arrow {
  color: var(--green-400);
  flex-shrink: 0;
}

.pdc-calc-right {
  background: var(--surface-white);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-xl);
  padding: 1rem 1.5rem;
  text-align: center;
  flex-shrink: 0;
  min-width: 140px;
}

.pdc-calc-result-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.25rem;
}

.pdc-calc-result-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.03em;
  transition: color var(--transition-fast);
}

.pdc-calc-result-note {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Features section */
.pdc-features-wrap {
  margin-bottom: 2rem;
}

.pdc-features-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1.125rem;
}

.pdc-features-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
}

.pdc-feature-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.pdc-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-md);
  background: var(--primary-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

/* CTA row */
.pdc-cta-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-color);
}

.pdc-cta-left {
  flex-shrink: 0;
  width: 260px;
}

.pdc-cta-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.pdc-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.pdc-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.pdc-trust-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 767.98px) {
  .pdc-header {
    padding: 2rem 1.5rem 1.75rem;
  }

  .pdc-prices {
    gap: 1.25rem;
  }

  .pdc-price-amount {
    font-size: 2.75rem;
  }

  .pdc-body {
    padding: 1.5rem 1.25rem 1.75rem;
  }

  .pdc-calc-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .pdc-calc-right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
  }

  .pdc-calc-result-value {
    font-size: 1.625rem;
  }

  .pdc-features-grid {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }

  .pdc-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .pdc-cta-left {
    width: 100%;
  }

  .pdc-trust-badges {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
  }
}

/* ── CTA Banner ──────────────────────────────────────────────── */
.lp-cta {
  background: var(--surface-light);
}

.cta-card {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-16) var(--space-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
}

.cta-card p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto var(--space-8);
}

.btn-cta-white {
  background: #fff;
  color: var(--primary-dark);
  border: none;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cta-white:hover {
  background: var(--green-50);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2xl);
}

.btn-cta-outline {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 2px solid rgba(255,255,255,0.3);
  padding: 0.8125rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cta-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Footer ──────────────────────────────────────────────────── */
.lp-footer {
  background: var(--gray-900);
  color: var(--gray-400);
}

.lp-footer .footer-top {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid var(--gray-800);
}

.lp-footer .footer-brand .brand-logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  box-shadow: 0 4px 12px rgb(22 163 74 / 0.3);
}

.lp-footer .footer-brand .brand-logo-mark svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.lp-footer .footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

.lp-footer .footer-brand .brand-name span {
  color: var(--green-400);
}

.lp-footer .footer-tagline {
  font-size: 0.9375rem;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: var(--space-6);
}

.lp-footer .social-links {
  display: flex;
  gap: 0.75rem;
}

.lp-footer .social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-lg);
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.lp-footer .social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.lp-footer .social-link svg {
  width: 18px;
  height: 18px;
}

.lp-footer .footer-heading {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-5);
}

.lp-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.lp-footer .footer-links a {
  font-size: 0.9375rem;
  color: var(--gray-400);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.lp-footer .footer-links a:hover {
  color: var(--green-400);
}

.lp-footer .footer-newsletter {
  margin-top: var(--space-3);
}

.lp-footer .footer-newsletter p {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.lp-footer .newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.lp-footer .newsletter-form input {
  flex: 1;
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-lg);
  padding: 0.625rem 1rem;
  font-size: 0.9rem;
  color: #fff;
  outline: none;
  transition: border-color var(--transition-fast);
  font-family: var(--font-sans);
}

.lp-footer .newsletter-form input::placeholder {
  color: var(--gray-500);
}

.lp-footer .newsletter-form input:focus {
  border-color: var(--primary);
}

.lp-footer .newsletter-form button {
  background: var(--primary);
  border: none;
  border-radius: var(--radius-lg);
  padding: 0.625rem 1.125rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  font-family: var(--font-sans);
}

.lp-footer .newsletter-form button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.lp-footer .footer-bottom {
  padding: var(--space-6) 0;
}

.lp-footer .footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.lp-footer .copyright {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.lp-footer .copyright a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.lp-footer .copyright a:hover {
  color: var(--green-400);
}

.lp-footer .footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.lp-footer .footer-legal-links a {
  font-size: 0.875rem;
  color: var(--gray-500);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.lp-footer .footer-legal-links a:hover {
  color: var(--green-400);
}

.lp-footer .healthcare-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-400);
  letter-spacing: 0.02em;
}

.lp-footer .healthcare-badge svg {
  width: 14px;
  height: 14px;
}

/* ── Dashboard Mockup UI Elements ────────────────────────────── */
.mockup-sidebar {
  width: 180px;
  background: var(--gray-900);
  height: 100%;
  padding: 1rem 0.75rem;
  flex-shrink: 0;
}

.mockup-sidebar .nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.625rem;
  border-radius: 6px;
  margin-bottom: 2px;
  font-size: 0.625rem;
  color: var(--gray-400);
  font-family: var(--font-sans);
}

.mockup-sidebar .nav-item.active {
  background: rgba(22,163,74,0.15);
  color: var(--green-400);
}

.mockup-sidebar .nav-dot {
  width: 14px;
  height: 14px;
  background: var(--gray-700);
  border-radius: 4px;
  flex-shrink: 0;
}

.mockup-sidebar .nav-item.active .nav-dot {
  background: var(--green-600);
}

.mockup-main-content {
  flex: 1;
  padding: 1rem;
  background: var(--gray-50);
  overflow: hidden;
}

.mockup-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.875rem;
}

.mockup-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-900);
}

.mockup-search {
  width: 120px;
  height: 22px;
  background: var(--surface-white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
}

.mockup-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.875rem;
}

.mockup-kpi {
  background: var(--surface-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.625rem 0.75rem;
}

.mockup-kpi .kpi-val {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 2px;
}

.mockup-kpi .kpi-label {
  font-size: 0.5625rem;
  color: var(--text-muted);
}

.mockup-kpi .kpi-trend {
  font-size: 0.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 3px;
}

.mockup-chart {
  background: var(--surface-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem;
  height: 90px;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
  padding-top: 4px;
}

.chart-bar {
  flex: 1;
  background: var(--green-200);
  border-radius: 3px 3px 0 0;
  transition: background var(--transition-fast);
}

.chart-bar.active { background: var(--green-500); }

.mockup-list-item {
  background: var(--surface-white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mockup-avatar-sm {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--green-200), var(--green-400));
  flex-shrink: 0;
}

.mockup-text-sm {
  flex: 1;
}

.mockup-text-sm .line1 {
  height: 7px;
  background: var(--gray-200);
  border-radius: 3px;
  width: 70%;
  margin-bottom: 3px;
}

.mockup-text-sm .line2 {
  height: 6px;
  background: var(--gray-100);
  border-radius: 3px;
  width: 45%;
}

.mockup-status {
  width: 44px;
  height: 18px;
  border-radius: var(--radius-full);
  font-size: 0.4375rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-sans);
}

.mockup-status.green { background: var(--green-100); color: var(--green-700); }
.mockup-status.yellow { background: #fef3c7; color: #92400e; }
.mockup-status.gray { background: var(--gray-100); color: var(--gray-600); }

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.3); }
  50%       { box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-fade-up {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.animate-fade-up.delay-1 { animation-delay: 0.1s; }
.animate-fade-up.delay-2 { animation-delay: 0.2s; }
.animate-fade-up.delay-3 { animation-delay: 0.3s; }
.animate-fade-up.delay-4 { animation-delay: 0.4s; }
.animate-fade-up.delay-5 { animation-delay: 0.5s; }
.animate-fade-up.delay-6 { animation-delay: 0.6s; }

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-float-slow {
  animation: float 6s ease-in-out infinite;
}

.animate-float-slow.delay-1 { animation-delay: 1s; }
.animate-float-slow.delay-2 { animation-delay: 2s; }

/* Intersection Observer driven animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Utility Classes ─────────────────────────────────────────── */
.text-green { color: var(--primary) !important; }
.text-green-dark { color: var(--primary-dark) !important; }
.bg-green { background-color: var(--primary) !important; }
.bg-green-light { background-color: var(--primary-muted) !important; }

.gradient-text {
  background: linear-gradient(135deg, var(--green-500), var(--green-800));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge-green {
  background-color: var(--primary-muted);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  border: 1px solid var(--green-200);
}

.divider {
  height: 1px;
  background: var(--border-color);
}

/* ── Responsive Breakpoints ──────────────────────────────────── */
@media (max-width: 991.98px) {
  .lp-hero {
    padding-top: var(--space-16);
    padding-bottom: var(--space-12);
  }

  .lp-hero .dashboard-mockup {
    transform: none;
    margin-top: var(--space-10);
  }

  .section-pad {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }

  .mental-health-card {
    padding: var(--space-8);
  }

  .cta-card {
    padding: var(--space-10) var(--space-8);
  }
}

@media (max-width: 767.98px) {
  .lp-hero .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-hero .hero-actions .btn-primary-brand,
  .lp-hero .hero-actions .btn-outline-brand {
    width: 100%;
    justify-content: center;
  }

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

  .step-connector {
    display: none;
  }

  .lp-footer .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-footer .footer-legal-links {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .section-pad {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .cta-card {
    padding: var(--space-8) var(--space-5);
  }

  .cta-card h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .lp-hero .stat-card-float {
    display: none;
  }
}
