/* =========================================================
   ULTRALINK UK — LinkedIn Marketing Services Landing Page
   linkedin-marketing-services.css
   All rules scoped under .lm-page
   ========================================================= */

.lm-page {
  --lm-primary: #0A66C2;
  --lm-primary-dark: #084d94;
  --lm-secondary: #1B8FBF;
  --lm-cyan: #1B8FBF;
  --lm-navy: #0A2540;
  --lm-navy-deep: #061829;
  --lm-light: #F4F7FB;
  --lm-white: #FFFFFF;
  --lm-muted: #4A5F73;
  --lm-muted-light: #7A8FA3;
  --lm-line: rgba(10, 37, 64, 0.1);
  --lm-line-strong: rgba(10, 37, 64, 0.16);
  --lm-radius: 18px;
  --lm-radius-lg: 24px;
  --lm-radius-xl: 28px;
  --lm-shadow: 0 10px 30px rgba(10, 37, 64, 0.07);
  --lm-shadow-hover: 0 22px 48px rgba(10, 102, 194, 0.16);
  --lm-shadow-card: 0 16px 40px rgba(10, 37, 64, 0.08);
  --lm-section-y: clamp(72px, 8vw, 120px);
  --lm-grad-primary: linear-gradient(135deg, var(--lm-primary) 0%, var(--lm-secondary) 100%);
  --lm-grad-brand: linear-gradient(135deg, var(--lm-secondary) 0%, var(--lm-primary) 100%);
  --lm-grad-dark: linear-gradient(135deg, var(--lm-navy-deep) 0%, var(--lm-navy) 45%, var(--lm-primary) 100%);
  --lm-grad-hero: linear-gradient(145deg, #061829 0%, #0A2540 38%, #0A3D6E 72%, #0A66C2 100%);
  --lm-grad-soft: linear-gradient(180deg, #F4F7FB 0%, #ffffff 55%, #F4F7FB 100%);
  color: var(--lm-navy);
  overflow-x: clip;
}

.lm-page [class*='lm-'] {
  min-width: 0;
}

.lm-page .section {
  padding: var(--lm-section-y) 0;
}

.lm-page .section > .container {
  max-width: min(1320px, 100%);
}

.lm-page [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}

.lm-page [data-reveal].revealed {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .lm-page [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .lm-page .lm-report-metric:hover,
  .lm-page .lm-problem-card:hover,
  .lm-page .lm-outcome-card:hover,
  .lm-page .lm-service-row:hover,
  .lm-page .lm-process-step:hover,
  .lm-page .lm-why-card:hover,
  .lm-page .lm-ready-btn:hover,
  .lm-page .lm-hero-visual:hover {
    transform: none;
  }

  .lm-page .lm-feed-pulse,
  .lm-page .lm-feed-scan {
    animation: none;
  }
}

.lm-page .kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--lm-primary);
  background: rgba(10, 102, 194, 0.1);
  padding: 5px 11px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.lm-section-head {
  max-width: min(1080px, 100%);
  margin: 0 auto clamp(28px, 4vw, 44px);
  text-align: center;
}

.lm-section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lm-section-head .lm-lead,
.lm-section-head--center .lm-lead {
  margin-left: auto;
  margin-right: auto;
}

.lm-section-head .kicker {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14px;
}

.lm-section-head h2,
.lm-page .lm-hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.lm-section-head h2 {
  color: var(--lm-navy);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  margin-bottom: 14px;
  max-width: min(920px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.lm-lead,
.lm-outcome-card p,
.lm-service-row-body p,
.lm-process-step p,
.lm-why-card p {
  color: var(--lm-muted);
  line-height: 1.7;
  font-size: clamp(0.92rem, 1.4vw, 1rem);
}

.lm-lead {
  margin-bottom: 10px;
  max-width: min(920px, 100%);
}

.lm-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(10, 102, 194, 0.12), rgba(27, 143, 191, 0.12));
  color: var(--lm-primary);
  font-size: 1.05rem;
  margin: 0 auto 14px;
  flex-shrink: 0;
}

.lm-hero-cta .btn,
.lm-ready-inner .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.lm-page .btn-primary {
  background: var(--lm-grad-primary);
  border: 1px solid transparent;
  color: var(--lm-white);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(10, 102, 194, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.lm-page .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(10, 102, 194, 0.36);
  filter: brightness(1.04);
  color: var(--lm-white);
}

.lm-page .lm-btn-ghost,
.lm-page .btn-outline {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: var(--lm-white);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.lm-page .lm-btn-ghost:hover,
.lm-page .btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.75);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  color: var(--lm-white);
}

.lm-page .section:not(.lm-hero) .lm-btn-ghost,
.lm-page .section:not(.lm-hero) .btn-outline {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--lm-primary);
  color: var(--lm-primary);
}

.lm-page .section:not(.lm-hero) .lm-btn-ghost:hover,
.lm-page .section:not(.lm-hero) .btn-outline:hover {
  background: rgba(10, 102, 194, 0.08);
  color: var(--lm-primary);
  box-shadow: 0 10px 24px rgba(10, 102, 194, 0.14);
}

/* ============================================================
   HERO — navy→LinkedIn blue, feed mock visual
   ============================================================ */
.lm-hero {
  --lm-hero-muted: #A8B8CC;
  --lm-hero-panel: rgba(255, 255, 255, 0.06);
  --lm-hero-panel-border: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  background: var(--lm-grad-hero);
  --hero-y: clamp(48px, 5.5vw, 80px);
  min-height: min(78vh, 760px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h, 72px) + var(--hero-y)) 0 var(--hero-y);
  color: var(--lm-white);
}

