/* =========================================================
   GIS Landing Page Styles — LearnWell Design System
   Version: 2.0.0
   Based on: LearnWell Style Guide v1.1.2
   Reference: lw-lead-better-sprint.css component library

   Refactored from dark SaaS theme to LearnWell brand:
   - Lato font (no DM Sans/DM Mono)
   - Persian Blue #0033CC primary (no Tailwind #2563EB)
   - Light foundation with dark accent sections
   - 980px container, 18px card radius, soft shadows
   ========================================================= */

/* ── DESIGN TOKENS ── */
:root {
  --lw-blue-700: #002fb8;
  --lw-blue-600: #0033cc;
  --lw-blue-500: #1372d3;
  --lw-blue-100: #e9efff;
  --lw-neutral-0: #ffffff;
  --lw-neutral-50: #f6f7fb;
  --lw-neutral-100: #f2f3f4;
  --lw-neutral-200: #ecebea;
  --lw-text: #0c1115;
  --lw-text-secondary: #475569;
  --lw-muted: #6b7280;
  --lw-accent-yellow: #ffe530;
  --lw-shadow: 0 10px 24px rgba(12, 17, 21, 0.08);
  --lw-shadow-sm: 0 4px 12px rgba(12, 17, 21, 0.06);
  --lw-radius-lg: 18px;
  --lw-radius-md: 12px;
  --lw-section-pad: clamp(1.5rem, 3vw, 2.5rem);
  --lw-h1: clamp(2.2rem, 3.4vw, 3rem);
  --lw-h2: clamp(1.85rem, 2.6vw, 2.35rem);
  --lw-h3: clamp(1.45rem, 2vw, 1.75rem);
  --lw-body: clamp(1rem, 1.1vw, 1.08rem);
  --lw-small: 0.95rem;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── UTILITIES ── */
.lw-max-680 { max-width: 680px; }
.lw-max-640 { max-width: 640px; }
.lw-mb-25 { margin-bottom: 2.5rem; }
.lw-mb-2 { margin-bottom: 2rem; }
.lw-mb-15 { margin-bottom: 1.5rem; }
.lw-mb-1 { margin-bottom: 1rem; }
.lw-mb-075 { margin-bottom: 0.75rem; }
.lw-mt-15 { margin-top: 1.5rem; }
.lw-pad-15 { padding: 1.5rem; }
.lw-text-center { text-align: center; }

/* ── BODY ── */
body.lw-gis-landing {
  font-family: "Lato", "Poppins", Arial, sans-serif;
  background: var(--lw-neutral-0);
  color: var(--lw-text);
  overflow-x: hidden;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
body.lw-gis-landing h1,
body.lw-gis-landing h2,
body.lw-gis-landing h3,
body.lw-gis-landing h4 {
  font-family: "Lato", "Poppins", Arial, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--lw-text);
}

body.lw-gis-landing a {
  color: var(--lw-blue-600);
}

/* ── LOGO SHELL ── */
.lw-logo-shell {
  background: var(--lw-neutral-0);
  padding: 0.6rem 1.4rem;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(12, 17, 21, 0.12);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.lw-logo-shell img {
  max-width: 180px;
  height: auto;
  display: block;
}

.lw-logo-shell--hero {
  margin: 0 auto 1.25rem;
}

/* ── CONTAINER & SECTION ── */
.lw-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.lw-section {
  padding: var(--lw-section-pad) 0;
  background: var(--lw-neutral-0);
  position: relative;
  z-index: 1;
}

.lw-gis-landing .lw-section:nth-of-type(even) {
  background: var(--lw-neutral-50);
}

.lw-section--dark {
  background: var(--lw-text);
  color: var(--lw-neutral-0);
}

.lw-section--blue {
  background: linear-gradient(135deg, var(--lw-blue-700), var(--lw-blue-600));
  color: var(--lw-neutral-0);
}

/* ── KICKER (replaces .label-tag / .mono) ── */
.lw-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lw-muted);
  margin-bottom: 1rem;
}

.lw-kicker::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--lw-blue-600);
  border-radius: 50%;
}

.lw-section--blue .lw-kicker,
.lw-section--dark .lw-kicker {
  color: rgba(255, 255, 255, 0.75);
}

.lw-section--blue .lw-kicker::before,
.lw-section--dark .lw-kicker::before {
  background: rgba(255, 255, 255, 0.6);
}

.lw-kicker--inverse {
  color: rgba(255, 255, 255, 0.75);
}

.lw-kicker--inverse::before {
  background: rgba(255, 255, 255, 0.6);
}

.lw-kicker--centered {
  justify-content: center;
}

/* ── NAV ── */
.lw-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--lw-neutral-200);
  box-shadow: var(--lw-shadow-sm);
}

.lw-nav-brand img {
  height: 28px;
  width: auto;
  display: block;
}

.lw-nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lw-nav-link {
  font-size: 0.88rem;
  color: var(--lw-text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.lw-nav-link:hover {
  color: var(--lw-text);
}

.lw-nav .lw-btn {
  padding: 0.5rem 1.2rem;
  font-size: 0.82rem;
}

.lw-nav-proof {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lw-muted);
}

/* ── ANNOUNCE BAR ── */
.lw-announce-bar {
  margin-top: 64px;
  background: var(--lw-blue-600);
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  color: var(--lw-neutral-0);
  overflow: hidden;
}

.lw-announce-bar span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.lw-announce-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
}

.lw-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lw-neutral-0);
  animation: lw-pulse 2s ease-in-out infinite;
}

@keyframes lw-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.lw-announce-sep {
  color: rgba(255, 255, 255, 0.4);
}

.lw-announce-bar a {
  color: var(--lw-neutral-0);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 600;
  transition: border-color 0.2s;
}

.lw-announce-bar a:hover {
  border-bottom-color: var(--lw-neutral-0);
}

.lw-announce-bar strong {
  font-weight: 700;
}

/* ── BUTTONS ── */
.lw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--lw-blue-600);
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
  font-family: "Lato", "Poppins", Arial, sans-serif;
}

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

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

.lw-btn .arrow {
  transition: transform 0.2s;
}

.lw-btn:hover .arrow {
  transform: translateX(3px);
}

.lw-btn--cta-blue {
  background: linear-gradient(135deg, var(--lw-blue-600) 0%, var(--lw-blue-500) 100%);
  color: var(--lw-neutral-0) !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 14px rgba(0, 51, 204, 0.3);
}

.lw-btn--cta-blue:hover {
  box-shadow: 0 6px 20px rgba(0, 51, 204, 0.4);
  filter: brightness(1.05);
}

.lw-btn--hero-black {
  background: var(--lw-text);
  border-color: var(--lw-text);
  color: var(--lw-neutral-0) !important;
  box-shadow: 0 4px 14px rgba(12, 17, 21, 0.25);
}

.lw-btn--hero-black:hover {
  box-shadow: 0 6px 20px rgba(12, 17, 21, 0.35);
}

.lw-btn--block {
  width: 100%;
  display: flex;
  text-align: center;
}

.lw-btn--lg {
  font-size: 1.1rem;
  padding: 1.15rem 2.5rem;
}

.lw-text-link {
  font-size: 0.88rem;
  color: var(--lw-text-secondary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  padding-bottom: 1px;
}

.lw-text-link:hover {
  color: var(--lw-blue-600);
  border-bottom-color: var(--lw-blue-600);
}

.lw-text-link--inverse {
  color: rgba(255, 255, 255, 0.8);
}

.lw-text-link--inverse:hover,
.lw-text-link--inverse:focus {
  color: var(--lw-neutral-0);
  border-bottom-color: var(--lw-neutral-0);
}

/* On dark/blue sections */
.lw-section--blue .lw-text-link,
.lw-section--dark .lw-text-link {
  color: rgba(255, 255, 255, 0.7);
}

.lw-section--blue .lw-text-link:hover,
.lw-section--dark .lw-text-link:hover {
  color: var(--lw-neutral-0);
  border-bottom-color: var(--lw-neutral-0);
}

/* ── GRID ── */
.lw-grid {
  display: grid;
  gap: 1.5rem;
}

.lw-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.lw-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.lw-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ── CARD ── */
.lw-card {
  background: var(--lw-neutral-0);
  border: 2px solid var(--lw-neutral-200);
  border-radius: var(--lw-radius-lg);
  padding: 1.6rem;
  box-shadow: 6px 10px 18px rgba(12, 17, 21, 0.06);
  transition: box-shadow 0.2s;
}

.lw-card:hover {
  box-shadow: 6px 10px 18px rgba(12, 17, 21, 0.1);
}

.lw-card--framework {
  border-left: 4px solid var(--lw-blue-600);
}

.lw-card--featured {
  border: 2px solid var(--lw-blue-600);
  box-shadow: var(--lw-shadow);
}

/* ── HERO KICKER (tighter to fit single row) ── */
.lw-hero--gis .lw-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

/* ── HERO HEADLINE BOX ── */
.lw-hero-headline-box {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--lw-radius-md);
  padding: 1.15rem 1.3rem;
  margin-bottom: 0;
}

