/* ════════════════════════════════════════════════════════════════
   RESLUDE PAGE — DEDICATED STYLESHEET
   Extends style.css — same dark theme, ResLude green accent (#0de283)
════════════════════════════════════════════════════════════════ */

/* style.css already applies page-fade-in on body — no duplication needed */

:root {
  --rl-green: #0de283;
  --rl-green-glow: rgba(13, 226, 131, 0.25);
  --rl-green-dim: rgba(13, 226, 131, 0.1);
}

/* ── SHARED SECTION HELPERS ── */
.rl-section { padding: 120px 0; position: relative; z-index: 1; }

.rl-section-header { text-align: center; margin-bottom: 72px; }
.rl-tag {
  display: inline-block; padding: 7px 20px; border-radius: 999px;
  background: var(--rl-green-dim); border: 1px solid rgba(13,226,131,0.2);
  color: var(--rl-green); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 20px;
}
.rl-section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff;
  line-height: 1.2; margin-bottom: 16px;
}
[dir="rtl"] .rl-section-title { line-height: 1.4; }
.rl-section-desc { color: var(--clr-text-muted); font-size: 1.1rem; max-width: 680px; margin: 0 auto; }
.rl-text-green { color: var(--rl-green); text-shadow: 0 0 30px var(--rl-green-glow); }

/* ── HERO ── */
.rl-hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 100px; background: var(--clr-bg-deep);
  position: relative; overflow: hidden;
}
.rl-hero__bg-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(13,226,131,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(13,226,131,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}
.rl-hero__glow {
  position: absolute; top: 20%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(13,226,131,0.08) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.rl-hero__inner {
  position: relative; z-index: 2; display: grid;
  grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%;
}
@media (max-width: 992px) {
  .rl-hero__inner { grid-template-columns: 1fr; text-align: center; }
}

.rl-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--rl-green-dim); border: 1px solid rgba(13,226,131,0.2);
  padding: 10px 20px; border-radius: 12px; margin-bottom: 28px;
}
.rl-badge__logo { height: 28px; width: auto; object-fit: contain; }

.rl-hero__title {
  font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 900;
  line-height: 1.1; color: #fff; margin-bottom: 24px;
}
[dir="rtl"] .rl-hero__title { font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.35; }

.rl-hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem); color: var(--clr-text-muted);
  max-width: 580px; margin-bottom: 40px; line-height: 1.75;
}
@media (max-width: 992px) { .rl-hero__sub { margin: 0 auto 40px; } }

/* Hero elements start hidden — GSAP reveals them */
.rl-badge,
.rl-hero__title,
.rl-hero__sub,
.rl-hero__cta > *,
.rl-orbit,
.rl-orbit__dot {
  opacity: 0;
}
.rl-hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 992px) { .rl-hero__cta { justify-content: center; } }
@media (max-width: 600px) {
  .rl-hero__cta { flex-direction: column; }
  .rl-hero__cta .btn { width: 100%; justify-content: center; }
}

/* Orbit Visual */
.rl-hero__visual {
  display: flex; align-items: center; justify-content: center;
  height: 480px; position: relative;
}
@media (max-width: 992px) { .rl-hero__visual { height: 340px; } }

.rl-orbit { position: relative; width: 340px; height: 340px; }
@media (max-width: 992px) { .rl-orbit { width: 240px; height: 240px; } }

.rl-orbit__ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(13,226,131,0.15);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.rl-orbit__ring--1 {
  width: 100%; height: 100%;
  animation: rl-spin 18s linear infinite;
  border-style: dashed;
}
.rl-orbit__ring--2 {
  width: 140%; height: 140%;
  animation: rl-spin 30s linear infinite reverse;
  border-color: rgba(13,226,131,0.07);
}
@keyframes rl-spin { 100% { transform: translate(-50%,-50%) rotate(360deg); } }

.rl-orbit__core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle, rgba(13,226,131,0.15), rgba(5,6,10,0.9));
  border: 1px solid rgba(13,226,131,0.3);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 60px rgba(13,226,131,0.15);
  z-index: 2;
}
.rl-orbit__core img { height: 80px; width: auto; object-fit: contain; }
@media (max-width: 992px) {
  .rl-orbit__core { width: 80px; height: 80px; }
  .rl-orbit__core img { height: 36px; }
}

.rl-orbit__dot {
  position: absolute; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(11,14,23,0.9); border: 1px solid rgba(13,226,131,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--rl-green); font-size: 1rem;
  box-shadow: 0 0 20px rgba(13,226,131,0.15);
  top: 50%; left: 50%; margin-top: -22px; margin-left: -22px;
}
@media (max-width: 992px) {
  .rl-orbit__dot { width: 32px; height: 32px; margin-top: -16px; margin-left: -16px; font-size: 0.8rem; }
}