.lm-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lm-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}

.lm-hero-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 440px at 88% 0%, rgba(10, 102, 194, 0.22), transparent 62%),
    radial-gradient(620px 380px at 8% 100%, rgba(27, 143, 191, 0.14), transparent 58%);
}

.lm-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}

.lm-hero-glow--1 {
  width: 440px;
  height: 440px;
  background: rgba(10, 102, 194, 0.22);
  top: -130px;
  right: -70px;
}

.lm-hero-glow--2 {
  width: 380px;
  height: 380px;
  background: rgba(27, 143, 191, 0.16);
  bottom: -110px;
  left: -90px;
}

.lm-hero > .container {
  max-width: min(1320px, 100%);
}

.lm-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  width: 100%;
  max-width: none;
}

.lm-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lm-hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lm-secondary);
  box-shadow: 0 0 0 4px rgba(27, 143, 191, 0.25);
}

.lm-hero-copy h1 {
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: none;
  color: var(--lm-white);
}

.lm-hero-sub {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 1.7vw, 1.15rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
  margin: 0 0 14px;
  max-width: min(48ch, 100%);
}

.lm-hero-lead {
  font-size: clamp(0.95rem, 1.2vw, 1rem);
  line-height: 1.65;
  color: var(--lm-hero-muted);
  max-width: min(52ch, 100%);
  margin: 0 0 28px;
}

.lm-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lm-hero-cta .btn {
  min-height: 50px;
  padding-inline: 24px;
  max-width: 100%;
  white-space: normal;
  height: auto;
  text-wrap: balance;
  border-radius: 100px;
}

.lm-page .lm-hero .btn-primary {
  background: var(--lm-grad-primary);
  border: 0;
  box-shadow: 0 16px 34px -14px rgba(10, 102, 194, 0.5);
  color: var(--lm-white);
}

.lm-page .lm-hero .btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -14px rgba(10, 102, 194, 0.55);
  color: var(--lm-white);
}

.lm-hero-visual {
  position: relative;
  min-height: 0;
  transition: transform 0.35s ease;
}

.lm-hero-visual:hover {
  transform: translateY(-4px);
}

.lm-feed {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--lm-hero-panel-border);
  border-radius: 16px;
  box-shadow:
    0 32px 72px -28px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(10, 102, 194, 0.12);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.lm-feed-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lm-feed-bar-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.lm-feed-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

.lm-feed-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: lmFeedPulse 2s ease infinite;
}

@keyframes lmFeedPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.lm-feed-body {
  padding: clamp(18px, 2.4vw, 24px);
}

.lm-feed-post {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 14px;
}

.lm-feed-post:last-child {
  margin-bottom: 0;
}