/* ── HERO (2-column with pricing card) ── */
.lw-hero--gis {
  background: linear-gradient(135deg, var(--lw-blue-700), var(--lw-blue-600));
  color: var(--lw-neutral-0);
  padding: 10px 0 10px;
  margin-bottom: 5px;
  position: relative;
  overflow: hidden;
}

.lw-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.25rem;
  align-items: stretch;
}

.lw-hero-left,
.lw-hero-right {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.lw-hero-message {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--lw-radius-lg);
  padding: 0.9rem 1rem 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: space-between;
  height: 100%;
}

.lw-hero-message .lw-kicker {
  margin-bottom: 0;
}

.lw-hero--gis h1 {
  font-size: clamp(1.58rem, 2.9vw, 2.38rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.028em;
  margin-bottom: 0;
  color: var(--lw-text);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.14);
}

.lw-hero-headline-line {
  display: block;
  line-height: 1.04;
}

.lw-hero-headline-line + .lw-hero-headline-line {
  margin-top: 0;
}

.lw-hero--gis h1 em {
  font-style: italic;
  color: var(--lw-text);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.14);
  display: inline;
  line-height: inherit;
  padding-top: 0;
  vertical-align: baseline;
}

.lw-hero-subhead {
  font-size: 1.03rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  margin-bottom: 0;
  max-width: 500px;
}

.lw-fit-quick {
  max-width: 520px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--lw-radius-md);
  padding: 0.85rem 1rem;
}

.lw-fit-quick-title {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.45rem;
}

.lw-fit-quick ul {
  margin: 0;
  padding-left: 1rem;
}

.lw-fit-quick li {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  line-height: 1.45;
  margin-bottom: 0.25rem;
}

.lw-roi-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  margin-bottom: 2rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
}

.lw-roi-strip strong {
  color: var(--lw-neutral-0);
  font-weight: 700;
}

.lw-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.72rem;
  padding: 3px 0;
  align-items: center;
}

.lw-hero-action-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  gap: 0;
  flex-wrap: nowrap;
  background: var(--lw-neutral-50);
  border: 1px solid var(--lw-neutral-200);
  border-radius: 999px;
  padding: 0.3rem 0.35rem;
}

.lw-hero-action-row .lw-hero-sep {
  color: rgba(12, 17, 21, 0.25);
  font-size: 0.8rem;
  padding: 0 0.3rem;
}

.lw-hero-outline-link {
  padding-left: 10px;
  padding-right: 0.3rem;
}

.lw-hero-right .lw-hero-sep {
  color: rgba(12, 17, 21, 0.35);
}

.lw-hero-right .lw-hero-action-row .lw-text-link {
  color: var(--lw-blue-700);
  border-bottom-color: transparent;
  font-size: 0.9rem;
  font-weight: 600;
}

.lw-hero-right .lw-hero-action-row .lw-text-link:hover {
  color: var(--lw-blue-600);
}

.lw-hero-right {
  display: flex;
  flex-direction: column;
}

.lw-fit-quick--hero-right {
  max-width: none;
  margin: 0.6rem 0 0.45rem;
  background: var(--lw-neutral-50);
  border: 1px solid var(--lw-neutral-200);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
}

.lw-fit-quick--hero-right .lw-fit-quick-title {
  color: var(--lw-text-secondary);
}

.lw-fit-quick--hero-right li {
  color: var(--lw-text-secondary);
}

/* ── HERO PRICING CARD (white on blue) ── */
.lw-hero-pricing {
  background: var(--lw-neutral-0);
  border-radius: var(--lw-radius-lg);
  padding: 1rem 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  color: var(--lw-text);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.lw-hero-pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lw-blue-600), var(--lw-blue-500));
}

.lw-pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  background: var(--lw-blue-100);
  border: 1px solid rgba(0, 51, 204, 0.15);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lw-blue-700);
  margin-bottom: 0.75rem;
  white-space: nowrap;
}

.lw-pricing-numbers {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.lw-price-main {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--lw-text);
  letter-spacing: -0.04em;
  line-height: 1;
}

.lw-price-was {
  font-size: 1.05rem;
  color: var(--lw-muted);
  text-decoration: line-through;
}

.lw-price-savings {
  display: inline-flex;
  gap: 0.3rem;
  padding: 0.25rem 0.6rem;
  background: #dcfce7;
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #16a34a;
  margin-left: 0.35rem;
}

.lw-price-cycle {
  font-size: 0.82rem;
  color: var(--lw-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.9rem;
  font-weight: 500;
}

.lw-divider {
  height: 1px;
  background: var(--lw-neutral-200);
  margin: 1rem 0;
}

.lw-card-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0;
}

.lw-card-includes-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lw-muted);
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.lw-card-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--lw-text-secondary);
  line-height: 1.45;
  background: var(--lw-neutral-50);
  border: 1px solid var(--lw-neutral-200);
  border-radius: 12px;
  padding: 0.5rem 0.68rem;
}

.lw-card-includes li::before {
  content: '\2713';
  color: var(--lw-blue-600);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.lw-hero-left .lw-text-link {
  color: rgba(255, 255, 255, 0.9);
}

.lw-hero-left .lw-text-link:hover {
  color: var(--lw-neutral-0);
  border-bottom-color: var(--lw-neutral-0);
}

.lw-hero--gis .lw-roi-strip {
  margin-top: 3px;
}

.lw-hero-pricing > .lw-btn--block {
  margin-top: 3px;
  margin-bottom: 3px;
}

.lw-hero-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.lw-hero-proof-row--micro {
  margin: 0.35rem 0 0.65rem;
}

.lw-hero-proof-row--micro .lw-hero-proof-item {
  padding: 0.45rem 0.55rem;
}

.lw-hero-proof-row--micro .lw-hero-proof-item strong {
  font-size: calc(0.8rem + 2px);
}

.lw-hero-proof-row--micro .lw-hero-proof-item span {
  font-size: calc(0.68rem + 2px);
}

.lw-hero-proof-item {
  border: 1px solid var(--lw-neutral-200);
  border-radius: 12px;
  background: var(--lw-neutral-50);
  padding: 0.5rem 0.65rem;
}

.lw-hero-proof-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--lw-text);
  line-height: 1.1;
  margin-bottom: 0.15rem;
}

.lw-hero-proof-item span {
  display: block;
  font-size: 0.72rem;
  color: var(--lw-muted);
  line-height: 1.35;
}

/* ── HERO CENTERED LAYOUT (simplified hero) ── */
.lw-hero-centered {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0 1.5rem;
}

.lw-hero-centered .lw-kicker {
  justify-content: center;
}

.lw-glass-panel {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--lw-radius-md);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.lw-hero-headline-panel {
  max-width: 860px;
  margin: 0 auto 0.9rem;
  padding: 0.8rem 1rem 0.9rem;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.lw-hero-headline-panel .lw-hero-primary-cta {
  margin: 0.9rem 0 0;
}

.lw-hero-headline-panel .lw-hero-meta {
  margin-top: 0.65rem;
  margin-bottom: 0;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--lw-text-secondary);
  text-shadow: none;
}

