/* ---------- Little Rock Digital Marketing Landing Page ---------- */
/* iprovonline.com/little-rock-digital-marketing/                 */

/* ---------- Custom Properties ---------- */
:root {
  --lrdm-accent: #3ecf8e;
  --lrdm-accent-text: #1b7d52;
  --lrdm-accent-hover: #35b87d;
  --lrdm-accent-subtle: rgba(62, 207, 142, 0.10);
  --lrdm-accent-border: rgba(62, 207, 142, 0.28);
  --lrdm-dark: #1a1a2e;
  --lrdm-dark-card: #242442;
  --lrdm-dark-card-hover: #2c2c52;
  --lrdm-light-bg: #f8f9fa;
  --lrdm-white: #ffffff;
  --lrdm-black: #111111;
  --lrdm-gray-text: #555555;
  --lrdm-border: #e4e4e4;
  --lrdm-radius: 12px;
  --lrdm-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.06);
  --lrdm-shadow-hover: 0 4px 8px rgba(0,0,0,0.06), 0 12px 32px rgba(0,0,0,0.10);
  --lrdm-shadow-dark: 0 4px 16px rgba(0,0,0,0.25);
  --lrdm-max-width: 1200px;
  --lrdm-font: 'Poppins', sans-serif;
  --lrdm-font-display: 'Archivo', 'Poppins', sans-serif;
  --lrdm-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
[class^="lrdm-"],
[class*=" lrdm-"] {
  box-sizing: border-box;
}

/* ---------- WordPress Overrides ---------- */
.entry-content p:empty {
  display: none;
  margin: 0;
  padding: 0;
}

/* Hide Genesis entry title (page uses custom lrdm-h1 instead) */
.page-id-8241 .entry-header {
  display: none;
}