.lm-feed-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.lm-feed-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lm-primary), var(--lm-secondary));
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
}

.lm-feed-meta {
  flex: 1;
  min-width: 0;
}

.lm-feed-name {
  display: block;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.3;
}

.lm-feed-role {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.35;
}

.lm-feed-text {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 14px;
}

.lm-feed-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lm-feed-metric {
  text-align: center;
  padding: 8px 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.lm-feed-metric-val {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--lm-white);
  line-height: 1.1;
}

.lm-feed-metric-val.is-accent {
  color: #7dd3fc;
}

.lm-feed-metric-lbl {
  display: block;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.lm-feed-chart {
  position: relative;
  height: 120px;
  margin-top: 14px;
  padding: 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.lm-feed-chart-lbl {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
}

.lm-feed-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 68px;
}

.lm-feed-bars span {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, rgba(27, 143, 191, 0.9), rgba(10, 102, 194, 0.55));
  min-height: 12px;
}

.lm-feed-bars span:nth-child(1) { height: 38%; }
.lm-feed-bars span:nth-child(2) { height: 52%; }
.lm-feed-bars span:nth-child(3) { height: 44%; }
.lm-feed-bars span:nth-child(4) { height: 68%; }
.lm-feed-bars span:nth-child(5) { height: 58%; }
.lm-feed-bars span:nth-child(6) { height: 82%; }
.lm-feed-bars span:nth-child(7) { height: 74%; }

.lm-feed-scan {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(27, 143, 191, 0.85), transparent);
  opacity: 0.65;
  animation: lmFeedScan 3.4s linear infinite;
}

@keyframes lmFeedScan {
  0% { left: 0; }
  100% { left: 100%; }
}

.lm-feed-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.lm-feed-tags span {
  display: inline-flex;
  align-items: center;
  font-size: 0.66rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 10px;
  border-radius: 100px;
}

/* ============================================================
   INSIGHTS — editorial dual-metric report
   ============================================================ */
.lm-page .section.lm-insights {
  background:
    radial-gradient(ellipse 55% 50% at 90% 0%, rgba(10, 102, 194, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 40% at 5% 100%, rgba(27, 143, 191, 0.1), transparent 50%),
    linear-gradient(180deg, #eef3f9 0%, #F4F7FB 50%, #ffffff 100%);
}

.lm-report {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: min(1120px, 100%);
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid rgba(10, 37, 64, 0.12);
  background:
    linear-gradient(145deg, #061829 0%, #0A2540 42%, #0A3D6E 78%, #0A66C2 120%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 28px 64px rgba(10, 37, 64, 0.28);
  padding: clamp(22px, 3.5vw, 36px);
  color: rgba(255, 255, 255, 0.88);
}

.lm-report-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.lm-report-glow {
  position: absolute;
  top: -30%;
  right: -8%;
  width: min(520px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 143, 191, 0.35), transparent 68%);
}

.lm-report-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 85%);
}

.lm-report-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.2vw, 20px);
  position: relative;
}

.lm-report-metric {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.lm-report-metric:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.2);
}

.lm-report-metric--accent {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(125, 211, 252, 0.22);
}

.lm-report-metric-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lm-report-metric-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #7dd3fc;
  background: rgba(27, 143, 191, 0.22);
  border: 1px solid rgba(125, 211, 252, 0.28);
  font-size: 1.1rem;
}

.lm-report-metric-index {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}

.lm-report-metric-value {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.2vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: #ffffff;
}