.lw-hero-centered .lw-hero-subhead {
  max-width: 760px;
  margin: 0 auto 1.15rem;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.lw-hero-subhead-line {
  display: block;
  white-space: normal;
}

.lw-hero-subhead-line + .lw-hero-subhead-line {
  margin-top: 0;
}

.lw-hero-centered .lw-hero-proof-row {
  justify-content: center;
  max-width: 860px;
  margin: 0.65rem auto 1.35rem;
}

.lw-hero-proof-band {
  padding: 0.55rem 0.7rem;
  background: rgba(12, 17, 21, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.lw-hero-centered .lw-hero-proof-item {
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  padding: 0.35rem 0.45rem;
}

.lw-hero-proof-row .lw-hero-proof-item:last-child {
  border-right: 0;
}

.lw-hero-centered .lw-hero-proof-item strong {
  color: var(--lw-neutral-0);
}

.lw-hero-centered .lw-hero-proof-item span {
  color: rgba(255, 255, 255, 0.75);
}

/* ── HERO CTA GROUP ── */
.lw-hero-cta-group {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding: 0.4rem 0.55rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.lw-hero-primary-cta {
  margin-bottom: 1rem;
}

.lw-hero-primary-cta .lw-btn {
  min-width: min(100%, 420px);
}

.lw-hero-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.lw-hero-cta-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.lw-hero-cta-link--sun-black {
  background: #ffe530;
  border-color: rgba(255, 229, 48, 0.98);
  color: #0c1115 !important;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.lw-hero-cta-link--sun-black:hover {
  background: #fff06a;
  border-color: #fff06a;
  color: #0c1115 !important;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

.lw-audit-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 860px;
  margin: 1rem auto 0;
}

.lw-audit-flow-step {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  text-align: left;
  padding: 0.8rem 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
}

.lw-audit-flow-n {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--lw-blue-700);
  background: rgba(255, 255, 255, 0.9);
}

.lw-audit-flow-copy strong,
.lw-audit-flow-copy span {
  display: block;
}

.lw-audit-flow-copy strong {
  font-size: calc(0.8rem + 2px);
  color: var(--lw-neutral-0);
  margin-bottom: 0.15rem;
}

.lw-audit-flow-copy span {
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.lw-hero-link {
  color: var(--lw-neutral-0);
  font-size: 1.05rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 0.35rem 0.4rem;
  transition: border-color 0.2s, color 0.2s;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.lw-hero-link:hover {
  color: var(--lw-neutral-0);
  border-bottom-color: var(--lw-neutral-0);
}

.lw-hero-link-sep {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

/* ── NAV CTA TEXT LINK ── */
.lw-nav-cta-link {
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.lw-nav-cta-link:hover {
  border-bottom-color: var(--lw-blue-600);
}

.lw-link-offset {
  margin-left: 0.35rem;
}

/* ── CTA STRIP TEXT LINKS ── */
.lw-cta-strip-link {
  color: var(--lw-neutral-0);
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.lw-cta-strip-link:hover {
  color: var(--lw-neutral-0);
  border-bottom-color: var(--lw-neutral-0);
}

.lw-cta-strip--light .lw-cta-strip-link {
  color: var(--lw-blue-600);
  border-bottom-color: rgba(0, 51, 204, 0.3);
}

.lw-cta-strip--light .lw-cta-strip-link:hover {
  color: var(--lw-blue-700);
  border-bottom-color: var(--lw-blue-600);
}

/* ── NOT YET CTA LINK ── */
.lw-notyet-cta-link {
  font-size: 1.1rem;
  font-weight: 700;
}

.lw-calc-cta .lw-hero-cta-link {
  min-width: min(100%, 360px);
}

.lw-cta-link-row .lw-hero-cta-link,
.lw-final-primary-cta {
  min-width: min(100%, 420px);
}

.lw-final-primary-cta {
  width: min(100%, 420px);
}

/* ── STICKY BAR CTA LINK ── */
.lw-sticky-cta-link {
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ── HERO META LINE ── */
.lw-hero-meta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.01em;
}

.lw-h2-standard {
  font-size: var(--lw-h2);
}

/* ── PROOF SNAPSHOT ── */
.lw-proof-snapshot {
  padding: 1.5rem 0 0.75rem;
  background: linear-gradient(180deg, var(--lw-neutral-50) 0%, var(--lw-neutral-0) 100%);
}

.lw-proof-snapshot-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: stretch;
}

.lw-proof-snapshot-card,
.lw-mini-case-card {
  background: var(--lw-neutral-0);
  border: 1px solid var(--lw-neutral-200);
  border-radius: var(--lw-radius-lg);
  box-shadow: var(--lw-shadow-sm);
  padding: 1.25rem;
}

.lw-proof-snapshot-card h2,
.lw-mini-case-card h3 {
  margin-bottom: 0.85rem;
}

.lw-proof-journey {
  display: block;
  width: 100%;
  min-height: 246px;
  padding: 0.95rem;
  background: linear-gradient(180deg, #f8fbff 0%, #f2f6ff 100%);
  border: 1px solid #dbe5ff;
  border-radius: 16px;
}

.lw-proof-journey-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.lw-proof-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lw-proof-state--before {
  color: #991b1b;
  background: #fee2e2;
}

.lw-proof-state--after {
  color: #166534;
  background: #dcfce7;
}

.lw-proof-journey-row + .lw-proof-journey-row {
  margin-top: 0.75rem;
}

.lw-proof-journey-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--lw-text);
  margin-bottom: 0.35rem;
}

.lw-proof-journey-track {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.55rem;
}

.lw-proof-journey-arrow {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lw-blue-600);
}

.lw-proof-journey-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  width: max(56px, calc(var(--w) * 1%));
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.lw-proof-journey-bar--before,
.lw-proof-journey-bar--reverse {
  color: #991b1b;
  background: linear-gradient(90deg, #fee2e2 0%, #fecaca 100%);
}

.lw-proof-journey-bar--after {
  color: #166534;
  background: linear-gradient(90deg, #dcfce7 0%, #bbf7d0 100%);
}

.lw-proof-journey-bar--gain {
  color: #0f766e;
  background: linear-gradient(90deg, #ccfbf1 0%, #99f6e4 100%);
}

.lw-proof-journey-note {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--lw-text-secondary);
}

.lw-proof-metrics {
  display: grid;
  gap: 0.75rem;
}

.lw-proof-metric {
  padding: 0.85rem 0.95rem;
  background: var(--lw-neutral-50);
  border: 1px solid var(--lw-neutral-200);
  border-radius: var(--lw-radius-md);
}

.lw-proof-metric strong {
  display: block;
  font-size: 1rem;
  color: var(--lw-text);
  margin-bottom: 0.2rem;
}

.lw-proof-metric span {
  display: block;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--lw-text-secondary);
}

.lw-mini-case-label {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--lw-blue-100);
  color: var(--lw-blue-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lw-mini-case-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--lw-text-secondary);
  margin-top: 0.75rem;
}

.lw-note-muted {
  color: var(--lw-muted);
  font-size: 0.88rem;
}

.lw-offer-proof-row {
  margin-top: 1rem;
}

.lw-offer-proof-row .lw-hero-proof-item {
  background: var(--lw-neutral-0);
  border-color: rgba(0, 51, 204, 0.12);
  box-shadow: 0 10px 22px rgba(12, 17, 21, 0.08);
}

.lw-offer-card .lw-btn {
  white-space: normal;
  line-height: 1.3;
  padding: 0.95rem 1.05rem;
  font-size: 0.9rem;
}

.lw-cta-link-row {
  margin-top: 1.5rem;
  text-align: center;
}

.lw-micro-copy {
  margin-top: 0.75rem;
  color: var(--lw-muted);
  font-size: 0.85rem;
}

/* ── CTA STRIP (between sections) ── */
.lw-cta-strip {
  background: var(--lw-blue-600);
  padding: 1.1rem 1.25rem;
}

.lw-cta-strip--light {
  background: var(--lw-blue-100);
}

.lw-cta-strip--light .lw-cta-strip-text {
  color: var(--lw-text);
}

.lw-cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.lw-cta-strip-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lw-neutral-0);
}

.lw-not-fit {
  margin-top: 1.5rem;
  border: 2px solid var(--lw-neutral-200);
  border-radius: var(--lw-radius-lg);
  padding: 1.2rem 1.4rem;
  background: var(--lw-neutral-50);
}

.lw-not-fit h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--lw-text);
}

.lw-not-fit p {
  font-size: 0.9rem;
  color: var(--lw-text-secondary);
  margin-bottom: 0.6rem;
}

.lw-not-fit ul {
  margin: 0;
  padding-left: 1rem;
}

.lw-not-fit li {
  margin-bottom: 0.35rem;
  color: var(--lw-text-secondary);
  font-size: 0.88rem;
}

.lw-spots-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.12rem 0 0.2rem;
  padding: 3px 0;
}

.lw-spots-count {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lw-text);
  font-weight: 700;
}

.lw-spots-count strong {
  color: var(--lw-text);
}

.lw-spots-track {
  width: 118px;
  height: 8px;
  background: #d1d5db;
  border-radius: 8px;
  overflow: hidden;
}

