/* ════════════════════════════════════════════════════════════════════════
   replylo — Section Styles v2.0
   All CSS variables are prefixed --rl-
   Per-widget theme vars are injected inline via render_theme_style() in PHP
   ════════════════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ──────────────────────────────────────────────────── */
:root {
  --rl-green:          #13B980;
  --rl-green-deep:     #0a8f61;
  --rl-green-glow:     rgba(19, 185, 128, 0.35);
  --rl-black:          #262626;
  --rl-off-white:      #F8F8F8;
  --rl-light-grey:     #F2F2F2;
  --rl-white:          #ffffff;
  --rl-text:           #262626;
  --rl-text-2:         #555555;
  --rl-text-3:         #888888;
  --rl-border:         rgba(0, 0, 0, 0.07);
  --rl-border-light:   rgba(0, 0, 0, 0.04);
  --rl-orb-color:      rgba(19, 185, 128, 0.10);
  --rl-card-bg:        #ffffff;
  --rl-card-shadow:    0 1px 4px rgba(0,0,0,0.06);
  --rl-section-bg:     #F8F8F8;
  --rl-mobile-cols:    1fr;
  --rl-tablet-cols:    1fr 1fr;
  /* preset slots (overridden per-widget) */
  --rl-section-bg-preset:  #F8F8F8;
  --rl-headline-preset:    #262626;
  --rl-text-preset:        #262626;
  --rl-text2-preset:       #555;
  --rl-card-bg-preset:     #ffffff;
  --rl-card-border-preset: rgba(0,0,0,0.07);
  --rl-card-shadow-preset: 0 1px 4px rgba(0,0,0,0.06);
}

/* ── RESET & BASE ───────────────────────────────────────────────────── */
.rl-section, .rl-hero, .rl-ticker, .rl-trust, .rl-cta-fin, .rl-footer,
.rl-nav, .rl-comparison {
  box-sizing: border-box;
}
.rl-section *, .rl-hero *, .rl-ticker *, .rl-trust *, .rl-cta-fin *,
.rl-footer *, .rl-nav *, .rl-comparison * { box-sizing: border-box; }

/* ── CONTAINER ──────────────────────────────────────────────────────── */
.rl-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── SECTION BASE ───────────────────────────────────────────────────── */
.rl-section {
  padding: 100px 0;
  background-color: var(--rl-section-bg-preset, #F8F8F8);
  position: relative;
  overflow: hidden;
}
.rl-section-head {
  text-align: center;
  margin-bottom: 60px;
}
.rl-section-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rl-green);
  margin-bottom: 16px;
}
.rl-pretag {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rl-green);
  margin-bottom: 16px;
}
.rl-section-label--muted { color: rgba(255,255,255,0.45); }
.rl-headline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--rl-headline-preset, #262626);
  margin-bottom: 20px;
}
.rl-headline--light { color: #ffffff; }
.rl-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--rl-text2-preset, #555555);
  max-width: 540px;
}
.rl-sub--center { text-align: center; margin: 0 auto 32px; }
.rl-trust-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--rl-text-3);
  margin-top: 10px;
}

/* ── BUTTONS ────────────────────────────────────────────────────────── */
.rl-btn-primary, .rl-btn-ghost, .rl-btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: background 0.22s, box-shadow 0.22s, transform 0.18s;
}
.rl-btn-primary {
  background: var(--rl-green);
  color: #fff;
  padding: 13px 26px;
}
.rl-btn-primary:hover {
  background: var(--rl-green-deep);
  box-shadow: 0 8px 28px var(--rl-green-glow);
  transform: translateY(-1px);
}
.rl-btn-ghost {
  background: transparent;
  color: var(--rl-black);
  padding: 13px 26px;
  border: 2px solid var(--rl-border);
}
.rl-btn-ghost:hover { border-color: var(--rl-green); color: var(--rl-green); }
.rl-btn-white {
  background: #fff;
  color: var(--rl-black);
  padding: 15px 32px;
  font-size: 15px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.rl-btn-white:hover { box-shadow: 0 8px 36px rgba(0,0,0,0.18); transform: translateY(-1px); }
.rl-btn--full { width: 100%; }

/* Pulse animation */
@keyframes rl-pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 var(--rl-green-glow); }
  50%       { box-shadow: 0 0 0 10px transparent; }
}
.rl-btn--pulse { animation: rl-pulse-glow 2.5s ease-in-out infinite; }

/* ── SCROLL ANIMATION BASE STATES ────────────────────────────────────── */
.rl-fu {
  /* initial state set by JS per animation type */
  transition-property: opacity, transform;
}