.lm-report-metric--accent .lm-report-metric-value {
  background: linear-gradient(135deg, #ffffff 0%, #7dd3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lm-report-metric-text {
  margin: 0;
  flex: 1;
  font-size: clamp(0.92rem, 1.45vw, 1.02rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.lm-report-metric-source {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
}

.lm-report-metric-source-label {
  font-family: var(--font-head);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7dd3fc;
}

/* ============================================================
   CHALLENGES — centered head + problem shell
   ============================================================ */
.lm-page .section.lm-challenges {
  background:
    radial-gradient(ellipse 50% 45% at 8% 8%, rgba(10, 102, 194, 0.1), transparent 55%),
    radial-gradient(ellipse 45% 40% at 95% 92%, rgba(27, 143, 191, 0.08), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #F4F7FB 50%, #eef3f9 100%);
}

.lm-problem-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: min(1120px, 100%);
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid rgba(10, 37, 64, 0.1);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(244, 247, 251, 0.98) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 24px 60px rgba(10, 37, 64, 0.1);
  padding: clamp(22px, 3.5vw, 36px);
}

.lm-problem-shell-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.lm-problem-shell-glow {
  position: absolute;
  top: -22%;
  left: -10%;
  width: min(460px, 75%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 102, 194, 0.14), transparent 68%);
}

.lm-problem-shell-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(10, 37, 64, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 37, 64, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 80%);
}

.lm-problem-shell-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: clamp(18px, 2.6vw, 26px);
  padding-bottom: clamp(16px, 2.2vw, 22px);
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}

.lm-problem-shell-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--lm-white);
  font-size: 1.15rem;
  background: var(--lm-grad-primary);
  box-shadow:
    0 10px 24px rgba(10, 102, 194, 0.28),
    0 0 0 4px rgba(10, 102, 194, 0.12);
}

.lm-problem-shell-head p {
  margin: 0;
  padding-top: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.4;
  color: var(--lm-navy);
}

.lm-problem-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}

.lm-problem-card {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 148px;
  padding: 18px 16px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 8px 22px rgba(10, 37, 64, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lm-problem-card:nth-child(n + 5) {
  grid-column: span 4;
}

.lm-problem-card:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 102, 194, 0.22);
  box-shadow: 0 14px 30px rgba(10, 37, 64, 0.08);
}

.lm-problem-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.lm-problem-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--lm-primary);
  background: linear-gradient(145deg, #eef4fb 0%, #dceaf7 100%);
  border: 1px solid rgba(10, 102, 194, 0.12);
  font-size: 0.95rem;
}

.lm-problem-card:nth-child(even) .lm-problem-card-icon {
  color: var(--lm-secondary);
  background: linear-gradient(145deg, #eef8fb 0%, #d8eef6 100%);
  border-color: rgba(27, 143, 191, 0.18);
}

.lm-problem-card-num {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--lm-muted-light);
}

.lm-problem-card-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--lm-navy);
}

.lm-problem-insight {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px 16px;
  align-items: start;
  margin-top: clamp(18px, 2.6vw, 26px);
  padding: clamp(16px, 2.4vw, 22px);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(6, 24, 41, 0.96) 0%, #0A2540 100%);
  color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 36px rgba(10, 37, 64, 0.18);
}

.lm-problem-insight-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #7dd3fc;
  background: rgba(27, 143, 191, 0.18);
  border: 1px solid rgba(27, 143, 191, 0.28);
  font-size: 1rem;
}

.lm-problem-insight-copy p {
  margin: 0 0 10px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

.lm-problem-insight-copy p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
}

.lm-list-lead {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--lm-navy);
  margin: 18px 0 0;
}

.lm-section-closing {
  margin-top: clamp(24px, 3.5vw, 36px);
  margin-left: auto;
  margin-right: auto;
  max-width: min(820px, 100%);
  text-align: center;
}

.lm-service-body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--lm-muted);
}

/* ============================================================
   OUTCOMES — elevated shell, 2×3 outcome grid
   ============================================================ */
.lm-page .section.lm-outcomes {
  background:
    radial-gradient(ellipse 50% 45% at 8% 10%, rgba(10, 102, 194, 0.08), transparent 55%),
    radial-gradient(ellipse 45% 40% at 95% 90%, rgba(27, 143, 191, 0.08), transparent 50%),
    linear-gradient(180deg, var(--lm-white) 0%, var(--lm-light) 45%, #eef3f9 100%);
}

.lm-outcome-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: min(1120px, 100%);
  margin: 0 auto;
  border-radius: var(--lm-radius-xl);
  border: 1px solid var(--lm-line-strong);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(244, 247, 251, 0.98) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 24px 60px rgba(10, 37, 64, 0.1);
  padding: clamp(22px, 3.5vw, 36px);
}