.lw-spots-fill {
  height: 100%;
  background: var(--lw-blue-700);
  border-radius: 8px;
  width: 0;
  animation: lw-fill-spots 1.2s ease forwards 0.6s;
}

@keyframes lw-fill-spots { to { width: 20%; } }

.lw-card-guarantee {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--lw-muted);
}

/* ── STATS BAR ── */
.lw-stats-bar {
  background: var(--lw-text);
  padding: 1.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.lw-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 2.5rem;
}

.lw-stat-item + .lw-stat-item {
  border-left: 8px solid rgba(255, 255, 255, 0.15);
}

.lw-stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--lw-neutral-0);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.lw-stat-accent {
  color: var(--lw-neutral-0);
}

.lw-stat-desc {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  font-weight: 500;
}

/* ── SECTION HEADINGS ── */
.lw-section-header {
  margin-bottom: 2.5rem;
}

.lw-section-header h2 {
  font-size: var(--lw-h2);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--lw-text);
  margin-bottom: 0.75rem;
}

.lw-section-header h2 em {
  font-style: italic;
  color: var(--lw-blue-600);
}

.lw-section-header p,
.lw-section-sub {
  font-size: var(--lw-body);
  line-height: 1.75;
  color: var(--lw-text-secondary);
  max-width: 640px;
}

.lw-program-intro,
.lw-outcomes-intro,
.lw-body-wide {
  max-width: 656px;
}

#problem .lw-body-wide {
  max-width: 666px;
}

#outcomes .lw-outcomes-intro {
  max-width: 674px;
}

/* Dark/blue section headings */
.lw-section--dark .lw-section-header h2,
.lw-section--blue .lw-section-header h2 {
  color: var(--lw-neutral-0);
}

.lw-section--dark .lw-section-header p,
.lw-section--blue .lw-section-header p {
  color: rgba(255, 255, 255, 0.8);
}

/* ── PROBLEM CARDS ── */
.lw-problem-card {
  padding: 1.75rem;
  background: #fff5f5;
  border: 1px solid #ffd7d7;
  box-shadow: 0 10px 22px rgba(185, 28, 28, 0.06);
}

.lw-problem-card .lw-problem-n {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lw-blue-600);
  margin-bottom: 0.6rem;
}

.lw-problem-card .lw-problem-n::before {
  content: '\26D4';
  display: inline-block;
  margin-right: 0.38rem;
  color: #dc2626;
  font-size: 0.95rem;
  transform: translateY(1px);
}

.lw-problem-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
  color: var(--lw-text);
  line-height: 1.3;
}

.lw-problem-card p {
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--lw-text-secondary);
}

/* ── MODULE CARDS ── */
.lw-program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.lw-module-card {
  padding: 1.5rem;
}

.lw-module-qtr {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lw-blue-600);
  margin-bottom: 0.5rem;
}

.lw-module-focus {
  font-size: 1rem;
  font-weight: 600;
  color: var(--lw-text);
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.lw-module-topics {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lw-module-topics li {
  font-size: 0.85rem;
  color: var(--lw-muted);
  padding-left: 0.85rem;
  position: relative;
}

.lw-module-topics li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--lw-blue-600);
  font-size: 0.8rem;
}

.lw-module-card--future {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.15rem 1.5rem;
  background: linear-gradient(135deg, #f6f9ff 0%, #eef3ff 100%);
  border: 1px solid rgba(0, 51, 204, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.lw-module-card--future .lw-module-qtr,
.lw-module-card--future .lw-module-focus {
  margin-bottom: 0;
}

.lw-module-card--future .lw-module-qtr {
  min-width: 110px;
}

.lw-module-card--future .lw-module-focus {
  min-width: 170px;
}

.lw-module-narrative {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--lw-text-secondary);
}

/* ── TIMELINE ── */
.lw-timeline-strip {
  background: var(--lw-neutral-50);
  border: 2px solid var(--lw-neutral-200);
  border-radius: var(--lw-radius-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
}

.lw-timeline-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lw-muted);
  margin-bottom: 1.25rem;
}

.lw-timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.lw-timeline-steps::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--lw-blue-600), var(--lw-neutral-200), var(--lw-neutral-200), var(--lw-neutral-200));
}

.lw-timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 0 0.5rem;
}

.lw-t-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--lw-neutral-200);
  background: var(--lw-neutral-50);
  flex-shrink: 0;
  z-index: 1;
}

.lw-t-dot--active {
  background: var(--lw-blue-600);
  border-color: var(--lw-blue-600);
  box-shadow: 0 0 0 3px var(--lw-blue-100);
}

.lw-t-week {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lw-blue-600);
}

.lw-t-event {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lw-text);
  line-height: 1.3;
}

.lw-t-sub {
  font-size: 0.78rem;
  color: var(--lw-muted);
  line-height: 1.45;
}

/* ── SOLUTION STATS ── */
.lw-solution-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lw-solution-stat {
  background: var(--lw-neutral-0);
  border: 2px solid var(--lw-neutral-200);
  border-radius: var(--lw-radius-lg);
  padding: 1.75rem;
  transition: box-shadow 0.2s;
}

.lw-solution-stat:hover {
  box-shadow: var(--lw-shadow);
}

.lw-s-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--lw-blue-600);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.lw-s-desc {
  font-size: 0.88rem;
  color: var(--lw-text-secondary);
  line-height: 1.6;
}

/* ── AI ADVANTAGE SECTION ── */
.lw-ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.lw-ai-left p {
  font-size: 0.95rem;
  line-height: 1.78;
  color: var(--lw-text-secondary);
  margin-bottom: 1rem;
}

.lw-ai-left p em {
  font-style: italic;
  color: var(--lw-blue-600);
}

.lw-ai-callout {
  background: var(--lw-blue-100);
  border: 1px solid rgba(0, 51, 204, 0.12);
  border-left: 4px solid var(--lw-blue-600);
  border-radius: var(--lw-radius-md);
  padding: 1.1rem 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--lw-text-secondary);
  line-height: 1.65;
}

.lw-ai-callout strong {
  color: var(--lw-text);
}

.lw-solution-stats .lw-ai-callout {
  margin-top: 0;
}

/* AI skill cards (full-width, 3-col) */
.lw-ai-skills-title {
  font-size: var(--lw-h3);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lw-text);
  margin: 2.5rem 0 1.25rem;
  text-align: center;
}

.lw-ai-skills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.lw-ai-skill {
  background: var(--lw-neutral-50);
  border: 1px solid var(--lw-neutral-200);
  border-radius: var(--lw-radius-md);
  padding: 1.1rem 1.25rem;
  transition: box-shadow 0.2s;
}

.lw-ai-skill:hover {
  box-shadow: var(--lw-shadow-sm);
}

.lw-ai-skill-icon {
  font-size: 2.15rem;
  margin-bottom: 0.5rem;
}

.lw-ai-skills--centered .lw-ai-skill {
  text-align: center;
}

/* ── AI PROGRESSIVE DISCLOSURE ── */
.lw-ai-details {
  margin-top: 1.5rem;
}

.lw-solution-stats .lw-ai-details {
  grid-column: span 2;
  margin-top: 0;
}

.lw-ai-details-toggle {
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lw-blue-600);
  padding: 0.75rem 1rem;
  background: var(--lw-blue-100);
  border: 1px solid rgba(0, 51, 204, 0.12);
  border-radius: var(--lw-radius-md);
  list-style: none;
  transition: background 0.2s;
}

.lw-ai-details-toggle:hover {
  background: rgba(0, 51, 204, 0.1);
}

.lw-ai-details-toggle::-webkit-details-marker {
  display: none;
}

.lw-ai-details[open] .lw-ai-details-toggle {
  border-radius: var(--lw-radius-md) var(--lw-radius-md) 0 0;
  margin-bottom: 0;
}

.lw-ai-details[open] .lw-ai-right-wrap {
  border: 1px solid rgba(0, 51, 204, 0.12);
  border-top: none;
  border-radius: 0 0 var(--lw-radius-md) var(--lw-radius-md);
  padding-top: 0.5rem;
}

.lw-ai-skill-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lw-text);
  margin-bottom: 0.25rem;
}

.lw-ai-skill-desc {
  font-size: 0.82rem;
  color: var(--lw-muted);
  line-height: 1.55;
}