/* Break landing page out of Altitude Pro's 860px content column */
.page-id-8241 .content-sidebar-wrap {
  padding: 0;
}
.page-id-8241 .content {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* ---------- Layout ---------- */
.lrdm-container {
  max-width: var(--lrdm-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
.lrdm-h1 {
  font-family: var(--lrdm-font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--lrdm-black);
  margin: 0 0 20px;
  text-wrap: balance;
}

.lrdm-h2 {
  font-family: var(--lrdm-font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--lrdm-black);
  margin: 0 0 16px;
  text-wrap: balance;
}

.lrdm-dark .lrdm-h2 {
  color: var(--lrdm-white);
}

.lrdm-accent {
  color: var(--lrdm-accent-text);
}

.lrdm-overline {
  display: block;
  font-family: var(--lrdm-font);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--lrdm-accent-text);
  margin-bottom: 12px;
}

.lrdm-dark .lrdm-overline,
.lrdm-cta-primary .lrdm-overline {
  color: var(--lrdm-accent);
}

.lrdm-intro {
  font-family: var(--lrdm-font);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--lrdm-gray-text);
  max-width: 72ch;
  margin: 0 0 40px;
}

.lrdm-dark .lrdm-intro {
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- Buttons ---------- */
.lrdm-btn {
  display: inline-block;
  font-family: var(--lrdm-font);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  transition:
    background-color 0.18s var(--lrdm-ease),
    border-color 0.18s var(--lrdm-ease),
    color 0.18s var(--lrdm-ease),
    box-shadow 0.18s var(--lrdm-ease),
    transform 0.18s var(--lrdm-ease);
  cursor: pointer;
  border: 2px solid transparent;
  outline: none;
}

.lrdm-btn:focus-visible {
  outline: 3px solid var(--lrdm-accent);
  outline-offset: 3px;
}

.lrdm-btn-primary {
  background-color: var(--lrdm-accent);
  color: var(--lrdm-dark);
  border-color: var(--lrdm-accent);
}

.lrdm-btn-primary:hover {
  background-color: var(--lrdm-accent-hover);
  border-color: var(--lrdm-accent-hover);
  color: var(--lrdm-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(62, 207, 142, 0.35);
}

.lrdm-btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.lrdm-btn-secondary {
  background-color: transparent;
  color: var(--lrdm-accent);
  border-color: var(--lrdm-accent);
}

.lrdm-btn-secondary:hover {
  background-color: var(--lrdm-accent);
  color: var(--lrdm-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(62, 207, 142, 0.25);
}

.lrdm-btn-secondary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ---------- Hero ---------- */
.lrdm-hero {
  padding: 60px 0 48px;
  background: var(--lrdm-white);
  overflow: hidden;
}

.lrdm-hero-inner {
  display: flex;
  align-items: center;
  gap: 56px;
}

.lrdm-hero-content {
  flex: 1 1 55%;
  min-width: 0;
}

.lrdm-hero-image {
  flex-basis: 45%;
  flex-shrink: 0;
  display: block;
  position: relative;
  min-height: 100%;
  margin: auto;
}

.lrdm-hero-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

.lrdm-hero-sub {
  font-family: var(--lrdm-font);
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgb(74, 74, 90);
  margin: 0 0 32px;
  max-width: 58ch;
}

.lrdm-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.lrdm-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-family: var(--lrdm-font);
  font-size: 0.85rem;
  color: rgb(106, 106, 122);
}

.lrdm-trust-item {
  white-space: nowrap;
}

.lrdm-trust-sep {
  color: var(--lrdm-accent-text);
  font-size: 0.6rem;
}

/* ---------- Logo Bar ---------- */
.lrdm-logobar {
  padding: 24px 0;
  background: var(--lrdm-light-bg);
  text-align: center;
  border-top: 1px solid var(--lrdm-border);
  border-bottom: 1px solid var(--lrdm-border);
}

.lrdm-logobar-text {
  font-family: var(--lrdm-font);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgb(154, 154, 170);
  margin: 0 0 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lrdm-logobar-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 52px;
  flex-wrap: wrap;
}

.lrdm-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lrdm-logo-item img {
  height: 38px;
  width: auto;
  max-width: 140px;
  filter: grayscale(100%) opacity(0.65);
  transition: filter 0.28s;
  display: block;
  object-fit: contain;
}

.lrdm-logo-item img:hover {
  filter: grayscale(20%) opacity(0.85);
}

/* CareLink SVG has white fills, needs invert to show on light bg */
.lrdm-logo-item:last-child img {
  filter: grayscale(100%) opacity(0.65) invert(1);
}
.lrdm-logo-item:last-child img:hover {
  filter: grayscale(20%) opacity(0.85) invert(1);
}

/* ---------- Section Spacing ---------- */
.lrdm-services,
.lrdm-pathfinder,
.lrdm-stats,
.lrdm-process,
.lrdm-faq {
  padding: 72px 0;
}

.lrdm-services {
  background: var(--lrdm-white);
}

.lrdm-pathfinder {
  background: var(--lrdm-light-bg);
}

.lrdm-stats {
  background: var(--lrdm-white);
  text-align: center;
}

.lrdm-stats-sub {
  font-family: var(--lrdm-font);
  font-size: 0.95rem;
  color: var(--lrdm-gray-text);
  margin: 0 0 48px;
}

.lrdm-why-iprov {
  padding: 72px 0;
  background: var(--lrdm-dark);
}

.lrdm-process {
  background: var(--lrdm-light-bg);
}

.lrdm-faq {
  background: var(--lrdm-white);
}

/* ---------- Card Grid ---------- */
.lrdm-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lrdm-card {
  background: var(--lrdm-white);
  border: 1px solid var(--lrdm-border);
  border-radius: var(--lrdm-radius);
  padding: 32px 28px;
  box-shadow: var(--lrdm-shadow);
  display: flex;
  flex-direction: column;
}

.lrdm-card-dark {
  background: var(--lrdm-dark-card);
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: var(--lrdm-shadow-dark);
}

.lrdm-card-dark .lrdm-card-title {
  color: var(--lrdm-white);
}

.lrdm-card-dark .lrdm-card-body {
  color: rgba(255, 255, 255, 0.68);
}

.lrdm-card-icon {
  margin-bottom: 20px;
  line-height: 0;
}

.lrdm-card-title {
  font-family: var(--lrdm-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lrdm-black);
  margin: 0 0 10px;
  line-height: 1.35;
}

.lrdm-card-body {
  font-family: var(--lrdm-font);
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--lrdm-gray-text);
  margin: 0;
}

/* ---------- Pathfinder ---------- */
.lrdm-pathfinder .lrdm-card {
  border: none;
  box-shadow: none;
  border-radius: 0;
  border-top: 3px solid var(--lrdm-accent);
  background: transparent;
  padding: 24px 4px;
}

/* Why iProv: 2-column layout to break card grid monotony */
.lrdm-why-iprov .lrdm-card-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.lrdm-pathfinder-flow {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 48px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.lrdm-flow-step {
  font-family: var(--lrdm-font);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--lrdm-gray-text);
  flex: 1 1 200px;
  text-align: center;
  padding: 20px;
  background: var(--lrdm-white);
  border: 1px solid var(--lrdm-border);
  border-radius: var(--lrdm-radius);
  box-shadow: var(--lrdm-shadow);
}

.lrdm-flow-label {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--lrdm-accent-text);
  margin-bottom: 6px;
}

.lrdm-flow-arrow {
  font-size: 1.5rem;
  color: var(--lrdm-accent-text);
  font-weight: 700;
  flex-shrink: 0;
}

.lrdm-block-cta {
  text-align: center;
  margin-top: 36px;
}

/* ---------- Stats ---------- */
.lrdm-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lrdm-stat-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
  margin: 0 auto;
}