/* Dot positions around orbit */
.rl-orbit__dot--1 { transform: translate(0, -170px); animation: rl-float 4s ease-in-out infinite; }
.rl-orbit__dot--2 { transform: translate(162px, -52px); animation: rl-float 5s ease-in-out infinite 0.5s; }
.rl-orbit__dot--3 { transform: translate(100px, 140px); animation: rl-float 6s ease-in-out infinite 1s; }
.rl-orbit__dot--4 { transform: translate(-100px, 140px); animation: rl-float 4.5s ease-in-out infinite 1.5s; }
.rl-orbit__dot--5 { transform: translate(-162px, -52px); animation: rl-float 5.5s ease-in-out infinite 2s; }

@media (max-width: 992px) {
  .rl-orbit__dot--1 { transform: translate(0, -120px); }
  .rl-orbit__dot--2 { transform: translate(114px, -37px); }
  .rl-orbit__dot--3 { transform: translate(70px, 98px); }
  .rl-orbit__dot--4 { transform: translate(-70px, 98px); }
  .rl-orbit__dot--5 { transform: translate(-114px, -37px); }
}

@keyframes rl-float {
  0%, 100% { box-shadow: 0 0 20px rgba(13,226,131,0.15); }
  50% { box-shadow: 0 0 35px rgba(13,226,131,0.4); transform: translate(var(--tx, 0), calc(var(--ty, 0) - 6px)); }
}

/* ── VIDEO ── */
.rl-video { background: var(--clr-bg-deep); }
.rl-video-wrapper {
  display: flex; justify-content: center;
}
.rl-video-frame {
  position: relative; width: 100%; max-width: 900px;
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(13,226,131,0.15);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(13,226,131,0.08);
  aspect-ratio: 16 / 9;
}
.rl-video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── CHALLENGES ── */
.rl-challenges { background: var(--clr-bg-surface); }
.rl-challenges-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 1024px) { .rl-challenges-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .rl-challenges-grid { grid-template-columns: 1fr; } }

.rl-challenge-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px; padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s;
  opacity: 0; transform: translateY(30px);
}
.rl-challenge-card.is-visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s, box-shadow 0.3s;
}
.rl-challenge-card:hover {
  border-color: rgba(13,226,131,0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transform: translateY(-4px);
}
.rl-challenge-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--rl-green-dim); border: 1px solid rgba(13,226,131,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--rl-green); font-size: 1.4rem; margin-bottom: 20px;
}
.rl-challenge-card h3 { font-size: 1.15rem; color: #fff; margin-bottom: 10px; }
.rl-challenge-card p { font-size: 0.95rem; color: var(--clr-text-muted); line-height: 1.65; }

/* ── JOURNEY ── */
.rl-journey { background: var(--clr-bg-deep); }
.rl-journey-track {
  display: flex; align-items: flex-start; gap: 0;
  position: relative;
}
@media (max-width: 992px) {
  .rl-journey-track { flex-direction: column; align-items: stretch; }
}

.rl-journey-step {
  flex: 1; text-align: center; padding: 0 16px; position: relative;
  opacity: 0; transform: translateY(30px);
}
.rl-journey-step.is-visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (max-width: 992px) {
  .rl-journey-step {
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 14px; padding: 24px 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05); border-radius: 16px;
    text-align: start;
  }
}

.rl-journey-num {
  font-size: 0.75rem; font-weight: 800; color: var(--rl-green);
  letter-spacing: 2px; margin-bottom: 16px;
}
@media (max-width: 992px) {
  .rl-journey-num { margin-bottom: 0; }
}

.rl-journey-icon {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 20px;
  border: 1px solid rgba(13,226,131,0.15);
}
@media (max-width: 992px) {
  .rl-journey-icon { width: 48px; height: 48px; font-size: 1.2rem; margin: 0; }
}

.rl-journey-step h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.rl-journey-step p { font-size: 0.9rem; color: var(--clr-text-muted); line-height: 1.65; width: 100%; }

.rl-journey-connector {
  width: 60px; flex-shrink: 0; display: flex; align-items: flex-start;
  padding-top: 100px; justify-content: center;
}
.rl-journey-connector::before {
  content: ''; display: block;
  width: 100%; height: 1px;
  background: linear-gradient(to right, rgba(13,226,131,0.4), rgba(13,226,131,0.1));
}
@media (max-width: 992px) {
  .rl-journey-connector {
    width: auto; height: 32px; padding-top: 0;
    align-items: center; justify-content: flex-start; padding-left: 40px;
  }
  .rl-journey-connector::before {
    width: 1px; height: 100%;
    background: linear-gradient(to bottom, rgba(13,226,131,0.4), rgba(13,226,131,0.1));
  }
}