/* AI modules (right column) */
.lw-ai-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lw-ai-right-header {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lw-muted);
  padding: 1rem 1.5rem;
  border: 2px solid var(--lw-neutral-200);
  border-bottom: none;
  border-radius: var(--lw-radius-lg) var(--lw-radius-lg) 0 0;
  background: var(--lw-neutral-50);
}

.lw-ai-modules-list {
  border: 2px solid var(--lw-neutral-200);
  border-radius: 0 0 var(--lw-radius-lg) var(--lw-radius-lg);
  overflow: hidden;
}

.lw-ai-module {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--lw-neutral-200);
  transition: background 0.2s;
  background: var(--lw-neutral-0);
}

.lw-ai-module:last-child {
  border-bottom: none;
}

.lw-ai-module:hover {
  background: var(--lw-neutral-50);
}

.lw-ai-module-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lw-blue-600);
  margin-bottom: 0.3rem;
}

.lw-ai-module-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lw-text);
  margin-bottom: 0.35rem;
}

.lw-ai-module-desc {
  font-size: 0.85rem;
  color: var(--lw-text-secondary);
  line-height: 1.55;
}

/* ── WHO / ROLE CARDS ── */
.lw-role-card {
  background: var(--lw-neutral-0);
  border: 2px solid var(--lw-neutral-200);
  border-left: 4px solid var(--lw-neutral-200);
  border-radius: var(--lw-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--lw-shadow-sm);
  transition: box-shadow 0.2s;
}

.lw-role-card:hover {
  box-shadow: var(--lw-shadow);
}

.lw-role-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--lw-blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 1rem;
}

.lw-role-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--lw-text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.lw-role-card p {
  font-size: 0.88rem;
  color: var(--lw-text-secondary);
  line-height: 1.72;
}

/* ── CREDIBILITY ── */
.lw-cred-headshot {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.25rem;
  box-shadow: var(--lw-shadow-sm);
}

.lw-cred-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lw-cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  margin-bottom: 3rem;
}

.lw-cred-text p {
  font-size: 0.95rem;
  line-height: 1.78;
  color: var(--lw-text-secondary);
  margin-bottom: 1rem;
}

.lw-cred-callout {
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--lw-blue-600);
  background: var(--lw-blue-100);
  border-radius: var(--lw-radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--lw-text);
  margin-top: 1.5rem;
  line-height: 1.55;
  font-style: italic;
  position: relative;
}

.lw-cred-callout::before {
  content: '\201C';
  position: absolute;
  top: 0.7rem;
  left: 0.95rem;
  font-size: 2.35rem;
  line-height: 1;
  color: rgba(0, 51, 204, 0.28);
  font-style: normal;
  font-weight: 700;
}

/* Credibility list */
.lw-cred-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 2px solid var(--lw-neutral-200);
  border-radius: var(--lw-radius-lg);
  overflow: hidden;
}

.lw-cred-item {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--lw-neutral-200);
  transition: background 0.2s;
  background: var(--lw-neutral-0);
}

.lw-cred-item:last-child {
  border-bottom: none;
}

.lw-cred-item:hover {
  background: var(--lw-neutral-50);
}

.lw-cred-item-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lw-blue-600);
  margin-bottom: 0.35rem;
}

.lw-cred-item p {
  font-size: 0.88rem;
  color: var(--lw-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Credibility stats */
.lw-cred-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lw-cred-stat {
  background: var(--lw-neutral-0);
  border: 2px solid var(--lw-neutral-200);
  border-radius: var(--lw-radius-lg);
  padding: 1.75rem;
  transition: box-shadow 0.2s;
}

.lw-cred-stat:hover {
  box-shadow: var(--lw-shadow);
}

.lw-cred-stat-num {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--lw-blue-600);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.lw-cred-stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lw-muted);
  margin-bottom: 0.4rem;
}

.lw-cred-stat-desc {
  font-size: 0.85rem;
  color: var(--lw-text-secondary);
  line-height: 1.55;
}

/* ── TESTIMONIALS / QUOTE CARDS ── */
.lw-quote-card {
  background: linear-gradient(180deg, #f8faff 0%, var(--lw-neutral-0) 100%);
  border: 1px solid #dbe5ff;
  border-top: 3px solid var(--lw-blue-600);
  border-radius: var(--lw-radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 8px 18px rgba(12, 17, 21, 0.06);
}

.lw-quote-card:hover {
  box-shadow: 0 12px 24px rgba(12, 17, 21, 0.1);
}

.lw-quote-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--lw-text-secondary);
  font-style: italic;
  flex: 1;
  position: relative;
  padding-left: 1.55rem;
}

.lw-quote-text::before {
  content: '\201C';
  color: #7c93d8;
  font-size: 2.35rem;
  line-height: 1;
  position: absolute;
  left: 0;
  top: -0.05rem;
  font-style: normal;
  font-weight: 700;
}

.lw-grid.lw-grid--3 .lw-quote-card:nth-child(3n + 1) .lw-quote-text::before,
.lw-grid.lw-grid--3.lw-mt-15 .lw-quote-card:nth-child(3n + 1) .lw-quote-text::before {
  transform: scale(0.97);
}

.lw-grid.lw-grid--3 .lw-quote-card:nth-child(3n + 2) .lw-quote-text::before,
.lw-grid.lw-grid--3.lw-mt-15 .lw-quote-card:nth-child(3n + 2) .lw-quote-text::before {
  transform: scale(1.02);
}

.lw-grid.lw-grid--3 .lw-quote-card:nth-child(3n + 3) .lw-quote-text::before,
.lw-grid.lw-grid--3.lw-mt-15 .lw-quote-card:nth-child(3n + 3) .lw-quote-text::before {
  transform: scale(1.05);
}

.lw-outcomes-heading {
  font-size: calc(var(--lw-h2) - 6px);
}

.lw-quote-attribution {}

.lw-quote-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lw-text);
}

.lw-quote-title {
  font-size: 0.82rem;
  color: var(--lw-muted);
}

.lw-quote-company {
  display: inline-flex;
  padding: 0.15rem 0.55rem;
  background: var(--lw-blue-100);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lw-blue-600);
  margin-top: 0.25rem;
}

.lw-testi-note {
  font-size: 0.8rem;
  color: var(--lw-muted);
  text-align: center;
  font-style: italic;
  margin-top: 1.5rem;
}

/* ── OUTCOMES ── */
.lw-outcome-card {
  padding: 1.75rem;
}

.lw-outcome-week {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lw-blue-600);
  margin-bottom: 0.6rem;
}

.lw-outcome-headline {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--lw-text);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.lw-outcome-detail {
  font-size: 0.88rem;
  color: var(--lw-text-secondary);
  line-height: 1.65;
}

.lw-commitment-box {
  background: var(--lw-neutral-50);
  border: 2px solid var(--lw-neutral-200);
  border-radius: var(--lw-radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-top: 2rem;
}

.lw-commitment-icon {
  font-size: 1.875rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.lw-commitment-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lw-text);
  margin-bottom: 0.4rem;
}

.lw-commitment-text p {
  font-size: 0.88rem;
  color: var(--lw-text-secondary);
  line-height: 1.65;
}

/* ── OFFER SECTION ── */
.lw-next-steps {
  background:
    linear-gradient(135deg, #f8fbff 0%, #f2f6ff 100%);
  border: 2px solid #dbe5ff;
  border-radius: var(--lw-radius-lg);
  margin-top: 10px;
  padding: 1.2rem 1.35rem 1.3rem;
  margin-bottom: 1.5rem;
}

.lw-next-steps-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lw-muted);
  margin-bottom: 0.55rem;
}

.lw-next-steps-prompt {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--lw-text-secondary);
  margin-bottom: 0.7rem;
}

.lw-next-steps-phase {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lw-blue-600);
  margin-bottom: 0.85rem;
}

.lw-next-steps-outline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(0, 51, 204, 0.12);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
}

.lw-next-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 1rem 1rem 0.95rem;
  border-bottom: 1px solid rgba(0, 51, 204, 0.1);
  position: relative;
}

.lw-next-step:last-child {
  border-bottom: 0;
}

.lw-next-step::before {
  content: '';
  position: absolute;
  left: calc(1.25rem + 13px);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(0, 51, 204, 0.12), rgba(0, 51, 204, 0.22), rgba(0, 51, 204, 0.08));
}

.lw-next-step:first-child::before {
  top: 1.95rem;
}

.lw-next-step:last-child::before {
  bottom: calc(100% - 1.95rem);
}