.lrdm-stat-tile {
  background: var(--lrdm-white);
  border: 1px solid var(--lrdm-border);
  border-radius: var(--lrdm-radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--lrdm-shadow);
  transition:
    box-shadow 0.22s var(--lrdm-ease),
    transform 0.22s var(--lrdm-ease);
}

.lrdm-stat-number {
  display: block;
  font-family: var(--lrdm-font);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--lrdm-accent-text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.lrdm-stat-label {
  display: block;
  font-family: var(--lrdm-font);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--lrdm-gray-text);
}

/* ---------- Process Timeline ---------- */
.lrdm-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  align-items: start;
}

.lrdm-timeline::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(10% + 16px);
  right: calc(10% + 16px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lrdm-accent-border) 12%, var(--lrdm-accent-border) 88%, transparent);
  z-index: 0;
  pointer-events: none;
}

.lrdm-timeline-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.lrdm-step-num {
  font-family: var(--lrdm-font);
  font-size: clamp(2.6rem, 3.6vw, 3.8rem);
  font-weight: 800;
  color: var(--lrdm-accent-text);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  background: var(--lrdm-light-bg);
  padding-right: 10px;
}

.lrdm-timeline-marker {
  display: none;
}

.lrdm-timeline-content {
  background: var(--lrdm-white);
  border-top: 3px solid var(--lrdm-accent);
  border-radius: var(--lrdm-radius);
  padding: 18px 16px 22px;
  box-shadow: var(--lrdm-shadow);
  width: 100%;
  flex: 1;
}

.lrdm-step-phase {
  font-family: var(--lrdm-font);
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--lrdm-accent-text);
  margin: 0 0 5px;
}

.lrdm-step-title {
  font-family: var(--lrdm-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lrdm-black);
  margin: 0 0 10px;
  line-height: 1.3;
}

.lrdm-step-body {
  font-family: var(--lrdm-font);
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--lrdm-gray-text);
  margin: 0;
}

/* ---------- FAQ ---------- */
.lrdm-faq-centered {
  text-align: center;
}