/* ── COMPONENTS ── */
.rl-components { background: var(--clr-bg-surface); }
.rl-comp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 1100px) { .rl-comp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .rl-comp-grid { grid-template-columns: 1fr; } }

.rl-comp-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 36px 32px;
  opacity: 0; transform: translateY(30px);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.rl-comp-card.is-visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s, box-shadow 0.3s;
}
.rl-comp-card:hover {
  border-color: rgba(13,226,131,0.2);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  transform: translateY(-6px);
}
.rl-comp-card--featured {
  border-color: rgba(13,226,131,0.2);
  background: linear-gradient(135deg, rgba(13,226,131,0.06), rgba(5,6,10,0.8));
  grid-column: span 1;
}
/* Make the featured card span full width on large screens */
@media (min-width: 1100px) {
  .rl-comp-card--featured { grid-column: span 1; }
  .rl-comp-grid { grid-template-columns: repeat(3, 1fr); }
  /* First card in row 2 spans 2 cols to balance 5 cards */
  .rl-comp-card:nth-child(4) { grid-column: span 1; }
  .rl-comp-card:nth-child(5) { grid-column: span 1; }
}

.rl-comp-num {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 3px;
  color: var(--rl-green); margin-bottom: 16px;
}
.rl-comp-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--rl-green-dim); border: 1px solid rgba(13,226,131,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--rl-green); font-size: 1.4rem; margin-bottom: 20px;
}
.rl-comp-card h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.rl-comp-card p { font-size: 0.93rem; color: var(--clr-text-muted); line-height: 1.65; margin-bottom: 20px; }

.rl-comp-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.rl-comp-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: rgba(255,255,255,0.7);
  text-align: start;
}
.rl-comp-list i { color: var(--rl-green); font-size: 0.75rem; flex-shrink: 0; margin-top: 5px; }

/* ── VALUE ── */
.rl-value { background: var(--clr-bg-deep); }
.rl-value-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .rl-value-grid { grid-template-columns: 1fr; } }

.rl-value-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 40px 32px;
  opacity: 0; transform: translateY(30px);
  transition: border-color 0.3s, transform 0.3s;
}
.rl-value-card.is-visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s;
}
.rl-value-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-4px); }
.rl-value-card--accent {
  border-color: rgba(13,226,131,0.2);
  background: linear-gradient(160deg, rgba(13,226,131,0.06), rgba(5,6,10,0.9));
}
.rl-value-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem; margin-bottom: 20px;
}
.rl-value-card h3 { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.rl-value-card p { font-size: 0.95rem; color: var(--clr-text-muted); line-height: 1.7; }
.rl-value-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.rl-value-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; color: var(--clr-text-muted);
  text-align: start;
}
.rl-value-list i { font-size: 0.4rem; color: var(--rl-green); flex-shrink: 0; margin-top: 8px; }

/* ── INTEGRATION ── */
.rl-integration { background: var(--clr-bg-surface); overflow: hidden; }
.rl-int-grid {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 32px; align-items: center;
}
@media (max-width: 900px) {
  .rl-int-grid { grid-template-columns: 1fr; }
  .rl-int-hub { order: -1; }
}

.rl-int-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 32px 28px;
  opacity: 0; transform: translateY(30px);
}
.rl-int-card.is-visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.rl-int-card:hover { border-color: rgba(13,226,131,0.2); }
.rl-int-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--rl-green-dim); border: 1px solid rgba(13,226,131,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--rl-green); font-size: 1.3rem; margin-bottom: 16px;
}
.rl-int-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.rl-int-card p { font-size: 0.9rem; color: var(--clr-text-muted); line-height: 1.65; }

/* Third card goes below on desktop - spans full bottom row */
@media (min-width: 901px) {
  .rl-int-card:nth-child(4) {
    grid-column: 1 / -1;
    max-width: 420px; margin: 0 auto;
  }
}

.rl-int-hub {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  width: 140px;
}
.rl-int-hub img {
  height: 56px; width: auto; object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(13,226,131,0.4));
}
.rl-int-hub span {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--rl-green);
}
@media (max-width: 900px) { .rl-int-hub { width: auto; padding: 24px 0; } }

/* ── CLIENTS ── */
.rl-clients { background: var(--clr-bg-deep); }
.rl-clients-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 900px) { .rl-clients-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .rl-clients-grid { grid-template-columns: 1fr; } }