.lw-next-step-n {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--lw-blue-600);
  color: var(--lw-neutral-0);
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
  box-shadow: 0 4px 10px rgba(0, 51, 204, 0.18);
  position: relative;
  z-index: 1;
}

.lw-next-step-body strong {
  display: block;
  font-size: 0.92rem;
  color: var(--lw-text);
  margin-bottom: 0.28rem;
}

.lw-next-step-body p {
  font-size: 0.84rem;
  color: var(--lw-text-secondary);
  line-height: 1.55;
  margin: 0;
}

.lw-next-step-note {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--lw-muted);
  margin-top: 0.45rem !important;
}

.lw-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  gap: 2.6rem;
  align-items: stretch;
}

.lw-offer-left {
  min-width: 0;
}

.lw-offer-left h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.08;
  color: var(--lw-text);
  margin-bottom: 0.75rem;
}

.lw-offer-left p {
  font-size: 0.95rem;
  line-height: 1.78;
  color: var(--lw-text-secondary);
  margin-bottom: 1rem;
}

.lw-offer-alt-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.lw-offer-alt-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--lw-muted);
}

.lw-fit-box,
.lw-not-fit {
  margin-top: 1.35rem;
  padding: 1rem 1.05rem;
  border-radius: 14px;
}

.lw-fit-box {
  background: #eef6ff;
  border: 1px solid rgba(0, 51, 204, 0.12);
}

.lw-fit-box h3,
.lw-not-fit h3 {
  font-size: 0.96rem;
  margin-bottom: 0.45rem;
}

.lw-fit-box ul,
.lw-not-fit ul {
  padding-left: 1rem;
}

.lw-fit-box li,
.lw-not-fit li {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--lw-text-secondary);
  margin-top: 0.3rem;
}

/* Offer pricing card */
.lw-offer-card {
  background: var(--lw-neutral-0);
  border: 2px solid var(--lw-blue-600);
  border-radius: var(--lw-radius-lg);
  overflow: hidden;
  box-shadow: var(--lw-shadow);
  min-width: 380px;
  width: 100%;
  justify-self: stretch;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.lw-offer-card-top {
  background: var(--lw-blue-600);
  padding: 1rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--lw-neutral-0);
}

.lw-offer-card-top span {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.lw-offer-card-top strong {
  font-size: 0.82rem;
  color: var(--lw-neutral-0);
  font-weight: 700;
}

.lw-offer-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.lw-offer-card-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.lw-offer-price-big {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--lw-text);
  line-height: 1;
}

.lw-offer-price-was {
  font-size: 1.05rem;
  color: var(--lw-muted);
  text-decoration: line-through;
}

.lw-offer-price-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.lw-offer-cycle-tag {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lw-muted);
  font-weight: 500;
}

.lw-savings-chip {
  display: inline-flex;
  padding: 0.22rem 0.6rem;
  background: #dcfce7;
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #16a34a;
}

.lw-offer-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.lw-offer-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--lw-text-secondary);
  line-height: 1.5;
}

.lw-offer-includes li::before {
  content: '\2713';
  color: var(--lw-blue-600);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.lw-offer-divider {
  height: 1px;
  background: var(--lw-neutral-200);
  margin: auto 0 1.25rem;
}

.lw-offer-spots-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.lw-offer-spots-label {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lw-muted);
  font-weight: 500;
}

.lw-offer-spots-label strong {
  color: var(--lw-text);
}

.lw-offer-spots-track {
  width: 100px;
  height: 3px;
  background: var(--lw-neutral-200);
  border-radius: 2px;
  overflow: hidden;
}

.lw-offer-spots-fill {
  height: 100%;
  background: var(--lw-blue-600);
  border-radius: 2px;
  width: 0;
  animation: lw-fill-offer 1.2s ease forwards 0.8s;
}

@keyframes lw-fill-offer { to { width: 20%; } }

.lw-offer-guarantee-box {
  background: var(--lw-neutral-50);
  border: 1px solid var(--lw-neutral-200);
  border-left: 4px solid var(--lw-blue-600);
  border-radius: var(--lw-radius-md);
  padding: 0.9rem 1rem;
  margin-bottom: 1.25rem;
  margin-top: 0.25rem;
}

.lw-offer-guarantee-box p {
  font-size: 0.82rem;
  color: var(--lw-text-secondary);
  line-height: 1.6;
}

.lw-offer-guarantee-box strong {
  color: var(--lw-text);
}

.lw-offer-footer-note {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lw-muted);
  margin-top: 0.75rem;
  font-weight: 500;
  padding-top: 0.75rem;
  border-top: 1px solid var(--lw-neutral-200);
}

/* ── NOT CONVINCED YET ── */
/* ── NOT YET HEADING ── */
.lw-notyet-heading {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

/* ── NOT YET SCREENSHOT + CONTENT LAYOUT ── */
.lw-notyet-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
  text-align: left;
}

.lw-notyet-screenshot {
  text-align: center;
}

.lw-notyet-img {
  width: 100%;
  max-width: 220px;
  border-radius: var(--lw-radius-md);
  border: 1px solid var(--lw-neutral-200);
  box-shadow: var(--lw-shadow-sm);
}

.lw-notyet-img-caption {
  font-size: 0.72rem;
  color: var(--lw-muted);
  margin-top: 0.4rem;
}

.lw-notyet-inner {
  max-width: 800px;
  margin: 0 auto;
}

.lw-notyet-form-wrap {
  background: var(--lw-neutral-0);
  border: 2px solid var(--lw-neutral-200);
  border-radius: var(--lw-radius-lg);
  overflow: hidden;
}

.lw-notyet-top {
  background: var(--lw-neutral-50);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--lw-neutral-200);
}

.lw-notyet-top h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lw-text);
  margin-bottom: 0.35rem;
}

.lw-notyet-top p {
  font-size: 0.9rem;
  color: var(--lw-text-secondary);
  line-height: 1.6;
}

.lw-notyet-body {
  padding: 2rem;
}

.lw-notyet-body.lw-pad-15 {
  padding: 1.5rem;
}

.lw-notyet-checks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.lw-notyet-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.lw-notyet-check-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lw-blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.lw-notyet-check-text {
  font-size: 0.9rem;
  color: var(--lw-text-secondary);
  line-height: 1.6;
}

.lw-notyet-check-text strong {
  color: var(--lw-text);
}

/* GHL form placeholder */
.lw-ghl-placeholder {
  background: var(--lw-neutral-50);
  border: 2px dashed var(--lw-neutral-200);
  border-radius: var(--lw-radius-md);
  padding: 2rem;
  text-align: center;
}

.lw-ghl-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  background: #fff9d6;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d97706;
  margin-bottom: 1rem;
}

.lw-ghl-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--lw-text);
  margin-bottom: 0.4rem;
}

.lw-ghl-sub {
  font-size: 0.85rem;
  color: var(--lw-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.lw-ghl-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.lw-ghl-field {
  background: var(--lw-neutral-0);
  border: 1px solid var(--lw-neutral-200);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  color: var(--lw-muted);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lw-ghl-field-icon {
  font-size: 0.8rem;
}

.lw-ghl-note {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lw-muted);
}


/* ── OUTCOMES CALENDAR COMPARE ── */
.lw-calendar-compare {
  margin: 1.4rem 0 1.2rem;
  padding: 1.1rem 1.2rem;
  border: 2px solid var(--lw-neutral-200);
  border-radius: var(--lw-radius-lg);
  background: var(--lw-neutral-50);
}

.lw-calendar-compare h3 {
  font-size: 1.04rem;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  color: var(--lw-text);
}

.lw-activity-legend {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
  font-size: 0.8rem;
  color: var(--lw-muted);
  font-weight: 700;
}

.lw-activity-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.lw-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.lw-dot--before {
  background: #ef4444;
}

.lw-dot--after {
  background: #16a34a;
}

.lw-activity-chart {
  display: grid;
  gap: 0.7rem;
}

.lw-activity-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 0.8rem;
  align-items: center;
}

.lw-activity-name {
  font-size: 0.9rem;
  color: var(--lw-text);
  font-weight: 700;
}

.lw-activity-bars {
  display: grid;
  gap: 0.45rem;
}

.lw-activity-bar {
  width: var(--w);
  min-width: 64px;
  border-radius: 8px;
  padding: 0.3rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 1px 0 rgba(12, 17, 21, 0.08);
}

.lw-activity-bar--before {
  background: #fde7e7;
  border: 1px solid #f2c7c7;
  color: #7a1f1f;
}

.lw-activity-bar--after {
  background: #bbf7d0;
  border: 1px solid #86efac;
  color: #14532d;
}

.lw-activity-bar span {
  white-space: nowrap;
}

.lw-calendar-footnote {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  color: #475569;
}

/* ── FAQ ACCORDION ── */
.lw-accordion {
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
}

.lw-accordion details {
  border: 2px solid var(--lw-neutral-200);
  border-radius: var(--lw-radius-md);
  padding: 0.5rem 1.25rem;
  background: var(--lw-neutral-0);
}

.lw-accordion summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  padding: 0.9rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--lw-text);
  transition: color 0.2s;
}