.lm-outcome-shell-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.lm-outcome-shell-glow {
  position: absolute;
  top: -20%;
  left: -12%;
  width: min(460px, 70%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 102, 194, 0.12), transparent 68%);
}

.lm-outcome-shell-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(10, 37, 64, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 37, 64, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 80%);
}

.lm-outcome-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 16px);
}

.lm-outcome-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 168px;
  padding: clamp(18px, 2.2vw, 22px);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--lm-line);
  box-shadow: 0 8px 22px rgba(10, 37, 64, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lm-outcome-card:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 102, 194, 0.22);
  box-shadow: 0 14px 30px rgba(10, 37, 64, 0.08);
}

.lm-outcome-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--lm-white);
  background: var(--lm-grad-primary);
  box-shadow: 0 8px 18px rgba(10, 102, 194, 0.22);
  font-size: 1rem;
}

.lm-outcome-card:nth-child(even) .lm-outcome-card-icon {
  background: linear-gradient(135deg, var(--lm-secondary) 0%, var(--lm-primary) 100%);
}

.lm-outcome-card h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.35;
  color: var(--lm-navy);
  letter-spacing: -0.01em;
}

.lm-outcome-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================================
   SERVICES — vertical horizontal-card stack
   ============================================================ */
.lm-page .section.lm-services {
  background:
    radial-gradient(ellipse 50% 40% at 10% 0%, rgba(10, 102, 194, 0.07), transparent 55%),
    linear-gradient(180deg, var(--lm-white) 0%, var(--lm-light) 100%);
}

.lm-service-stack {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 18px);
  max-width: min(920px, 100%);
  margin-inline: auto;
}

.lm-service-row {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: clamp(14px, 2.2vw, 22px);
  align-items: start;
  padding: clamp(20px, 2.6vw, 26px);
  border-radius: 20px;
  background: var(--lm-white);
  border: 1px solid var(--lm-line);
  box-shadow: var(--lm-shadow);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.lm-service-row:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 102, 194, 0.22);
  box-shadow: var(--lm-shadow-hover);
}

.lm-service-num {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(10, 102, 194, 0.5);
  padding-top: 14px;
  min-width: 28px;
}

.lm-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--lm-white);
  background: var(--lm-grad-primary);
  box-shadow: 0 8px 18px rgba(10, 102, 194, 0.22);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.lm-service-row:nth-child(even) .lm-service-icon {
  background: linear-gradient(135deg, var(--lm-secondary) 0%, var(--lm-primary) 100%);
}

.lm-service-body {
  min-width: 0;
}

.lm-service-body h3 {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  font-weight: 750;
  line-height: 1.3;
  color: var(--lm-navy);
  letter-spacing: -0.01em;
}

.lm-service-row-body p {
  margin: 0;
}

/* ============================================================
   AUDIENCE — premium compare table
   ============================================================ */
.lm-page .section.lm-audience {
  background:
    radial-gradient(ellipse 55% 50% at 85% 10%, rgba(27, 143, 191, 0.09), transparent 55%),
    radial-gradient(ellipse 40% 40% at 5% 90%, rgba(10, 102, 194, 0.07), transparent 50%),
    var(--lm-grad-soft);
}

.lm-audience-wrap {
  max-width: min(960px, 100%);
  margin: 0 auto;
}

.lm-audience-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--lm-radius-lg);
  overflow: hidden;
  background: var(--lm-white);
  border: 1px solid var(--lm-line-strong);
  box-shadow: var(--lm-shadow-card);
}

.lm-audience-table thead th {
  padding: clamp(16px, 2.2vw, 20px) clamp(18px, 2.4vw, 24px);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  color: var(--lm-white);
  background: var(--lm-grad-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lm-audience-table thead th:first-child {
  width: 38%;
}

.lm-audience-table tbody tr {
  transition: background 0.2s ease;
}

.lm-audience-table tbody tr:nth-child(even) {
  background: rgba(244, 247, 251, 0.65);
}

.lm-audience-table tbody tr:hover {
  background: rgba(10, 102, 194, 0.05);
}

.lm-audience-table tbody td {
  padding: clamp(14px, 2vw, 18px) clamp(18px, 2.4vw, 24px);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--lm-navy);
  border-bottom: 1px solid var(--lm-line);
  vertical-align: top;
}

.lm-audience-table tbody tr:last-child td {
  border-bottom: 0;
}

.lm-audience-table tbody td:first-child {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--lm-navy);
}