.rl-client-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px; padding: 36px 28px; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 180px;
  transition: border-color 0.3s, transform 0.3s;
  opacity: 0; transform: translateY(24px);
}
.rl-client-card.is-visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s;
}
.rl-client-card:hover { border-color: rgba(13,226,131,0.25); transform: translateY(-3px); }
.rl-client-logo {
  height: 90px; width: auto; max-width: 220px;
  object-fit: contain; filter: grayscale(1) brightness(2.2) opacity(0.85);
  transition: filter 0.3s ease; margin-bottom: 14px;
}
.rl-client-card:hover .rl-client-logo {
  filter: grayscale(0) brightness(1) opacity(1);
}
.rl-client-name { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 6px; }
.rl-client-name-ar { font-size: 0.83rem; color: var(--clr-text-muted); font-family: var(--font-ar); }

/* ── CTA SECTION ── */
.rl-cta {
  padding: 120px 0; background: #030407;
  position: relative; overflow: hidden; text-align: center;
}
.rl-cta__glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(13,226,131,0.12), transparent 70%);
  pointer-events: none;
}
.rl-cta__inner { position: relative; z-index: 2; }
.rl-cta__title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff;
  margin-bottom: 16px; line-height: 1.2;
}
[dir="rtl"] .rl-cta__title { line-height: 1.4; }
.rl-cta__sub { font-size: 1.1rem; color: var(--clr-text-muted); margin-bottom: 48px; }
.rl-cta__btns {
  display: flex; justify-content: center; gap: 16px;
  flex-wrap: wrap; margin-bottom: 40px;
}
@media (max-width: 560px) {
  .rl-cta__btns { flex-direction: column; align-items: center; }
  .rl-cta__btns .btn { width: 280px; justify-content: center; }
}
.rl-cta__contact {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
  color: var(--clr-text-muted); font-size: 0.95rem;
}
.rl-cta__contact span { display: flex; align-items: center; gap: 8px; }
.rl-cta__contact i { color: var(--rl-green); }

/* ── RTL TWEAKS ── */
[dir="rtl"] .rl-journey-connector::before {
  background: linear-gradient(to left, rgba(13,226,131,0.4), rgba(13,226,131,0.1));
}

/* All cards — right-align everything */
[dir="rtl"] .rl-comp-card,
[dir="rtl"] .rl-value-card,
[dir="rtl"] .rl-challenge-card,
[dir="rtl"] .rl-int-card {
  text-align: right;
}

/* Card icons — align to right */
[dir="rtl"] .rl-comp-icon,
[dir="rtl"] .rl-challenge-icon,
[dir="rtl"] .rl-int-icon {
  margin-left: auto;
  margin-right: 0;
}
[dir="rtl"] .rl-value-icon {
  margin-left: auto;
  margin-right: 0;
}

/* comp-num sits top-right */
[dir="rtl"] .rl-comp-num { text-align: right; }

/* direction: ltr is set directly on .rl-comp-list / .rl-value-list base rules above */

/* Section headers center — keep centered */
[dir="rtl"] .rl-section-header { text-align: center; }

/* Clients center */
[dir="rtl"] .rl-client-card { text-align: center; }

/* CTA contact row */
[dir="rtl"] .rl-cta__contact { flex-direction: row-reverse; }
[dir="rtl"] .rl-cta__title,
[dir="rtl"] .rl-cta__sub { text-align: center; }

/* Hero CTA buttons */
[dir="rtl"] .rl-hero__cta { flex-direction: row-reverse; justify-content: flex-end; }
@media (max-width: 992px) {
  [dir="rtl"] .rl-hero__cta { justify-content: center; flex-direction: column; }
}

/* Integration hub label */
[dir="rtl"] .rl-int-hub span { text-align: center; }

/* ═══ MOBILE IMPROVEMENTS ═══ */
@media (max-width: 480px) {
  /* Orbit — scale down to fit, never hidden */
  .rl-hero__visual {
    height: 260px;
    margin-top: 8px;
  }
  .rl-orbit {
    width: 200px;
    height: 200px;
    transform: scale(0.85);
  }
  .rl-hero { padding-bottom: 60px; }

  .rl-section { padding: 72px 0; }
  .rl-section-header { margin-bottom: 48px; }

  .rl-hero__title { font-size: clamp(2rem, 10vw, 3rem); }
}

@media (max-width: 600px) {
  /* Section padding */
  .rl-section { padding: 80px 0; }

  /* Journey: tighter cards */
  .rl-journey-card { padding: 20px 18px; }

  /* CTA section */
  .rl-cta { padding: 80px 0; }
  .rl-cta__btns { flex-direction: column; gap: 12px; }
  .rl-cta__btns .btn { width: 100%; justify-content: center; }
}