.lw-accordion summary:hover {
  color: var(--lw-blue-600);
}

.lw-accordion summary::-webkit-details-marker {
  display: none;
}

.lw-accordion summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--lw-blue-600);
  flex-shrink: 0;
  font-weight: 700;
}

.lw-accordion details[open] summary::after {
  content: "\2013";
}

.lw-accordion details > p {
  padding: 0 0 0.9rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--lw-text-secondary);
}

/* ── FINAL CTA ── */
.lw-final-cta {
  background: linear-gradient(135deg, var(--lw-blue-700), var(--lw-blue-600));
  color: var(--lw-neutral-0);
  text-align: center;
  padding: 0.75rem 1.25rem 0.85rem;
}

.lw-final-cta h2 {
  font-size: clamp(1.75rem, 3.1vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--lw-text);
  margin-bottom: 0.55rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.14);
}

.lw-final-cta p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 760px;
  margin: 0 auto 1.05rem;
}

.lw-final-cta-message {
  padding: 0.8rem 1rem 0.9rem;
  max-width: 860px;
  margin: 0 auto 0.65rem;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  text-align: center;
}

.lw-final-cta-message h2 {
  font-size: clamp(1.55rem, 2.55vw, 2.15rem);
  line-height: 1.08;
  white-space: nowrap;
}

.lw-final-cta-message p {
  max-width: 700px;
  margin: 0.35rem auto 0;
  line-height: 1.5;
  color: var(--lw-text-secondary);
  text-shadow: none;
}

.lw-final-cta-message .lw-final-primary-cta {
  margin-top: 1rem;
}

.lw-final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.lw-final-secondary-cta,
.lw-final-secondary-cta:visited {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.55);
  text-underline-offset: 0.16em;
}

.lw-final-secondary-cta:hover,
.lw-final-secondary-cta:focus {
  color: #ffffff !important;
  text-decoration-color: rgba(255, 255, 255, 0.88);
}

.lw-final-seats {
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #ffffff;
  opacity: 1;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
  margin-top: 0.1rem;
}

/* ── STICKY BAR ── */
.lw-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: rgba(255, 255, 255, 0.97);
  border-top: 2px solid var(--lw-neutral-200);
  padding: 0.9rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  backdrop-filter: blur(14px);
  box-shadow: 0 -4px 16px rgba(12, 17, 21, 0.08);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.lw-sticky-bar.visible {
  transform: translateY(0);
}

.lw-sticky-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.lw-sticky-line {
  font-size: 0.86rem;
  line-height: 1.35;
  color: var(--lw-text-secondary);
}

.lw-sticky-line--primary {
  color: var(--lw-text);
  font-weight: 600;
}

.lw-sticky-line--meta {
  color: var(--lw-muted);
}

.lw-sticky-line--price {
  color: var(--lw-text-secondary);
}

.lw-sticky-line--meta strong {
  color: var(--lw-text);
  font-weight: 700;
}

.lw-sticky-line--value {
  color: var(--lw-blue-700);
  font-weight: 700;
}

.lw-sticky-price-main {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--lw-text);
  letter-spacing: 0;
  margin-left: 0.2rem;
}

.lw-sticky-price-was {
  font-size: 0.86rem;
  color: var(--lw-muted);
  text-decoration: line-through;
  margin-left: 0.2rem;
  margin-right: 0.2rem;
}


.lw-sticky-toggle {
  display: none;
}

/* ── FOOTER ── */
.lw-footer {
  background: #000;
  width: 100%;
  padding: 0.9rem 1.25rem;
  color: var(--lw-neutral-0);
}

.lw-footer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.lw-footer-panel {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.lw-footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.92);
}

.lw-footer-link,
.lw-footer-link:visited {
  color: #ffffff !important;
  font-size: 0.78rem;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.95);
  text-underline-offset: 2px;
  font-weight: 600;
}

.lw-footer-link:hover,
.lw-footer-link:focus {
  color: #fff;
}

.lw-footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ── REVEAL ANIMATIONS ── */
[data-reveal] {
  opacity: 1;
  transform: none;
}

.js-enhanced [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

.js-enhanced [data-reveal].visible {
  opacity: 1;
  transform: none;
}

/* ── HELPER: section company note ── */
.lw-section-note {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--lw-neutral-200);
}

.lw-section-note p {
  font-size: 0.88rem;
  color: var(--lw-muted);
}

.lw-section-note strong {
  color: var(--lw-text);
}