.lm-audience-table tbody td:last-child {
  color: var(--lm-muted);
}

.lm-audience-close {
  max-width: min(720px, 100%);
  margin: clamp(28px, 4vw, 40px) auto 0;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 650;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.55;
  color: var(--lm-navy);
}

/* ============================================================
   PROCESS — horizontal 5-step journey track
   ============================================================ */
.lm-page .section.lm-process {
  background:
    radial-gradient(ellipse 55% 50% at 90% 5%, rgba(10, 102, 194, 0.09), transparent 55%),
    linear-gradient(180deg, var(--lm-light) 0%, var(--lm-white) 100%);
}

.lm-process-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.6vw, 14px);
  position: relative;
}

.lm-process-track::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(10, 102, 194, 0.15), rgba(27, 143, 191, 0.35), rgba(10, 102, 194, 0.15));
  z-index: 0;
}

.lm-process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: clamp(16px, 2vw, 20px) clamp(10px, 1.4vw, 14px);
  border-radius: 18px;
  background: var(--lm-white);
  border: 1px solid var(--lm-line);
  box-shadow: var(--lm-shadow);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.lm-process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 102, 194, 0.22);
  box-shadow: var(--lm-shadow-hover);
}

.lm-process-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--lm-white);
  background: var(--lm-grad-primary);
  box-shadow: 0 8px 18px rgba(10, 102, 194, 0.25);
}

.lm-process-step:nth-child(even) .lm-process-num {
  background: linear-gradient(135deg, var(--lm-secondary) 0%, var(--lm-primary) 100%);
}

.lm-process-step h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(0.88rem, 1.3vw, 0.96rem);
  font-weight: 750;
  line-height: 1.35;
  color: var(--lm-navy);
}

.lm-process-step p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
}

/* ============================================================
   WHY — partner-style elevated shell, benefit grid
   ============================================================ */
.lm-page .section.lm-why {
  background:
    radial-gradient(ellipse 50% 45% at 8% 10%, rgba(10, 102, 194, 0.09), transparent 55%),
    radial-gradient(ellipse 45% 40% at 95% 90%, rgba(27, 143, 191, 0.08), transparent 50%),
    linear-gradient(180deg, var(--lm-white) 0%, var(--lm-light) 45%, #eef3f9 100%);
}

.lm-why-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: min(1120px, 100%);
  margin: 0 auto;
  border-radius: var(--lm-radius-xl);
  border: 1px solid var(--lm-line-strong);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(244, 247, 251, 0.98) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 24px 60px rgba(10, 37, 64, 0.1);
  padding: clamp(22px, 3.5vw, 36px);
}

.lm-why-shell-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.lm-why-shell-glow {
  position: absolute;
  top: -20%;
  right: -12%;
  width: min(480px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 143, 191, 0.13), transparent 68%);
}

.lm-why-shell-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(10, 37, 64, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 37, 64, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 80%);
}

.lm-why-shell-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: clamp(18px, 2.6vw, 26px);
  padding-bottom: clamp(16px, 2.2vw, 22px);
  border-bottom: 1px solid var(--lm-line);
}

.lm-why-shell-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--lm-white);
  font-size: 1.15rem;
  background: var(--lm-grad-primary);
  box-shadow:
    0 10px 24px rgba(10, 102, 194, 0.28),
    0 0 0 4px rgba(27, 143, 191, 0.12);
}

.lm-why-shell-head p {
  margin: 0;
  padding-top: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.4;
  color: var(--lm-navy);
}

.lm-why-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}

.lm-why-card {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 148px;
  padding: 18px 16px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--lm-line);
  box-shadow: 0 8px 22px rgba(10, 37, 64, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lm-why-card:nth-child(n + 5) {
  grid-column: span 4;
}

.lm-why-card:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 102, 194, 0.22);
  box-shadow: 0 14px 30px rgba(10, 37, 64, 0.08);
}