/* ════════════════════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════════════════════ */
.rl-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.rl-nav.rl-nav--scrolled {
  border-bottom-color: var(--rl-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  background: rgba(255,255,255,0.96);
}
.rl-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 28px;
}
.rl-nav__logo {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}
.rl-nav__logo-text { font-family: 'DM Sans', sans-serif; font-size: 20px; font-weight: 900; letter-spacing: -0.03em; line-height: 1; }
.rl-nav__logo-reply { color: var(--rl-black); }
.rl-nav__logo-lo    { color: var(--rl-green); }
.rl-nav__logo-smile { width: 50px; height: 9px; margin-top: -1px; }

.rl-nav__links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.rl-nav__links a {
  font-family: 'DM Sans', sans-serif; font-size: 13.5px; font-weight: 500;
  color: var(--rl-text-2); text-decoration: none; transition: color 0.2s;
  position: relative;
}
.rl-nav__links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1.5px; background: var(--rl-green);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1);
}
.rl-nav__links a:hover { color: var(--rl-black); }
.rl-nav__links a:hover::after { transform: scaleX(1); }
.rl-nav__right { flex-shrink: 0; }
.rl-nav__cta   { font-size: 13.5px !important; padding: 11px 22px !important; }

.rl-nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto;
}
.rl-nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--rl-black); border-radius: 2px; transition: all 0.3s cubic-bezier(0.22,1,0.36,1); }
.rl-nav__hamburger.rl-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rl-nav__hamburger.rl-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.rl-nav__hamburger.rl-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.rl-nav__mobile { display: none; background: var(--rl-white); border-top: 1px solid var(--rl-light-grey); padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1), padding 0.3s; box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.rl-nav__mobile.rl-mobile-open { max-height: 400px; padding: 16px 24px 28px; }
.rl-nav__mobile ul { list-style: none; margin: 0 0 16px; padding: 0; }
.rl-nav__mobile ul li { border-bottom: 1px solid var(--rl-light-grey); }
.rl-nav__mobile-link { display: block; padding: 14px 0; font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600; color: var(--rl-black); text-decoration: none; transition: color 0.2s; }
.rl-nav__mobile-link:hover { color: var(--rl-green); }
.rl-nav__mobile-cta { width: 100%; justify-content: center; font-size: 15px !important; padding: 15px 24px !important; }

@media (max-width: 768px) {
  .rl-nav__links, .rl-nav__right { display: none; }
  .rl-nav__hamburger { display: flex; }
  .rl-nav__mobile { display: block; }
  .rl-hero { padding-top: 100px !important; }
}
@media (max-width: 480px) { .rl-nav__inner { height: 60px; } }