@media (min-width: 961px) {
  .lw-offer-left .lw-kicker {
    white-space: nowrap;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .lw-proof-snapshot-grid {
    grid-template-columns: 1fr;
  }

  .lw-proof-journey-track {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .lw-proof-journey-arrow {
    text-align: center;
    transform: rotate(90deg);
  }

  .lw-proof-journey-bar {
    width: 100%;
  }

  .lw-audit-flow {
    grid-template-columns: 1fr;
  }

  .lw-hero-cta-link {
    width: 100%;
  }

  .lw-activity-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .lw-activity-name {
    font-size: 0.86rem;
  }

  .lw-nav {
    padding: 0 1.5rem;
  }

  .lw-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .lw-hero-pricing {
    width: 100%;
    max-width: 480px;
  }

  .lw-hero-proof-row {
    grid-template-columns: 1fr;
  }

  .lw-hero-proof-row .lw-hero-proof-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .lw-hero-proof-row .lw-hero-proof-item:last-child {
    border-bottom: 0;
  }

  .lw-hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--lw-radius-md);
    padding: 0.7rem 0.8rem;
  }

  .lw-hero-link-sep {
    display: none;
  }

  .lw-cta-strip-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .lw-next-steps {
    padding: 1rem 1rem 1.1rem;
  }

  .lw-next-step {
    grid-template-columns: 32px 1fr;
    gap: 0.75rem;
    padding: 0.9rem;
  }

  .lw-next-step::before {
    left: calc(0.9rem + 13px);
  }

  .lw-stats-bar {
    padding: 1rem 1.5rem;
  }

  .lw-stat-item {
    padding: 0.5rem 1.25rem;
  }

  .lw-grid--2 {
    grid-template-columns: 1fr;
  }

  .lw-grid--4 {
    grid-template-columns: 1fr 1fr;
  }

  .lw-program-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lw-module-card--future {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .lw-timeline-steps {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .lw-timeline-steps::before {
    display: none;
  }

  .lw-solution-stats {
    grid-template-columns: 1fr;
  }

  .lw-solution-stats .lw-ai-details {
    grid-column: auto;
  }

  .lw-final-cta-message h2 {
    white-space: normal;
  }

  .lw-ai-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .lw-ai-skills {
    grid-template-columns: 1fr 1fr;
  }

  .lw-cred-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .lw-cred-stats {
    grid-template-columns: 1fr;
  }

  .lw-grid--3 {
    grid-template-columns: 1fr;
  }

  .lw-offer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .lw-ghl-fields {
    grid-template-columns: 1fr;
  }

  .lw-calc-fields {
    grid-template-columns: 1fr;
  }

  .lw-enroll-steps-grid {
    grid-template-columns: 1fr;
  }

  .lw-notyet-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lw-notyet-content {
    text-align: left;
  }

  .lw-announce-bar {
    padding: 0.6rem 1.5rem;
  }

  .lw-sticky-bar {
    padding: 0.875rem 1.5rem;
  }

  .lw-footer {
    padding: 1.5rem;
    padding-bottom: 5rem;
  }
}

@media (max-width: 600px) {
  .lw-audit-flow-step {
    padding: 0.75rem 0.8rem;
  }

  .lw-audit-flow-copy strong {
    font-size: calc(0.8rem + 2px);
  }

  .lw-audit-flow-copy span {
    font-size: 0.7rem;
  }

  .lw-calc-strip {
    padding: 1.25rem 0.9rem;
  }

  .lw-calc-inner {
    padding: 1rem 0.9rem;
    border-radius: 18px;
  }

  .lw-calc-header {
    margin-bottom: 1rem;
  }

  .lw-calc-intro {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .lw-calc-fields {
    gap: 0.75rem;
  }

  .lw-calc-field {
    padding: 0.85rem;
    border-radius: 14px;
  }

  .lw-calc-field-hint {
    min-height: 0;
    font-size: 0.72rem;
  }

  .lw-calc-field input {
    font-size: 1.15rem;
    padding: 0.8rem 0.85rem;
  }

  .lw-calc-result {
    padding: 1rem;
  }

  .lw-calc-result-value {
    font-size: 2.35rem;
  }

  .lw-calc-result-sub {
    font-size: 0.76rem;
    line-height: 1.5;
  }

.lw-calc-cta .lw-cta-strip-link {
  width: 100%;
  min-width: 0;
  font-size: 0.94rem;
  padding: 0.85rem 1rem;
}

  .lw-nav-proof {
    display: none;
  }

  .lw-hero-headline-panel {
    max-width: 100%;
  }

  .lw-hero-centered .lw-hero-subhead {
    max-width: 680px;
    font-size: 1.02rem;
  }

  .lw-hero-subhead-line {
    white-space: normal;
  }

  .lw-hero-action-row {
    flex-wrap: wrap;
    width: 100%;
    border-radius: 12px;
    justify-content: center;
  }

  .lw-hero-action-row .lw-hero-sep {
    display: none;
  }

  .lw-sticky-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--lw-neutral-200);
    background: var(--lw-neutral-50);
    color: var(--lw-text-secondary);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.35rem 0.65rem;
  }

  .lw-sticky-bar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    align-items: center;
  }

  .lw-sticky-left {
    gap: 0.25rem;
  }

  .lw-sticky-line {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .lw-sticky-bar > a.lw-btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .lw-sticky-collapsed > a.lw-btn {
    display: none;
  }

  .lw-sticky-collapsed .lw-sticky-line--price,
  .lw-sticky-collapsed .lw-sticky-line--meta,
  .lw-sticky-collapsed .lw-sticky-line--value {
    display: none;
  }

  .lw-grid--4 {
    grid-template-columns: 1fr;
  }

  .lw-program-grid {
    grid-template-columns: 1fr;
  }

  .lw-ai-skills {
    grid-template-columns: 1fr;
  }

  .lw-timeline-steps {
    grid-template-columns: 1fr;
  }

  .lw-hero--gis h1 {
    font-size: 2rem;
  }

  .lw-nav-links {
    display: none;
  }

  .lw-stat-item + .lw-stat-item {
    border-left: none;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
  }

  .lw-stats-bar {
    flex-direction: column;
    gap: 0;
  }


  .lw-sticky-bar {
    justify-content: stretch;
  }

  .lw-sticky-left {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .lw-activity-legend {
    font-size: 0.74rem;
    gap: 0.7rem;
  }

  .lw-activity-bar {
    min-width: 54px;
    font-size: 0.74rem;
  }

  .lw-sticky-bar {
    padding: 0.65rem 0.85rem;
    gap: 0.4rem;
  }

  .lw-sticky-line {
    font-size: 0.75rem;
    line-height: 1.25;
  }

  .lw-sticky-price-main,
  .lw-sticky-price-was {
    font-size: 0.8rem;
  }

  .lw-sticky-toggle {
    font-size: 0.68rem;
    padding: 0.3rem 0.5rem;
  }
}

@media (max-width: 375px) {
  .lw-sticky-bar {
    padding: 0.6rem 0.72rem;
  }

  .lw-sticky-line--primary {
    font-size: 0.72rem;
  }

  .lw-sticky-line--meta,
  .lw-sticky-line--value {
    font-size: 0.71rem;
  }

  .lw-sticky-bar > a.lw-btn {
    font-size: 0.86rem;
    padding-top: 0.62rem;
    padding-bottom: 0.62rem;
  }
}

/* ── LOGO BAR ── */
.lw-logo-bar {
  text-align: center;
  margin-bottom: 2rem;
}

.lw-logo-bar-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lw-muted);
  margin-bottom: 0.75rem;
}

.lw-logo-bar-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.lw-logo-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.85rem;
  background: var(--lw-neutral-50);
  border: 1px solid var(--lw-neutral-200);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lw-text);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.lw-logo-bar-item small {
  font-weight: 500;
  color: var(--lw-muted);
  font-size: 0.72rem;
}

/* ── ESCALATION COST CALCULATOR ── */
.lw-calc-strip {
  background:
    radial-gradient(circle at top right, rgba(19, 114, 211, 0.14), transparent 38%),
    linear-gradient(135deg, #08111f 0%, #0c1115 52%, #0f1b33 100%);
  padding: 2rem 1.25rem;
}

.lw-calc-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 1.35rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.lw-calc-header {
  margin-bottom: 1.1rem;
}

.lw-calc-header .lw-kicker {
  color: #ffffff;
  justify-content: center;
}

.lw-calc-header .lw-kicker::before {
  background: rgba(255, 255, 255, 0.5);
}

.lw-calc-header h3 {
  font-size: var(--lw-h3);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 0.45rem;
  display: block;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.lw-calc-intro {
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

.lw-calc-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.lw-calc-field {
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@media (min-width: 961px) {
  .lw-calc-fields {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 640px) and (max-width: 960px) {
  .lw-calc-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.lw-calc-field label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0.3rem;
}

.lw-calc-field-hint {
  display: block;
  font-size: 0.74rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.6rem;
  min-height: 2.15em;
}

.lw-calc-field input,
.lw-calc-field select {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--lw-neutral-0);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  font-family: inherit;
  text-align: center;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  -moz-appearance: textfield;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.lw-calc-field select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.82) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  -webkit-padding-end: 2.2rem;
  padding-inline-end: 2.2rem;
}

.lw-calc-field input::-webkit-inner-spin-button,
.lw-calc-field input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.lw-calc-field input:focus,
.lw-calc-field select:focus {
  outline: none;
  border-color: var(--lw-blue-500);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 3px rgba(19, 114, 211, 0.18);
}

.lw-calc-result {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 229, 48, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  padding: 1.15rem 1.25rem;
  margin-bottom: 0.8rem;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lw-calc-result-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.25rem;
}

.lw-calc-result-value {
  font-size: 2.75rem;
  font-weight: 700;
  color: #ff6b6b;
  text-shadow: 0 6px 24px rgba(255, 107, 107, 0.18);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.lw-calc-result-sub {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0.3rem;
}

.lw-calc-result-note {
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.64);
}

.lw-calc-cta {
  margin-top: 0.5rem;
}

.lw-calc-cta .lw-cta-strip-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 320px);
  padding: 0.9rem 1.25rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(19, 114, 211, 0.2), rgba(0, 51, 204, 0.28));
  border: 1px solid rgba(137, 180, 255, 0.45);
  color: var(--lw-neutral-0);
  font-size: 1rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border-bottom: 0;
  letter-spacing: -0.01em;
}

.lw-calc-cta .lw-cta-strip-link:hover {
  color: var(--lw-neutral-0);
  border-bottom: 0;
  background: linear-gradient(135deg, rgba(19, 114, 211, 0.28), rgba(0, 51, 204, 0.36));
  border-color: rgba(191, 219, 254, 0.65);
}

/* ── ENROLLMENT STEPS ── */
.lw-enroll-steps {
  background: var(--lw-neutral-0);
  border: 2px solid var(--lw-neutral-200);
  border-radius: var(--lw-radius-lg);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.lw-enroll-steps-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lw-muted);
  margin-bottom: 0.75rem;
}

.lw-enroll-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.lw-enroll-step {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  background: var(--lw-neutral-50);
  border: 1px solid var(--lw-neutral-200);
  border-radius: 10px;
  padding: 0.65rem 0.7rem;
}

.lw-enroll-step-n {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #16a34a;
  color: var(--lw-neutral-0);
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.lw-enroll-step-body strong {
  display: block;
  font-size: 0.82rem;
  color: var(--lw-text);
  margin-bottom: 0.2rem;
}

.lw-enroll-step-body p {
  font-size: 0.78rem;
  color: var(--lw-text-secondary);
  line-height: 1.45;
  margin: 0;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .js-enhanced [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