.lm-why-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--lm-primary);
  background: linear-gradient(145deg, rgba(10, 102, 194, 0.1) 0%, rgba(27, 143, 191, 0.12) 100%);
  border: 1px solid rgba(10, 102, 194, 0.14);
  font-size: 0.95rem;
}

.lm-why-card:nth-child(even) .lm-why-card-icon {
  color: var(--lm-secondary);
  background: linear-gradient(145deg, rgba(27, 143, 191, 0.1) 0%, rgba(10, 102, 194, 0.08) 100%);
  border-color: rgba(27, 143, 191, 0.18);
}

.lm-why-card h3,
.lm-why-card-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--lm-navy);
  margin: 0;
}

.lm-why-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ============================================================
   READY — dark conversion band
   ============================================================ */
.lm-ready {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 6.5vw, 84px) 0;
  background: var(--lm-grad-dark);
  color: var(--lm-white);
}

.lm-ready::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 55% at 85% 15%, rgba(255, 255, 255, 0.1), transparent 55%),
    radial-gradient(ellipse 35% 40% at 10% 90%, rgba(27, 143, 191, 0.15), transparent 50%);
  pointer-events: none;
}

.lm-ready-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

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

.lm-ready-inner .kicker {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 16px;
}

.lm-ready-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.9vw, 2.1rem);
  font-weight: 800;
  color: var(--lm-white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.lm-ready-inner p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  font-size: clamp(0.92rem, 1.4vw, 1.02rem);
  margin-bottom: 10px;
}

.lm-ready-btn {
  margin-top: 18px;
  background: var(--lm-white);
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: var(--lm-navy) !important;
  border-radius: 999px;
  min-height: 48px;
  padding-inline: 22px;
  max-width: 100%;
  white-space: normal;
  height: auto;
  text-wrap: balance;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.lm-ready-btn:hover {
  background: #f0f7ff;
  color: var(--lm-primary) !important;
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.lm-page .lm-ready .btn-primary {
  background: var(--lm-white);
  color: var(--lm-navy);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.lm-page .lm-ready .btn-primary:hover {
  background: #f0f7ff;
  color: var(--lm-primary);
  filter: none;
}

/* ============================================================
   FAQ
   ============================================================ */
.lm-page .lm-faq {
  background: var(--lm-light);
  padding-top: var(--lm-section-y);
  padding-bottom: calc(var(--lm-section-y) * 0.75);
}

.lm-page .lm-faq .section-head,
.lm-page .lm-faq .lm-section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.lm-page .lm-faq .acc-item {
  background: var(--lm-white);
  border: 1px solid var(--lm-line);
  border-radius: var(--lm-radius);
  box-shadow: var(--lm-shadow);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.lm-page .lm-faq .acc-item:hover {
  border-color: rgba(10, 102, 194, 0.2);
}

.lm-page .lm-faq .acc-item.is-open,
.lm-page .lm-faq .acc-item[open] {
  border-color: rgba(10, 102, 194, 0.28);
  box-shadow: var(--lm-shadow-hover);
}

.lm-page .lm-faq .acc-header {
  min-height: 52px;
  padding-block: 16px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--lm-navy);
  cursor: pointer;
  transition: color 0.2s ease;
}

.lm-page .lm-faq .acc-header:hover {
  color: var(--lm-primary);
}

.lm-page .lm-faq .acc-item + .acc-item {
  margin-top: 10px;
}

.lm-page .lm-faq .acc-body {
  color: var(--lm-muted);
  line-height: 1.7;
}

.lm-page .final-cta,
.lm-page .lm-contact {
  padding-top: calc(var(--lm-section-y) * 0.85);
}

.lm-page .final-cta .cta-grid,
.lm-page .lm-contact .cta-grid {
  align-items: start;
}

.lm-page .final-cta .btn-primary,
.lm-page .lm-contact .btn-primary {
  background: var(--grad-brand);
  border: none;
  border-radius: var(--radius, 12px);
  color: #fff;
  box-shadow: 0 10px 24px rgba(18, 99, 251, 0.3);
  filter: none;
}

.lm-page .final-cta .btn-primary:hover,
.lm-page .lm-contact .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(18, 99, 251, 0.42);
  filter: none;
  color: #fff;
}

.lm-page .btn:focus-visible,
.lm-page .lm-faq .acc-header:focus-visible,
.lm-page a:focus-visible {
  outline: 2px solid var(--lm-secondary);
  outline-offset: 3px;
}

.lm-page .final-cta a:focus-visible,
.lm-page .lm-contact a:focus-visible,
.lm-page .final-cta .btn:focus-visible,
.lm-page .lm-contact .btn:focus-visible {
  outline-color: var(--blue, #1263FB);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .lm-hero-inner {
    gap: clamp(22px, 3vw, 40px);
  }

  .lm-process-track::before {
    display: none;
  }
}

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

  .lm-why-card,
  .lm-why-card:nth-child(n + 5) {
    grid-column: span 6;
  }

  .lm-process-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lm-process-step:nth-child(4) {
    grid-column: 2;
  }

  .lm-process-step:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 1024px) {
  .lm-report-metrics {
    grid-template-columns: 1fr;
  }

  .lm-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lm-hero-copy {
    text-align: center;
  }

  .lm-hero-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .lm-hero-cta {
    justify-content: center;
  }

  .lm-hero-visual {
    min-height: 0;
    max-width: 560px;
    width: 100%;
    margin-inline: auto;
  }

  .lm-hero-sub,
  .lm-hero-lead,
  .lm-hero-copy h1 {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .lm-hero {
    min-height: 0;
  }
}

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

  .lm-process-step:nth-child(4),
  .lm-process-step:nth-child(5) {
    grid-column: auto;
  }

  .lm-process-step:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 420px;
    width: 100%;
    justify-self: center;
  }

  .lm-service-row {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      'num icon'
      'body body';
  }

  .lm-service-num {
    grid-area: num;
    padding-top: 0;
    align-self: center;
  }

  .lm-service-icon {
    grid-area: icon;
    justify-self: start;
  }

  .lm-service-body {
    grid-area: body;
  }
}