/* ════════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════════ */
.rl-hero {
  padding: 136px 0 100px;
  background: var(--rl-section-bg-preset, #ffffff);
  position: relative;
  overflow: hidden;
}
.rl-hero__orb {
  position: absolute;
  border-radius: 50%;
  background: var(--rl-orb-color);
  pointer-events: none;
  filter: blur(80px);
}
.rl-hero__orb--1 { width: 600px; height: 600px; top: -200px; right: -160px; }
.rl-hero__orb--2 { width: 400px; height: 400px; bottom: -100px; left: -100px; background: rgba(19,185,128,0.06); }
.rl-hero__orb--3 { width: 300px; height: 300px; top: 30%; left: 40%; background: rgba(19,185,128,0.04); }

.rl-hero__inner { display: flex; align-items: center; gap: 72px; position: relative; z-index: 1; }
.rl-hero__inner--centered { justify-content: center; text-align: center; }
.rl-hero__content { flex: 1; min-width: 0; }
.rl-hero__h1 { font-family: 'DM Sans', sans-serif; font-size: clamp(48px, 6vw, 80px); font-weight: 900; letter-spacing: -0.04em; line-height: 1.02; color: var(--rl-headline-preset, #262626); margin: 0 0 24px; }
.rl-hero__sub { font-family: 'DM Sans', sans-serif; font-size: 16px; line-height: 1.75; color: var(--rl-text2-preset, #555555); max-width: 500px; margin-bottom: 36px; }
.rl-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }

/* Rotating badge */
.rl-badge-orbit { position: relative; height: 36px; overflow: hidden; margin-bottom: 24px; }
.rl-rbadge {
  position: absolute; inset: 0;
  display: inline-flex; align-items: center;
  background: var(--rl-green); color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 700;
  padding: 7px 16px; border-radius: 50px;
  white-space: nowrap;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.4s cubic-bezier(0.22,1,0.36,1), transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.rl-rbadge.active { opacity: 1; transform: translateY(0); }

/* Hero visual */
.rl-hero__visual { flex: 0 0 460px; perspective: 1200px; }
@keyframes rl-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.rl-hero__scene {
  position: relative;
  animation: rl-float 6s ease-in-out infinite;
  transform-style: preserve-3d;
}
.rl-hero__scene.rl-no-float { animation: none; }
.rl-hero__glow {
  position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%);
  width: 80%; height: 60px;
  background: radial-gradient(ellipse, rgba(19,185,128,0.25) 0%, transparent 70%);
  filter: blur(20px); pointer-events: none;
}

/* Float pills */
.rl-hero__float-pill {
  position: absolute;
  display: inline-flex; align-items: center;
  font-family: 'DM Sans', sans-serif; font-size: 11.5px; font-weight: 700;
  padding: 8px 16px; border-radius: 50px;
  color: #fff; white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15); z-index: 4;
}
.rl-hero__float-pill--top { top: -20px; left: -24px; background: var(--rl-black); }
.rl-hero__float-pill--bottom { bottom: -16px; right: -20px; background: var(--rl-green); }

/* Google card */
.rl-google-card {
  background: var(--rl-card-bg-ctrl, var(--rl-card-bg-preset, #ffffff));
  border-radius: 16px;
  padding: 20px; border: 1px solid var(--rl-card-border-ctrl, var(--rl-card-border-preset, rgba(0,0,0,0.07)));
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  margin-bottom: 16px; position: relative; z-index: 3;
}
.rl-gc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.rl-gc-left { display: flex; align-items: center; gap: 8px; }
.rl-g-logo { width: 20px; height: 20px; }
.rl-gc-label { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; color: var(--rl-text-2); }
.rl-stars { color: #FBBC04; font-size: 14px; letter-spacing: 1px; }
.rl-review-author { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700; color: var(--rl-black); margin-bottom: 6px; }
.rl-review-body { font-family: 'DM Sans', sans-serif; font-size: 13px; line-height: 1.6; color: var(--rl-text-2); }

/* Reply card */
.rl-reply-card { position: relative; z-index: 3; }
.rl-reply-card__layer {
  position: absolute; inset: 4px 0 -4px 4px;
  background: var(--rl-light-grey); border-radius: 16px;
}
.rl-reply-card__inner {
  position: relative;
  background: var(--rl-card-bg-ctrl, var(--rl-card-bg-preset, #ffffff));
  border-radius: 16px;
  padding: 20px; border: 1px solid var(--rl-card-border-ctrl, var(--rl-card-border-preset, rgba(0,0,0,0.07)));
  border-left: 4px solid var(--rl-green);
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}
.rl-rc-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.rl-r-icon-sq {
  width: 28px; height: 28px; background: var(--rl-green); color: #fff;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 900; flex-shrink: 0;
}
.rl-rc-from { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; color: var(--rl-text-2); }
.rl-reply-body { font-family: 'DM Sans', sans-serif; font-size: 13px; line-height: 1.65; color: var(--rl-black); margin-bottom: 14px; }
.rl-rc-meta { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.rl-ai-chip { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 600; background: rgba(19,185,128,0.1); color: var(--rl-green); padding: 3px 10px; border-radius: 50px; }
.rl-replied-txt { font-family: 'DM Sans', sans-serif; font-size: 10.5px; color: var(--rl-text-3); }

/* Cursor blink */
@keyframes rl-blink { 0%,100%{opacity:1} 50%{opacity:0} }
.rl-cursor-blink { display: inline-block; width: 2px; height: 14px; background: var(--rl-green); border-radius: 1px; vertical-align: middle; margin-left: 2px; animation: rl-blink 1s step-end infinite; }

/* ════════════════════════════════════════════════════════════════════════
   TICKER
   ════════════════════════════════════════════════════════════════════════ */
.rl-ticker {
  background: var(--rl-section-bg-preset, #F8F8F8);
  border-top: 1px solid var(--rl-light-grey);
  border-bottom: 1px solid var(--rl-light-grey);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.rl-ticker--no-border { border-top: none; border-bottom: none; }
.rl-ticker__label {
  text-align: center;
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--rl-text-3); margin-bottom: 24px;
}
.rl-ticker__outer { overflow: hidden; }
@keyframes rl-ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.rl-ticker__track {
  display: flex; width: max-content;
  animation: rl-ticker 32s linear infinite;
}
.rl-ticker__track:hover.rl-ticker--pauseable,
.rl-ticker__outer:hover .rl-ticker--pauseable { animation-play-state: paused; }
.rl-ticker__set { display: flex; align-items: center; gap: 40px; padding-right: 40px; }
.rl-t-name { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--rl-black); opacity: 0.35; white-space: nowrap; }
.rl-t-sep { width: 5px; height: 5px; background: var(--rl-green); border-radius: 50%; opacity: 0.4; flex-shrink: 0; }
.rl-ticker__fade-l, .rl-ticker__fade-r { position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.rl-ticker__fade-l { left: 0; background: linear-gradient(to right, var(--rl-off-white), transparent); }
.rl-ticker__fade-r { right: 0; background: linear-gradient(to left, var(--rl-off-white), transparent); }

/* ════════════════════════════════════════════════════════════════════════
   STATS
   ════════════════════════════════════════════════════════════════════════ */
.rl-stats { background: var(--rl-section-bg-preset, #ffffff); }
.rl-stats__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.rl-stats__bg-orb { position: absolute; width: 400px; height: 400px; right: -100px; top: 50%; transform: translateY(-50%); background: var(--rl-orb-color); border-radius: 50%; filter: blur(100px); pointer-events: none; }
.rl-stat-cards { display: flex; flex-direction: column; gap: 16px; }
.rl-stat-card {
  background: var(--rl-card-bg-ctrl, var(--rl-card-bg-preset, #F8F8F8));
  border: 1px solid var(--rl-card-border-ctrl, var(--rl-card-border-preset, rgba(0,0,0,0.07)));
  border-radius: 20px; padding: 28px 32px;
  position: relative; overflow: hidden;
  cursor: default;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.rl-stat-card:hover { border-color: var(--rl-green); box-shadow: 0 8px 32px rgba(19,185,128,0.12); }
.rl-stat-card__glow { position: absolute; inset: 0; background: radial-gradient(circle at 80% 50%, rgba(19,185,128,0.06), transparent 60%); pointer-events: none; }
.rl-stat-num { font-family: 'DM Sans', sans-serif; font-size: 52px; font-weight: 900; color: var(--rl-green); letter-spacing: -0.04em; line-height: 1; margin-bottom: 6px; }
.rl-stat-lbl { font-family: 'DM Sans', sans-serif; font-size: 13px; line-height: 1.55; color: var(--rl-text2-preset, #555555); }

/* ════════════════════════════════════════════════════════════════════════
   RESULTS
   ════════════════════════════════════════════════════════════════════════ */
.rl-results { background: var(--rl-section-bg-preset, #F8F8F8); }
.rl-result-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rl-result-card {
  border-radius: 24px; padding: 40px 32px;
  background: linear-gradient(140deg, #085c3a 0%, var(--rl-green) 100%);
  position: relative; overflow: hidden; cursor: default;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s;
}
.rl-result-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(19,185,128,0.3); }
.rl-result-card__glare {
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.rl-result-card__orb { position: absolute; bottom: -40px; right: -40px; width: 160px; height: 160px; background: rgba(255,255,255,0.06); border-radius: 50%; }
.rl-result-card__content { position: relative; z-index: 1; }
.rl-rc-practice { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.rl-rc-stat { font-family: 'DM Sans', sans-serif; font-size: 68px; font-weight: 900; color: #fff; letter-spacing: -0.04em; line-height: 1; margin-bottom: 12px; }
.rl-rc-detail { font-family: 'DM Sans', sans-serif; font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.75); }

/* ════════════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════════════════════════════════════ */
.rl-how { background: var(--rl-section-bg-preset, #ffffff); }
.rl-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; margin-bottom: 56px; }
.rl-steps-line {
  position: absolute; top: 31px; left: 80px; right: 80px; height: 2px;
  background: linear-gradient(90deg, var(--rl-green) 0%, rgba(19,185,128,0.15) 100%);
  pointer-events: none; z-index: 0;
}
.rl-step { text-align: center; position: relative; z-index: 1; }
.rl-step__num-wrap { position: relative; width: 62px; height: 62px; margin: 0 auto 20px; }
@keyframes rl-ring-pulse { 0%,100%{transform:scale(1);opacity:0.3} 50%{transform:scale(1.4);opacity:0} }
.rl-step__ring { position: absolute; inset: -8px; border-radius: 50%; border: 2px solid rgba(19,185,128,0.2); animation: rl-ring-pulse 2.5s ease-in-out infinite; }
.rl-step__num { width: 62px; height: 62px; background: var(--rl-green); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'DM Sans', sans-serif; font-size: 22px; font-weight: 900; position: relative; box-shadow: 0 8px 24px rgba(19,185,128,0.3); }
.rl-step__title { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--rl-headline-preset, #262626); margin-bottom: 10px; }
.rl-how__cta { text-align: center; }

/* ════════════════════════════════════════════════════════════════════════
   FEATURES
   ════════════════════════════════════════════════════════════════════════ */
.rl-features { background: var(--rl-section-bg-preset, #F8F8F8); }
.rl-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rl-feat-card {
  background: var(--rl-card-bg-ctrl, var(--rl-card-bg-preset, #ffffff));
  border-radius: 20px; padding: 32px;
  border: 1px solid var(--rl-card-border-ctrl, var(--rl-card-border-preset, rgba(0,0,0,0.07)));
  position: relative; overflow: hidden;
  cursor: default; transition: border-color 0.3s, box-shadow 0.3s;
}
.rl-feat-card:hover { border-color: rgba(19,185,128,0.25); box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
.rl-feat-card__bg { position: absolute; inset: 0; background: radial-gradient(circle at 80% 0%, rgba(19,185,128,0.04), transparent 60%); pointer-events: none; border-radius: inherit; }
.rl-feat-card__line { position: absolute; bottom: 0; left: 32px; right: 32px; height: 2px; background: var(--rl-green); transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(0.22,1,0.36,1); }
.rl-feat-card:hover .rl-feat-card__line { transform: scaleX(1); }
.rl-feat-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(19,185,128,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.rl-feat-icon-wrap i   { font-size: 20px; line-height: 1; flex-shrink: 0; }
.rl-feat-icon-wrap svg { width: 20px; height: 20px; flex-shrink: 0; }
.rl-feat-icon { font-size: 22px; }
.rl-feat-title { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--rl-headline-preset, #262626); margin-bottom: 10px; }
.rl-feat-desc  { font-family: 'DM Sans', sans-serif; font-size: 13.5px; line-height: 1.65; color: var(--rl-text2-preset, #555555); }

/* ════════════════════════════════════════════════════════════════════════
   COMPARISON
   ════════════════════════════════════════════════════════════════════════ */
.rl-comparison { background: var(--rl-black); padding: 100px 0; position: relative; overflow: hidden; }
.rl-comparison__bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.rl-comp-header { text-align: center; margin-bottom: 56px; }
.rl-comp-sub { font-family: 'DM Sans', sans-serif; font-size: 15px; color: rgba(255,255,255,0.5); margin-top: 16px; }
.rl-table-wrap { border-radius: 20px; overflow: hidden; }
.rl-comp-table { width: 100%; border-collapse: collapse; }
.rl-th-feat, .rl-th-reply, .rl-th-manual { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 18px 28px; text-align: left; }
.rl-th-feat   { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.3); width: 35%; }
.rl-th-reply  { background: rgba(19,185,128,0.08); color: var(--rl-green); width: 35%; }
.rl-th-manual { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.3); }
.rl-th-badge { background: var(--rl-green); color: #fff; padding: 4px 14px; border-radius: 50px; font-size: 11px; }
.rl-td-feat, .rl-td-reply, .rl-td-manual { font-family: 'DM Sans', sans-serif; font-size: 14px; padding: 16px 28px; border-top: 1px solid rgba(255,255,255,0.06); }
.rl-td-feat   { color: rgba(255,255,255,0.6); font-weight: 500; background: rgba(255,255,255,0.02); }
.rl-td-reply  { color: rgba(255,255,255,0.9); background: rgba(19,185,128,0.05); font-weight: 600; }
.rl-td-manual { color: rgba(255,255,255,0.35); }
.rl-chk { color: var(--rl-green); font-size: 18px; font-weight: 900; }
.rl-crs { color: #ff6b6b; font-size: 18px; }

/* ════════════════════════════════════════════════════════════════════════
   TRUST
   ════════════════════════════════════════════════════════════════════════ */
.rl-trust { background: var(--rl-light-grey); padding: 48px 0; }
.rl-trust__inner { text-align: center; }
.rl-trust__lbl { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rl-text-3); display: block; margin-bottom: 28px; }
.rl-trust__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.rl-tbadge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rl-card-bg-ctrl, var(--rl-card-bg-preset, #ffffff));
  border: 1px solid var(--rl-card-border-ctrl, rgba(0,0,0,0.06));
  border-radius: 50px; padding: 10px 20px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--rl-text-2); white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}
.rl-tbadge:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.rl-tbadge__icon + span { flex: 1; }

/* ════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════════════════ */
.rl-testimonials { background: var(--rl-section-bg-preset, #ffffff); }
.rl-testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.rl-tcard {
  background: var(--rl-card-bg-ctrl, var(--rl-card-bg-preset, #F8F8F8));
  border-radius: 24px; padding: 36px;
  border: 1px solid var(--rl-card-border-ctrl, var(--rl-card-border-preset, rgba(0,0,0,0.07)));
  position: relative; overflow: hidden;
  cursor: default; transition: box-shadow 0.3s;
}
.rl-tcard:hover { box-shadow: 0 12px 48px rgba(0,0,0,0.08); }
.rl-tcard__bg { position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(19,185,128,0.04), transparent 50%); pointer-events: none; border-radius: inherit; }
.rl-tc-stars { color: #FBBC04; font-size: 14px; letter-spacing: 2px; display: block; margin-bottom: 12px; }
.rl-tc-quote-mark { font-family: Georgia, serif; font-size: 56px; color: var(--rl-green); line-height: 0.8; margin-bottom: 16px; display: block; }
.rl-tc-text { font-family: 'DM Sans', sans-serif; font-size: 14px; line-height: 1.75; color: var(--rl-text2-preset, #555555); margin-bottom: 24px; position: relative; z-index: 1; }
.rl-tc-author { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; }
.rl-tc-avatar { width: 44px; height: 44px; background: var(--rl-light-grey); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 800; color: var(--rl-black); flex-shrink: 0; }
.rl-tc-name { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--rl-headline-preset, #262626); }
.rl-tc-practice { font-family: 'DM Sans', sans-serif; font-size: 12px; color: var(--rl-text-3); margin-top: 2px; }

/* ════════════════════════════════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════════════════════════════════ */
.rl-pricing { background: var(--rl-section-bg-preset, #F8F8F8); position: relative; overflow: hidden; }
.rl-pricing__orb { position: absolute; width: 600px; height: 600px; left: 50%; top: 50%; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(19,185,128,0.07) 0%, transparent 70%); pointer-events: none; }
.rl-pricing-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 840px; margin: 0 auto; position: relative; z-index: 1; }
.rl-pcard {
  background: var(--rl-card-bg-ctrl, var(--rl-card-bg-preset, #ffffff));
  border-radius: 28px; padding: 44px 36px;
  border: 1px solid var(--rl-card-border-ctrl, var(--rl-card-border-preset, rgba(0,0,0,0.07)));
  position: relative; overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s;
}
.rl-pcard:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.09); }
.rl-pcard--featured { border-color: var(--rl-green); box-shadow: 0 0 0 1px var(--rl-green), 0 12px 48px rgba(19,185,128,0.15); }
.rl-pcard--dark { background: var(--rl-black); }
.rl-pcard__glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(19,185,128,0.08), transparent 60%); pointer-events: none; border-radius: inherit; }
.rl-pbadge { display: inline-block; background: var(--rl-green); color: #fff; font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: 50px; margin-bottom: 20px; letter-spacing: 0.04em; }
.rl-pplan { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700; color: var(--rl-text-2); margin-bottom: 8px; }
.rl-pcard--dark .rl-pplan { color: rgba(255,255,255,0.55); }
.rl-pprice { font-family: 'DM Sans', sans-serif; font-size: 48px; font-weight: 900; color: var(--rl-headline-preset, #262626); letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.rl-pcard--dark .rl-pprice { color: #fff; }
.rl-pperiod { font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--rl-text-3); margin-bottom: 24px; }
.rl-pcard--dark .rl-pperiod { color: rgba(255,255,255,0.35); }
.rl-pdiv { height: 1px; background: var(--rl-border); margin-bottom: 24px; }
.rl-pcard--dark .rl-pdiv { background: rgba(255,255,255,0.08); }
.rl-pfeatures { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.rl-pfeatures li { display: flex; align-items: flex-start; gap: 10px; font-family: 'DM Sans', sans-serif; font-size: 13.5px; color: var(--rl-text-2); line-height: 1.5; }
.rl-pcard--dark .rl-pfeatures li { color: rgba(255,255,255,0.65); }
.rl-pck { color: var(--rl-green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.rl-pcard-trust { font-family: 'DM Sans', sans-serif; font-size: 11.5px; color: var(--rl-text-3); text-align: center; margin-top: 12px; }
.rl-pcard--dark .rl-pcard-trust { color: rgba(255,255,255,0.25); }
.rl-pricing-foot { font-family: 'DM Sans', sans-serif; font-size: 12.5px; color: var(--rl-text-3); text-align: center; margin-top: 32px; }

/* ════════════════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════════════════ */
.rl-faq { background: var(--rl-section-bg-preset, #F8F8F8); }
.rl-faq-wrap { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.rl-faq__illustration { margin-top: 40px; position: relative; height: 120px; }
@keyframes rl-bubble-bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.rl-faq__bubble {
  position: absolute;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
  padding: 12px 18px; border-radius: 16px;
  white-space: nowrap; box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.rl-faq__bubble--1 { background: var(--rl-black); color: #fff; top: 0; left: 0; border-radius: 16px 16px 16px 4px; animation: rl-bubble-bounce 3s ease-in-out infinite; }
.rl-faq__bubble--2 { background: var(--rl-green); color: #fff; top: 52px; left: 32px; border-radius: 16px 16px 4px 16px; animation: rl-bubble-bounce 3s ease-in-out infinite 0.8s; }
.rl-faq-item { border-bottom: 1px solid var(--rl-light-grey); transition: border-color 0.2s; }
.rl-faq-item.rl-open { border-color: var(--rl-green); }
.rl-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; padding: 20px 0; cursor: pointer; text-align: left;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; color: var(--rl-black);
  transition: color 0.2s;
}
.rl-faq-item.rl-open .rl-faq-q { color: var(--rl-green); }
.rl-faq-chev { width: 18px; height: 18px; color: var(--rl-text-3); flex-shrink: 0; transition: transform 0.3s cubic-bezier(0.22,1,0.36,1); }
.rl-faq-item.rl-open .rl-faq-chev { transform: rotate(180deg); }
.rl-faq-a { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.3s; }
.rl-faq-a p { font-family: 'DM Sans', sans-serif; font-size: 13.5px; line-height: 1.75; color: var(--rl-text2-preset, #555555); padding: 0 0 20px; }

/* ════════════════════════════════════════════════════════════════════════
   FINAL CTA
   ════════════════════════════════════════════════════════════════════════ */
.rl-cta-fin { background: var(--rl-green); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.rl-cta-fin__orb { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.08); pointer-events: none; }
.rl-cta-fin__orb--1 { width: 500px; height: 500px; top: -200px; left: -150px; }
.rl-cta-fin__orb--2 { width: 360px; height: 360px; bottom: -120px; right: -100px; }
.rl-cta-fin__grid { position: absolute; inset: 0; 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: 48px 48px; pointer-events: none; }
.rl-cta-fin__inner { max-width: 620px; margin: 0 auto; position: relative; z-index: 1; }
.rl-cta-fin__badge { display: inline-block; background: rgba(255,255,255,0.18); color: #fff; font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 18px; border-radius: 50px; margin-bottom: 28px; border: 1px solid rgba(255,255,255,0.25); }
.rl-cta-fin__h2 { font-family: 'DM Sans', sans-serif; font-size: clamp(36px, 5vw, 60px); font-weight: 900; letter-spacing: -0.04em; line-height: 1.05; color: #fff; margin-bottom: 20px; }
.rl-cta-fin__sub { font-family: 'DM Sans', sans-serif; font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.8); margin-bottom: 40px; }
.rl-cta-fin__note { font-family: 'DM Sans', sans-serif; font-size: 12.5px; color: rgba(255,255,255,0.6); margin-top: 18px; }
.rl-cta-fin__note a { color: rgba(255,255,255,0.8); text-underline-offset: 3px; }

/* ════════════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════════════ */
.rl-footer { background: var(--rl-black); font-family: 'DM Sans', sans-serif; }
.rl-footer__top { padding: 72px 0 56px; }
.rl-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 56px; }
.rl-footer__logo { display: inline-flex; flex-direction: column; align-items: flex-start; margin-bottom: 16px; }
.rl-footer__logo-text { font-size: 20px; font-weight: 900; letter-spacing: -0.03em; line-height: 1; }
.rl-footer__logo-reply { color: #fff; }
.rl-footer__logo-lo    { color: var(--rl-green); }
.rl-footer__logo-smile { width: 50px; height: 9px; margin-top: -1px; }
.rl-footer__tagline { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.65; margin-bottom: 20px; max-width: 200px; }
.rl-footer__social { display: flex; gap: 10px; }
.rl-footer__social-link { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); text-decoration: none; transition: background 0.2s, color 0.2s; }
.rl-footer__social-link svg { width: 15px; height: 15px; }
.rl-footer__social-link:hover { background: var(--rl-green); color: #fff; border-color: var(--rl-green); }
.rl-footer__col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.rl-footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.rl-footer__list a { font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.5); text-decoration: none; padding: 5px 0; display: inline-block; transition: color 0.2s, transform 0.2s; }
.rl-footer__list a:hover { color: #fff; transform: translateX(3px); }
.rl-footer__cta-text { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 16px; }
.rl-footer__cta-btn { font-size: 13.5px !important; padding: 11px 22px !important; margin-bottom: 16px; display: inline-flex; }
.rl-footer__bundle-note { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.rl-footer__bundle-badge { background: rgba(19,185,128,0.15); color: var(--rl-green); font-size: 10px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; padding: 3px 8px; border-radius: 50px; border: 1px solid rgba(19,185,128,0.25); flex-shrink: 0; }
.rl-footer__bundle-note span:last-child { font-size: 12px; color: rgba(255,255,255,0.4); }
.rl-footer__bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 24px 0; }
.rl-footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.rl-footer__legal { font-size: 11.5px; color: rgba(255,255,255,0.24); }
.rl-footer__legal a { color: rgba(255,255,255,0.38); text-decoration: underline; text-underline-offset: 3px; }
.rl-footer__legal a:hover { color: rgba(255,255,255,0.6); }
.rl-footer__legal-links { display: flex; gap: 20px; }
.rl-footer__legal-links a { font-size: 11.5px; color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.2s; }
.rl-footer__legal-links a:hover { color: rgba(255,255,255,0.6); }

/* Equal height pricing cards */
.rl-pricing-cards--equal { align-items: stretch; }
.rl-pricing-cards--equal .rl-pcard { display: flex; flex-direction: column; }
.rl-pricing-cards--equal .rl-pfeatures { flex: 1; }

/* Icon element sizing inside icon wrap */
.rl-tbadge__icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rl-tbadge__icon i   { font-size: 15px; line-height: 1; }
.rl-tbadge__icon svg { width: 15px; height: 15px; }

/* Trust label colour */
.rl-trust__lbl { color: var(--rl-text3-preset, #888888); }

/* Comparison subheading */
.rl-comp-sub { color: rgba(255,255,255,0.5); }

/* Ghost button — ensure transition covers background */
.rl-btn-ghost { transition: background-color 0.22s, border-color 0.22s, color 0.22s; }

/* ── END ADDITIONS ── */
.rl-tilt-card { transition: transform 0.55s cubic-bezier(0.22,1,0.36,1); }
.rl-tilt__glare { position: absolute; inset: 0; border-radius: inherit; pointer-events: none; overflow: hidden; z-index: 1; }

/* ════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .rl-steps-grid    { grid-template-columns: repeat(2, 1fr); }
  .rl-steps-line    { display: none; }
  .rl-result-cards  { grid-template-columns: repeat(2, 1fr); }
  .rl-features-grid { grid-template-columns: repeat(2, 1fr); }
  .rl-stats__grid   { grid-template-columns: 1fr; gap: 48px; }
  .rl-footer__grid  { grid-template-columns: 1fr 1fr; gap: 40px; }
  .rl-faq-wrap      { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .rl-container     { padding: 0 20px; }
  .rl-section       { padding: 64px 0; }
  .rl-hero          { padding: 100px 0 64px; }
  .rl-hero__inner   { flex-direction: column; gap: 48px; }
  .rl-hero__visual  { display: none; }
  .rl-hero__h1      { font-size: 48px; }
  .rl-hero__ctas    { flex-direction: column; }
  .rl-hero__ctas .rl-btn-primary, .rl-hero__ctas .rl-btn-ghost { width: 100%; justify-content: center; }
  .rl-steps-grid    { grid-template-columns: 1fr; }
  .rl-result-cards  { grid-template-columns: 1fr; }
  .rl-features-grid { grid-template-columns: 1fr; }
  .rl-testi-grid    { grid-template-columns: 1fr; }
  .rl-pricing-cards { grid-template-columns: 1fr; }
  .rl-footer__grid  { grid-template-columns: 1fr; gap: 36px; }
  .rl-footer__top   { padding: 52px 0 40px; }
  .rl-footer__bottom-inner { flex-direction: column; align-items: flex-start; }
  .rl-footer__legal-links  { display: none; }
  .rl-comparison    { padding: 64px 0; }
  .rl-comp-table { font-size: 13px; }
  .rl-td-feat, .rl-td-reply, .rl-td-manual { padding: 12px 16px; }
  .rl-th-feat, .rl-th-reply, .rl-th-manual { padding: 14px 16px; }
  .rl-stat-cards    { flex-direction: column; }
  .rl-faq-wrap      { display: block; }
}
@media (max-width: 480px) {
  .rl-hero__h1  { font-size: 40px; }
  .rl-headline  { font-size: 32px; }
  .rl-pricing-cards { grid-template-columns: 1fr; max-width: 100%; }
  .rl-btn--full { font-size: 14px; padding: 14px 20px; }
  .rl-rc-stat   { font-size: 52px; }
}

/* ════════════════════════════════════════════════════════════════════════
   DARK THEME OVERRIDES (applied via data-rl-theme or preset class)
   ════════════════════════════════════════════════════════════════════════ */
.rl-theme-dark .rl-section,
.rl-theme-dark .rl-hero,
.rl-theme-dark .rl-ticker { background-color: #1a1a1a !important; }
.rl-theme-dark .rl-headline,
.rl-theme-dark .rl-hero__h1 { color: #fff !important; }
.rl-theme-dark .rl-sub,
.rl-theme-dark .rl-hero__sub,
.rl-theme-dark .rl-step__desc,
.rl-theme-dark .rl-feat-desc { color: rgba(255,255,255,0.65) !important; }
.rl-theme-dark .rl-feat-card,
.rl-theme-dark .rl-tcard,
.rl-theme-dark .rl-stat-card { background-color: rgba(255,255,255,0.05) !important; border-color: rgba(255,255,255,0.1) !important; }
.rl-theme-dark .rl-feat-title,
.rl-theme-dark .rl-step__title,
.rl-theme-dark .rl-tc-name { color: #fff !important; }
.rl-theme-dark .rl-faq-q { color: rgba(255,255,255,0.85) !important; }
.rl-theme-dark .rl-faq-item { border-color: rgba(255,255,255,0.1) !important; }
.rl-theme-dark .rl-faq-a p { color: rgba(255,255,255,0.6) !important; }

/* ════════════════════════════════════════════════════════════════════════
   GREEN THEME OVERRIDES
   ════════════════════════════════════════════════════════════════════════ */
.rl-theme-green .rl-section,
.rl-theme-green .rl-hero { background-color: var(--rl-green) !important; }
.rl-theme-green .rl-headline,
.rl-theme-green .rl-hero__h1 { color: #fff !important; }
.rl-theme-green .rl-sub,
.rl-theme-green .rl-hero__sub { color: rgba(255,255,255,0.85) !important; }
.rl-theme-green .rl-feat-card,
.rl-theme-green .rl-tcard { background-color: rgba(255,255,255,0.15) !important; border-color: rgba(255,255,255,0.25) !important; }
.rl-theme-green .rl-section-label { color: rgba(255,255,255,0.7) !important; }