.lrdm-faq-centered .lrdm-overline,
.lrdm-faq-centered .lrdm-h2 {
  text-align: center;
}

.lrdm-faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.lrdm-faq-item {
  border-bottom: 1px solid var(--lrdm-border);
}

.lrdm-faq-item:first-child {
  border-top: 1px solid var(--lrdm-border);
}

.lrdm-faq-question {
  font-family: var(--lrdm-font);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--lrdm-black);
  padding: 22px 48px 22px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.15s;
  user-select: none;
}

.lrdm-faq-question:hover {
  color: var(--lrdm-accent-text);
}

.lrdm-faq-question::-webkit-details-marker {
  display: none;
}

.lrdm-faq-question::marker {
  display: none;
  content: '';
}

.lrdm-faq-question::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--lrdm-accent);
  background: var(--lrdm-accent-subtle);
  border-radius: 50%;
  line-height: 1;
  transition: background 0.15s;
}

.lrdm-faq-item[open] .lrdm-faq-question::after {
  content: '\2212';
  background: rgba(62, 207, 142, 0.18);
}

.lrdm-faq-answer {
  padding: 0 0 22px;
  animation: lrdm-open 0.22s var(--lrdm-ease) both;
}

.lrdm-faq-answer p {
  font-family: var(--lrdm-font);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--lrdm-gray-text);
  margin: 0;
  max-width: 65ch;
}

/* ---------- Keyframes ---------- */
@keyframes lrdm-open {
  0% { opacity: 0; transform: translateY(-6px); }
  100% { opacity: 1; transform: translateY(0); }
}

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

/* ---------- CTA Primary ---------- */
.lrdm-cta-primary {
  padding: 100px 0 0;
  background: var(--lrdm-dark);
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.lrdm-cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(62, 207, 142, 0.024) 35%, rgba(62, 207, 142, 0.055) 100%);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
  z-index: 0;
}

.lrdm-cta-glow {
  position: absolute;
  right: 3%;
  bottom: -14%;
  width: 820px;
  height: 820px;
  background: radial-gradient(circle at 52% 50%, rgba(62, 207, 142, 0.32) 0%, rgba(62, 207, 142, 0.14) 24%, rgba(62, 207, 142, 0.05) 48%, transparent 66%);
  pointer-events: none;
  z-index: 0;
}

.lrdm-cta-glow::before {
  content: '';
  position: absolute;
  inset: 13%;
  border: 1.5px solid rgba(62, 207, 142, 0.13);
  border-radius: 50%;
  animation: lrdm-glow-pulse 4.5s ease-in-out infinite;
}

.lrdm-cta-glow::after {
  content: '';
  position: absolute;
  inset: 31%;
  border: 1px solid rgba(62, 207, 142, 0.2);
  border-radius: 50%;
  animation: lrdm-glow-pulse 4.5s ease-in-out 1.5s infinite;
}

.lrdm-cta-astronaut {
  position: absolute;
  right: -2%;
  bottom: 0;
  width: 52%;
  max-width: 660px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  clip-path: polygon(20% 8%, 100% 0%, 100% 100%, 0% 100%);
}

.lrdm-cta-astronaut img {
  display: block;
  width: 100%;
  height: auto;
}

.lrdm-cta-badge {
  position: absolute;
  right: 48%;
  top: 44%;
  transform: translateY(-50%);
  background: rgba(20, 20, 36, 0.88);
  border: 1px solid rgba(62, 207, 142, 0.4);
  border-radius: 14px;
  padding: 18px 24px;
  z-index: 4;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lrdm-cta-badge-num {
  display: block;
  font-family: var(--lrdm-font);
  font-size: 2rem;
  font-weight: 800;
  color: var(--lrdm-accent);
  letter-spacing: -0.05em;
  line-height: 1;
}

.lrdm-cta-badge-label {
  display: block;
  font-family: var(--lrdm-font);
  font-size: 0.67rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 7px;
  line-height: 1.5;
}

.lrdm-cta-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 460px;
  padding-bottom: 100px;
}