@media (max-width: 768px) {
  .lm-audience-table,
  .lm-audience-table thead,
  .lm-audience-table tbody,
  .lm-audience-table tr,
  .lm-audience-table td,
  .lm-audience-table th {
    display: block;
    width: 100%;
  }

  .lm-audience-table thead {
    display: none;
  }

  .lm-audience-table tr {
    padding: 14px 16px;
    border-bottom: 1px solid var(--lm-line);
  }

  .lm-audience-table tbody tr:last-child {
    border-bottom: 0;
  }

  .lm-audience-table td {
    padding: 8px 0;
    border-bottom: 0;
  }

  .lm-audience-table td::before {
    content: attr(data-label);
    display: block;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--lm-primary);
    margin-bottom: 4px;
  }
}

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

  .lm-outcome-card {
    min-height: 0;
  }

  .lm-why-shell-head {
    flex-direction: column;
  }

  .lm-why-card,
  .lm-why-card:nth-child(n + 5) {
    grid-column: span 12;
    min-height: 0;
  }

  .lm-process-track {
    grid-template-columns: 1fr;
  }

  .lm-process-step {
    min-height: 0;
  }

  .lm-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .lm-hero-cta .btn,
  .lm-ready-btn {
    width: 100%;
  }

  .lm-feed-metrics {
    grid-template-columns: 1fr;
  }

  .lm-problem-shell-head {
    flex-direction: column;
  }

  .lm-problem-insight {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .lm-problem-card,
  .lm-problem-card:nth-child(n + 5) {
    grid-column: span 6;
  }
}

@media (max-width: 560px) {
  .lm-problem-card,
  .lm-problem-card:nth-child(n + 5) {
    grid-column: span 12;
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .lm-service-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      'icon'
      'num'
      'body';
    text-align: left;
  }

  .lm-service-num {
    padding-top: 0;
  }

  .lm-service-icon {
    justify-self: start;
  }
}

@media (max-width: 480px) {
  .lm-page .section {
    padding: clamp(56px, 12vw, 72px) 0;
  }

  .lm-report-metric-value {
    font-size: clamp(2.2rem, 10vw, 2.8rem);
  }
}