.lrdm-cta-content {
  flex: 0 0 52%;
  max-width: 52%;
}

.lrdm-cta-primary .lrdm-h2 {
  color: var(--lrdm-white);
}

.lrdm-cta-body {
  font-family: var(--lrdm-font);
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  max-width: 56ch;
  margin: 0 0 36px;
  text-wrap: pretty;
}

.lrdm-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Scroll Entrance Animations ---------- */
/* Content is fully visible by default. Animations enhance, never gate. */
.lrdm-reveal {
  opacity: 1;
  transform: translateY(0);
}

.lrdm-animate .lrdm-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--lrdm-ease), transform 0.5s var(--lrdm-ease);
}

.lrdm-animate .lrdm-reveal.lrdm-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children within card grids */
.lrdm-animate .lrdm-card-grid .lrdm-card.lrdm-in { transition-delay: 0s; }
.lrdm-animate .lrdm-card-grid .lrdm-card:nth-child(2).lrdm-in { transition-delay: 0.08s; }
.lrdm-animate .lrdm-card-grid .lrdm-card:nth-child(3).lrdm-in { transition-delay: 0.16s; }
.lrdm-animate .lrdm-card-grid .lrdm-card:nth-child(4).lrdm-in { transition-delay: 0.24s; }
.lrdm-animate .lrdm-card-grid .lrdm-card:nth-child(5).lrdm-in { transition-delay: 0.32s; }
.lrdm-animate .lrdm-card-grid .lrdm-card:nth-child(6).lrdm-in { transition-delay: 0.40s; }

/* Timeline steps stagger */
.lrdm-animate .lrdm-timeline-step.lrdm-in { transition-delay: 0s; }
.lrdm-animate .lrdm-timeline-step:nth-child(2).lrdm-in { transition-delay: 0.08s; }
.lrdm-animate .lrdm-timeline-step:nth-child(3).lrdm-in { transition-delay: 0.12s; }
.lrdm-animate .lrdm-timeline-step:nth-child(4).lrdm-in { transition-delay: 0.16s; }
.lrdm-animate .lrdm-timeline-step:nth-child(5).lrdm-in { transition-delay: 0.20s; }

/* Stat tiles stagger */
.lrdm-animate .lrdm-stat-tile.lrdm-in { transition-delay: 0s; }
.lrdm-animate .lrdm-stat-tile:nth-child(2).lrdm-in { transition-delay: 0.1s; }

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .lrdm-btn,
  .lrdm-card,
  .lrdm-stat-tile,
  .lrdm-faq-question,
  .lrdm-faq-question::after {
    transition: none;
  }
  .lrdm-faq-answer {
    animation: none;
  }
  .lrdm-cta-glow::before,
  .lrdm-cta-glow::after {
    animation: none;
  }
  /* Disable scroll reveals for reduced motion */
  .lrdm-animate .lrdm-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Tablet (max-width: 1024px) ---------- */
@media (max-width: 1024px) {
  .lrdm-hero {
    padding: 72px 0 56px;
  }
  .lrdm-hero-inner {
    gap: 36px;
  }
  .lrdm-hero-content {
    flex: 1 1 58%;
  }
  .lrdm-hero-image {
    flex-basis: 42%;
    flex-shrink: 0;
  }
  .lrdm-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lrdm-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lrdm-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
  .lrdm-timeline::before {
    display: none;
  }
  .lrdm-step-body {
    font-size: 0.82rem;
  }
  .lrdm-cta-primary {
    min-height: 500px;
  }
  .lrdm-cta-astronaut {
    width: 46%;
  }
  .lrdm-cta-inner {
    min-height: 400px;
    padding-bottom: 80px;
  }
  .lrdm-cta-content {
    flex: 0 0 56%;
    max-width: 56%;
  }
  .lrdm-cta-badge {
    right: 44%;
    top: 46%;
  }
  .lrdm-services,
  .lrdm-pathfinder,
  .lrdm-stats,
  .lrdm-why-iprov,
  .lrdm-process,
  .lrdm-faq,
  .lrdm-cta-primary,
  .lrdm-cta-secondary {
    padding: 80px 0;
  }
}

/* ---------- Mobile (max-width: 768px) ---------- */
@media (max-width: 768px) {
  .lrdm-hero {
    padding: 56px 0 48px;
  }
  .lrdm-hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .lrdm-hero-content {
    flex: 1 1 100%;
  }
  .lrdm-hero-image {
    display: none;
  }
  .lrdm-hero .inner-block-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .lrdm-hero .inner-block-buttons br {
    display: none;
  }
  .lrdm-hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .lrdm-hero-ctas {
    justify-content: center;
  }
  .lrdm-trust {
    justify-content: center;
  }
  .lrdm-card-grid,
  .lrdm-why-iprov .lrdm-card-grid {
    grid-template-columns: 1fr;
  }
  .lrdm-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lrdm-flow-arrow {
    display: block;
    text-align: center;
    width: 100%;
    transform: rotate(90deg);
    font-size: 1.2rem;
    margin: -8px 0;
  }
  .lrdm-services,
  .lrdm-pathfinder,
  .lrdm-stats,
  .lrdm-why-iprov,
  .lrdm-process,
  .lrdm-faq,
  .lrdm-cta-primary,
  .lrdm-cta-secondary {
    padding: 64px 0;
  }
  .lrdm-arc-callout {
    padding: 22px 24px;
  }
  .lrdm-timeline {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-left: 0;
  }
  .lrdm-timeline::before {
    display: none;
  }
  .lrdm-timeline-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }
  .lrdm-step-num {
    font-size: 2.4rem;
    margin-bottom: 0;
    flex-shrink: 0;
    padding-right: 0;
    min-width: 56px;
    line-height: 1.1;
  }
  .lrdm-timeline-content {
    flex: 1;
  }
  .lrdm-cta-primary {
    padding: 64px 0 0;
    min-height: auto;
    overflow: hidden;
  }
  .lrdm-cta-primary::before {
    display: none;
  }
  .lrdm-cta-inner {
    min-height: auto;
    padding-bottom: 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .lrdm-cta-content {
    flex: 0 0 auto;
    max-width: 100%;
    padding-bottom: 32px;
  }
  .lrdm-cta-astronaut {
    display: none;
  }
  .lrdm-cta-glow {
    display: none;
  }
  .lrdm-cta-badge {
    display: none;
  }
  .lrdm-cta-glow {
    right: -10%;
    width: 400px;
    height: 400px;
  }
  .lrdm-logobar-logos {
    gap: 20px 36px;
  }
  .lrdm-logo-item img {
    height: 30px;
    max-width: 110px;
  }
}

/* ---------- Small Mobile (max-width: 480px) ---------- */
@media (max-width: 480px) {
  .lrdm-container {
    padding: 0 18px;
  }
  .lrdm-btn {
    padding: 13px 24px;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
  }
  .lrdm-hero-ctas {
    flex-direction: column;
  }
  .lrdm-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .lrdm-cta-buttons .lrdm-btn {
    max-width: 320px;
  }
  .lrdm-stat-grid {
    grid-template-columns: 1fr;
  }
  .lrdm-stat-number {
    font-size: 2.2rem;
  }
  .lrdm-card {
    padding: 26px 22px;
  }
  .lrdm-services,
  .lrdm-pathfinder,
  .lrdm-stats,
  .lrdm-why-iprov,
  .lrdm-process,
  .lrdm-faq,
  .lrdm-cta-primary,
  .lrdm-cta-secondary {
    padding: 52px 0;
  }
}
