
:root {
  --rf-bg: #f6f9fb;
  --rf-surface: #ffffff;
  --rf-surface-soft: #eef6f8;
  --rf-surface-alt: #f1f5f8;
  --rf-border: #dbe7ec;
  --rf-text: #12313b;
  --rf-heading: #10262e;
  --rf-muted: #5c7280;
  --rf-accent: #0f8da0;
  --rf-accent-strong: #0a6d7b;
  --rf-accent-soft: rgba(15, 141, 160, 0.12);
  --rf-shadow: 0 18px 60px rgba(16, 38, 46, 0.08);
  --rf-radius: 18px;
  --rf-radius-sm: 14px;
  --rf-container: 1240px;
}

body.rf-light {
  background: radial-gradient(circle at top right, rgba(15,141,160,0.08), transparent 28%), linear-gradient(180deg, #fbfdfe 0%, #f6f9fb 46%, #eef4f7 100%);
  color: var(--rf-text);
  font-family: 'Inter', sans-serif;
}
body.rf-light h1, body.rf-light h2, body.rf-light h3, body.rf-light h4, body.rf-light h5 {
  font-family: 'Manrope', 'Inter', sans-serif;
  color: var(--rf-heading);
  letter-spacing: -0.025em;
}
body.rf-light p { color: var(--rf-muted); }
body.rf-light a { color: inherit; }
body.rf-light .container { max-width: var(--rf-container); }
body.rf-light .text-gradient {
  background: linear-gradient(135deg, #0f8da0 0%, #2d6cdf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.rf-light .btn {
  border-radius: 14px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.98rem;
  font-weight: 700;
  padding: 14px 22px;
}
body.rf-light .btn-primary {
  background: linear-gradient(180deg, #179db1 0%, #0f8293 100%);
  box-shadow: 0 14px 26px rgba(15,141,160,0.18);
  border: 1px solid rgba(15,141,160,0.2);
}
body.rf-light .btn-primary:hover {
  box-shadow: 0 18px 34px rgba(15,141,160,0.24);
}
body.rf-light .btn-outline {
  border: 1px solid rgba(15,141,160,0.22);
  background: rgba(255,255,255,0.75);
  color: var(--rf-heading);
  backdrop-filter: blur(8px);
}
body.rf-light .btn-outline:hover {
  background: var(--rf-surface-soft);
  color: var(--rf-heading) !important;
  box-shadow: none;
}
body.rf-light nav[aria-label="Main Navigation"] {
  background: rgba(251,253,254,0.88);
  border-bottom: 1px solid rgba(16,38,46,0.08);
  backdrop-filter: blur(12px);
}
body.rf-light .nav-links > li > a { color: var(--rf-heading); font-size: 0.98rem; font-weight: 700; }
body.rf-light .nav-links > li > a:hover,
body.rf-light .dropdown-content a:hover,
body.rf-light .nav-links > li > a.is-current { color: var(--rf-accent); }
body.rf-light .dropdown-content {
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(16,38,46,0.08);
  box-shadow: 0 16px 40px rgba(16,38,46,0.12);
}
body.rf-light .dropdown-content a { color: var(--rf-heading); }
body.rf-light .nav-toggle { border-color: rgba(16,38,46,0.18); }
body.rf-light .nav-toggle-bar { background: var(--rf-heading); }
@media (max-width: 768px) {
  body.rf-light .nav-links { background: rgba(255,255,255,0.98); border-color: rgba(16,38,46,0.08); box-shadow: 0 18px 48px rgba(16,38,46,0.12); }
  body.rf-light .dropdown-content a { color: var(--rf-muted); }
}
body.rf-light .rf-shell { overflow: clip; }
body.rf-light .rf-page-hero,
body.rf-light .rf-hero { padding: 36px 0 28px; }
body.rf-light .rf-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--rf-accent-strong);
  background: rgba(15,141,160,0.09);
  border: 1px solid rgba(15,141,160,0.14);
  margin-bottom: 20px;
}
body.rf-light .rf-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 38px 0 70px;
}
body.rf-light .rf-page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: center;
  padding: 28px 0 54px;
}
@media (max-width: 980px) {
  body.rf-light .rf-hero-grid, body.rf-light .rf-page-hero-grid { grid-template-columns: 1fr; gap: 28px; }
}
body.rf-light .rf-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(16,38,46,0.08);
  box-shadow: 0 8px 24px rgba(16,38,46,0.06);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--rf-accent-strong);
  margin-bottom: 18px;
}
body.rf-light .rf-kicker-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rf-accent); box-shadow: 0 0 0 4px rgba(15,141,160,0.12); }
body.rf-light .rf-hero h1,
body.rf-light .rf-page-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.45rem);
  line-height: 1.04;
  margin: 0 0 18px;
}
body.rf-light .rf-page-hero h1 { font-size: clamp(2.1rem, 4vw, 3.65rem); }
body.rf-light .rf-lead { font-size: 1.08rem; line-height: 1.8; max-width: 62ch; margin: 0 0 24px; }
body.rf-light .rf-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 0 0 22px; }
body.rf-light .rf-note-row { display: flex; flex-wrap: wrap; gap: 10px; }
body.rf-light .rf-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(16,38,46,0.08);
  color: var(--rf-muted);
  font-size: 0.9rem;
  font-weight: 600;
}
body.rf-light .rf-visual-wrap { position: relative; }
body.rf-light .rf-glow {
  position: absolute;
  inset: 5% -2% 4% 18%;
  background: radial-gradient(circle at center, rgba(15,141,160,0.22) 0%, rgba(45,108,223,0.08) 45%, transparent 72%);
  filter: blur(10px);
  z-index: 0;
}
body.rf-light .rf-photo-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--rf-shadow);
  border: 1px solid rgba(16,38,46,0.08);
  z-index: 1;
  background: var(--rf-surface);
}
body.rf-light .rf-photo-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
body.rf-light .rf-photo-card.tall img { aspect-ratio: 4 / 4.4; }
body.rf-light .rf-overlay-card,
body.rf-light .rf-overlay-mini {
  position: absolute;
  border-radius: 22px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(16,38,46,0.09);
  box-shadow: 0 18px 40px rgba(16,38,46,0.12);
  z-index: 2;
  backdrop-filter: blur(12px);
}
body.rf-light .rf-overlay-card { right: -20px; bottom: 28px; width: min(320px, 74%); padding: 16px; }
body.rf-light .rf-overlay-mini { left: -16px; top: 28px; width: 168px; padding: 14px; }
@media (max-width: 980px) {
  body.rf-light .rf-overlay-card { right: 10px; left: 10px; width: auto; bottom: -14px; }
  body.rf-light .rf-overlay-mini { left: 10px; top: 10px; }
}
body.rf-light .rf-overlay-card-header,
body.rf-light .rf-overlay-mini-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
body.rf-light .rf-ui-dots { display: flex; gap: 6px; }
body.rf-light .rf-ui-dots span { width: 8px; height: 8px; border-radius: 50%; background: #c8d7de; display: block; }
body.rf-light .rf-ui-dots span:nth-child(1) { background: #ffd09b; }
body.rf-light .rf-ui-dots span:nth-child(2) { background: #9eddc9; }
body.rf-light .rf-ui-dots span:nth-child(3) { background: #8bc3f3; }
body.rf-light .rf-ui-label { font-size: 0.78rem; color: var(--rf-muted); font-weight: 700; }
body.rf-light .rf-ui-preview {
  border: 1px solid rgba(16,38,46,0.08);
  border-radius: 18px;
  padding: 14px;
  background: linear-gradient(180deg, #f9fcfd 0%, #f1f6f8 100%);
}
body.rf-light .rf-ui-top { display: flex; gap: 10px; margin-bottom: 12px; align-items: center; }
body.rf-light .rf-ui-thumb { width: 48px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, rgba(15,141,160,0.24), rgba(45,108,223,0.16)); }
body.rf-light .rf-ui-text { flex: 1; }
body.rf-light .rf-ui-line { height: 9px; border-radius: 999px; background: rgba(16,38,46,0.12); margin-bottom: 8px; }
body.rf-light .rf-ui-line.short { width: 65%; }
body.rf-light .rf-ui-line.tiny { width: 44%; margin-bottom: 0; }
body.rf-light .rf-ui-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 10px; }
body.rf-light .rf-ui-panel { border-radius: 14px; background: white; min-height: 112px; padding: 12px; border: 1px solid rgba(16,38,46,0.08); }
body.rf-light .rf-ui-panel.side { background: linear-gradient(180deg, rgba(15,141,160,0.06), rgba(45,108,223,0.05)); }
body.rf-light .rf-ui-stat { font-size: 0.84rem; color: var(--rf-muted); margin-bottom: 10px; font-weight: 700; }
body.rf-light .rf-ui-bars { display: flex; align-items: end; gap: 7px; height: 72px; }
body.rf-light .rf-ui-bars span { display: block; width: 13px; border-radius: 999px 999px 0 0; background: linear-gradient(180deg, rgba(15,141,160,0.78), rgba(15,141,160,0.35)); }
body.rf-light .rf-ui-bars span:nth-child(1){height:34px;} body.rf-light .rf-ui-bars span:nth-child(2){height:54px;} body.rf-light .rf-ui-bars span:nth-child(3){height:48px;} body.rf-light .rf-ui-bars span:nth-child(4){height:67px;} body.rf-light .rf-ui-bars span:nth-child(5){height:58px;} body.rf-light .rf-ui-bars span:nth-child(6){height:72px;}
body.rf-light .rf-social-stat { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; font-size: 0.8rem; color: var(--rf-muted); border-bottom: 1px solid rgba(16,38,46,0.07); }
body.rf-light .rf-social-stat:last-child { border-bottom: 0; padding-bottom: 0; }
body.rf-light .rf-social-stat strong { color: var(--rf-heading); }
body.rf-light .rf-strip { padding: 0 0 26px; }
body.rf-light .rf-strip-grid {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(16,38,46,0.08);
  border-radius: 22px;
  box-shadow: 0 12px 36px rgba(16,38,46,0.05);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}
body.rf-light .rf-strip-item { display: flex; gap: 12px; align-items: center; padding: 8px 10px; }
body.rf-light .rf-strip-icon {
  width: 42px; height: 42px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(15,141,160,0.1); color: var(--rf-accent-strong); font-size: 1.1rem;
}
body.rf-light .rf-strip-title { font-weight: 800; color: var(--rf-heading); margin-bottom: 2px; font-size: 0.95rem; }
body.rf-light .rf-strip-copy { font-size: 0.86rem; color: var(--rf-muted); line-height: 1.5; }
@media (max-width: 980px) { body.rf-light .rf-strip-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) { body.rf-light .rf-strip-grid { grid-template-columns: 1fr; } }
body.rf-light .rf-section { padding: 34px 0 84px; }
body.rf-light .rf-section.alt { background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(234,243,246,0.72) 100%); }
body.rf-light .rf-section.soft { background: rgba(255,255,255,0.62); border-top: 1px solid rgba(16,38,46,0.04); border-bottom: 1px solid rgba(16,38,46,0.04); }
body.rf-light .rf-section-head { margin-bottom: 26px; max-width: 66ch; }
body.rf-light .rf-section-head h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); margin-bottom: 10px; }
body.rf-light .rf-section-head p { line-height: 1.75; }
body.rf-light .rf-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
body.rf-light .rf-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
body.rf-light .rf-grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
@media (max-width: 980px) { body.rf-light .rf-grid-3, body.rf-light .rf-grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); } body.rf-light .rf-grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 640px) { body.rf-light .rf-grid-3, body.rf-light .rf-grid-4 { grid-template-columns: 1fr; } }
body.rf-light .rf-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(16,38,46,0.08);
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(16,38,46,0.06);
  overflow: hidden;
}
body.rf-light .rf-card.pad { padding: 24px; }
body.rf-light .rf-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
body.rf-light .rf-card p { line-height: 1.72; }
body.rf-light .rf-media { position: relative; min-height: 210px; background-size: cover; background-position: center; }
body.rf-light .rf-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,38,46,0.06), rgba(16,38,46,0.24)); }
body.rf-light .rf-card-body { padding: 24px; }
body.rf-light .rf-pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
body.rf-light .rf-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 11px; border-radius: 999px; font-size: 0.8rem; font-weight: 700; color: var(--rf-accent-strong); background: rgba(15,141,160,0.08); }
body.rf-light .rf-link { color: var(--rf-accent-strong); font-weight: 800; display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; }
body.rf-light .rf-side-copy { display: grid; gap: 18px; align-content: start; }
body.rf-light .rf-list { display: grid; gap: 12px; margin-top: 8px; }
body.rf-light .rf-list li { display: flex; gap: 12px; align-items: start; color: var(--rf-muted); line-height: 1.65; }
body.rf-light .rf-check { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 0.78rem; color: white; background: linear-gradient(180deg, #179db1, #0f8293); margin-top: 2px; }
body.rf-light .rf-mini-cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
@media (max-width: 640px) { body.rf-light .rf-mini-cards { grid-template-columns: 1fr; } }
body.rf-light .rf-mini-card { background: rgba(255,255,255,0.88); border: 1px solid rgba(16,38,46,0.08); border-radius: 18px; padding: 18px; }
body.rf-light .rf-mini-card strong { color: var(--rf-heading); display: block; margin-bottom: 6px; }
body.rf-light .rf-steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
@media (max-width: 980px) { body.rf-light .rf-steps { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) { body.rf-light .rf-steps { grid-template-columns: 1fr; } }
body.rf-light .rf-step { background: rgba(255,255,255,0.94); border: 1px solid rgba(16,38,46,0.08); border-radius: 22px; padding: 22px; box-shadow: 0 14px 32px rgba(16,38,46,0.05); }
body.rf-light .rf-step-icon { width: 48px; height: 48px; border-radius: 16px; background: linear-gradient(180deg, rgba(15,141,160,0.14), rgba(45,108,223,0.08)); color: var(--rf-accent-strong); display: grid; place-items: center; font-size: 1.25rem; margin-bottom: 16px; }
body.rf-light .rf-step-num { font-size: 0.75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--rf-accent-strong); margin-bottom: 8px; }
body.rf-light .rf-showcase { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 22px; }
@media (max-width: 980px) { body.rf-light .rf-showcase { grid-template-columns: 1fr; } }
body.rf-light .rf-project-feature { display: grid; grid-template-columns: 1fr 1fr; min-height: 100%; }
@media (max-width: 860px) { body.rf-light .rf-project-feature { grid-template-columns: 1fr; } }
body.rf-light .rf-project-image img { width: 100%; height: 100%; object-fit: cover; }
body.rf-light .rf-project-content { padding: 26px; }
body.rf-light .rf-project-tag { display: inline-flex; padding: 7px 10px; border-radius: 999px; font-size: 0.78rem; font-weight: 800; background: rgba(15,141,160,0.08); color: var(--rf-accent-strong); margin-bottom: 16px; }
body.rf-light .rf-project-content p { line-height: 1.75; }
body.rf-light .rf-side-stack { display: grid; gap: 18px; }
body.rf-light .rf-cta-banner {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0f2230 0%, #143645 60%, #1b5970 100%);
  color: white;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: center;
  box-shadow: 0 22px 60px rgba(15,34,48,0.2);
}
body.rf-light .rf-cta-banner h2, body.rf-light .rf-cta-banner h3, body.rf-light .rf-cta-banner p, body.rf-light .rf-cta-banner li, body.rf-light .rf-cta-banner strong { color: white; }
body.rf-light .rf-cta-banner .btn-outline { border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.08); color: white; }
@media (max-width: 980px) { body.rf-light .rf-cta-banner { grid-template-columns: 1fr; } }
body.rf-light .rf-form-wrap { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 24px; }
@media (max-width: 980px) { body.rf-light .rf-form-wrap { grid-template-columns: 1fr; } }
body.rf-light .rf-detail-list { display: grid; gap: 14px; margin-top: 18px; }
body.rf-light .rf-detail-item { display: flex; gap: 12px; align-items: start; padding: 14px; border-radius: 18px; background: rgba(255,255,255,0.86); border: 1px solid rgba(16,38,46,0.08); }
body.rf-light .rf-detail-icon { width: 40px; height: 40px; border-radius: 14px; display: grid; place-items: center; background: rgba(15,141,160,0.1); color: var(--rf-accent-strong); font-size: 1.05rem; flex: 0 0 40px; }
body.rf-light .rf-form-card { background: rgba(255,255,255,0.96); border: 1px solid rgba(16,38,46,0.08); border-radius: 24px; padding: 26px; box-shadow: 0 16px 42px rgba(16,38,46,0.07); }
body.rf-light .rf-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
@media (max-width: 640px) { body.rf-light .rf-form-grid { grid-template-columns: 1fr; } }
body.rf-light .rf-form-card label { display: block; font-size: 0.86rem; font-weight: 700; color: var(--rf-heading); margin-bottom: 8px; }
body.rf-light .rf-form-card input,
body.rf-light .rf-form-card select,
body.rf-light .rf-form-card textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid rgba(16,38,46,0.12);
  background: #fbfdfe;
  color: var(--rf-heading);
  font: inherit;
}
body.rf-light .rf-form-card textarea { min-height: 140px; resize: vertical; }
body.rf-light .rf-form-card .btn { width: 100%; }
body.rf-light .rf-footer { margin-top: 28px; background: #f4f8fa; border-top: 1px solid rgba(16,38,46,0.08); }
body.rf-light .rf-footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr)); gap: 28px; padding: 44px 0 24px; }
@media (max-width: 980px) { body.rf-light .rf-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { body.rf-light .rf-footer-grid { grid-template-columns: 1fr; } }
body.rf-light .rf-footer p, body.rf-light .rf-footer a, body.rf-light .rf-footer li { color: var(--rf-muted); line-height: 1.9; }
body.rf-light .rf-footer h4 { margin-bottom: 8px; font-size: 1rem; }
body.rf-light .rf-footnote { border-top: 1px solid rgba(16,38,46,0.08); padding: 18px 0 34px; color: var(--rf-muted); font-size: 0.9rem; display:flex; gap:16px; flex-wrap:wrap; justify-content:space-between; }
body.rf-light .rf-socials { display: flex; gap: 10px; margin-top: 16px; }
body.rf-light .rf-socials a { width: 40px; height: 40px; border-radius: 14px; display: grid; place-items: center; background: rgba(15,141,160,0.08); color: var(--rf-accent-strong); font-size: 1rem; }


/* Pass 3 refinements */
body.rf-light .btn-primary,
body.rf-light .btn-primary:hover,
body.rf-light .btn-primary:focus,
body.rf-light .btn-primary:visited,
body.rf-light a.btn.btn-primary,
body.rf-light nav .btn.btn-primary {
  color: #ffffff !important;
  text-shadow: 0 1px 0 rgba(8, 31, 38, 0.18);
}
body.rf-light .breadcrumb-nav {
  max-width: var(--rf-container);
  margin: 18px auto 0;
  padding: 12px 18px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(16,38,46,0.08);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(16,38,46,0.05);
}
body.rf-light .breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
}
body.rf-light .breadcrumb-item,
body.rf-light .breadcrumb-item a {
  color: var(--rf-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
body.rf-light .breadcrumb-item a:hover,
body.rf-light .breadcrumb-item.breadcrumb-current {
  color: var(--rf-heading);
}
body.rf-light .breadcrumb-separator {
  color: rgba(16,38,46,0.28);
  margin: 0;
}
body.rf-light .breadcrumb-icon {
  width: 14px;
  height: 14px;
}
body.rf-light .rf-faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
@media (max-width: 980px) { body.rf-light .rf-faq-grid { grid-template-columns: 1fr; } }
body.rf-light .rf-faq-group {
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(16,38,46,0.08);
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(16,38,46,0.06);
  padding: 24px;
}
body.rf-light .rf-faq-group h3 { margin-bottom: 14px; }
body.rf-light .rf-faq-item + .rf-faq-item { border-top: 1px solid rgba(16,38,46,0.08); margin-top: 18px; padding-top: 18px; }
body.rf-light .rf-faq-item h4 { font-size: 1.02rem; margin: 0 0 8px; color: var(--rf-heading); }
body.rf-light .rf-faq-item p { margin: 0; line-height: 1.72; }
body.rf-light .rf-icon-bullet { width: 40px; height: 40px; border-radius: 14px; display: grid; place-items: center; background: rgba(15,141,160,0.1); color: var(--rf-accent-strong); font-size: 1.02rem; }
body.rf-light .rf-service-kicker { display:flex; align-items:center; gap:12px; margin-bottom:14px; }
body.rf-light .rf-card-link:hover .rf-link { gap: 10px; }


/* Pass 3a fixes: card hover text stability + CTA contrast */
body.rf-light .nav-links a.btn.btn-primary,
body.rf-light .nav-links a.btn.btn-primary:link,
body.rf-light .nav-links a.btn.btn-primary:visited,
body.rf-light .nav-links a.btn.btn-primary:hover,
body.rf-light .nav-links a.btn.btn-primary:focus,
body.rf-light .nav-links a.btn.btn-primary:active,
body.rf-light a.btn.btn-primary,
body.rf-light a.btn.btn-primary:link,
body.rf-light a.btn.btn-primary:visited,
body.rf-light button.btn.btn-primary,
body.rf-light button.btn.btn-primary:focus {
  color: #ffffff !important;
}

body.rf-light .rf-card,
body.rf-light .rf-mini-card,
body.rf-light .rf-step,
body.rf-light .rf-faq-group,
body.rf-light .rf-project-feature,
body.rf-light .rf-side-stack > article {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

body.rf-light .rf-card:hover,
body.rf-light .rf-mini-card:hover,
body.rf-light .rf-step:hover,
body.rf-light .rf-faq-group:hover,
body.rf-light .rf-project-feature:hover,
body.rf-light .rf-side-stack > article:hover {
  transform: translateY(-4px);
  border-color: rgba(15,141,160,0.22);
  box-shadow: 0 16px 34px rgba(16,38,46,0.08);
  color: inherit;
}

body.rf-light article:hover,
body.rf-light article:hover p,
body.rf-light article:hover span,
body.rf-light article:hover li,
body.rf-light article:hover small,
body.rf-light article:hover strong,
body.rf-light article:hover h3,
body.rf-light article:hover h4,
body.rf-light article:hover .rf-link {
  color: inherit;
}

body.rf-light .rf-card:hover p,
body.rf-light .rf-mini-card:hover p,
body.rf-light .rf-mini-card:hover span,
body.rf-light .rf-step:hover p,
body.rf-light .rf-faq-group:hover p,
body.rf-light .rf-project-feature:hover p,
body.rf-light .rf-side-stack > article:hover p {
  color: var(--rf-muted) !important;
}

body.rf-light .rf-card:hover h3,
body.rf-light .rf-card:hover h4,
body.rf-light .rf-card:hover strong,
body.rf-light .rf-mini-card:hover h3,
body.rf-light .rf-mini-card:hover h4,
body.rf-light .rf-mini-card:hover strong,
body.rf-light .rf-step:hover h3,
body.rf-light .rf-step:hover h4,
body.rf-light .rf-step:hover strong,
body.rf-light .rf-faq-group:hover h3,
body.rf-light .rf-faq-group:hover h4,
body.rf-light .rf-faq-group:hover strong,
body.rf-light .rf-project-feature:hover h3,
body.rf-light .rf-project-feature:hover h4,
body.rf-light .rf-project-feature:hover strong,
body.rf-light .rf-side-stack > article:hover h3,
body.rf-light .rf-side-stack > article:hover h4,
body.rf-light .rf-side-stack > article:hover strong {
  color: var(--rf-heading) !important;
}


/* Pass 4: print-link awareness + homepage secondary note */
body.rf-light .rf-print-mention {
  margin: 0 0 14px;
  color: var(--rf-muted);
  font-size: 0.96rem;
  font-weight: 600;
}
body.rf-light .rf-print-mention a,
body.rf-light .rf-print-note a {
  color: var(--rf-accent-strong);
  font-weight: 800;
}
body.rf-light .rf-print-note {
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.7;
}
body.rf-light .btn-primary,
body.rf-light .btn-primary:link,
body.rf-light .btn-primary:visited,
body.rf-light .btn-primary:hover,
body.rf-light .btn-primary:active,
body.rf-light .btn-primary:focus {
  color: #ffffff !important;
}


body.rf-light .rf-lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15,141,160,0.18);
  background: rgba(255,255,255,0.78);
  color: var(--rf-heading);
}
body.rf-light .rf-lang-link:hover {
  background: var(--rf-surface-soft);
  color: var(--rf-accent) !important;
}
body.rf-light .rf-mini-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(16,38,46,0.08);
  border-radius: 18px;
  padding: 18px;
}
body.rf-light .rf-mini-card p { margin: 8px 0 0; }
body.rf-light .rf-bullet-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
body.rf-light .rf-bullet-list li {
  position: relative;
  padding-left: 22px;
  color: var(--rf-muted);
  line-height: 1.75;
}
body.rf-light .rf-bullet-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rf-accent-strong);
  font-weight: 800;
}
body.rf-light .rf-cta-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(16,38,46,0.08);
  box-shadow: 0 14px 36px rgba(16,38,46,0.06);
}
@media (max-width: 980px) { body.rf-light .rf-cta-panel { grid-template-columns: 1fr; } }
body.rf-light .rf-link { color: var(--rf-accent-strong); font-weight: 800; }
body.rf-light .rf-link:hover { color: var(--rf-accent); }
body.rf-light .rf-grid-1 { display: grid; gap: 14px; }
body.rf-light .rf-print-mention a { color: var(--rf-accent-strong); font-weight: 700; }


/* Spanish phase 3: articles, work, and proof layer */
body.rf-light .rf-article-shell { max-width: 900px; margin: 0 auto; padding: 12px 0 84px; }
body.rf-light .rf-article-meta { display:flex; flex-wrap:wrap; gap:10px; margin: 0 0 20px; }
body.rf-light .rf-article-meta span {
  display:inline-flex; align-items:center; gap:8px; padding:8px 11px; border-radius:999px;
  background: rgba(255,255,255,0.88); border: 1px solid rgba(16,38,46,0.08); color: var(--rf-muted); font-size: 0.84rem; font-weight: 700;
}
body.rf-light .rf-toc {
  background: rgba(255,255,255,0.94); border: 1px solid rgba(16,38,46,0.08); border-radius: 22px; box-shadow: 0 12px 28px rgba(16,38,46,0.06);
  padding: 22px; margin: 0 0 32px;
}
body.rf-light .rf-toc ol { margin: 10px 0 0 20px; color: var(--rf-muted); line-height: 2; }
body.rf-light .rf-toc a { color: var(--rf-accent-strong); font-weight: 700; }
body.rf-light .rf-prose { background: rgba(255,255,255,0.68); border:1px solid rgba(16,38,46,0.05); border-radius: 26px; padding: 32px; box-shadow: 0 16px 48px rgba(16,38,46,0.05); }
body.rf-light .rf-prose > * + * { margin-top: 18px; }
body.rf-light .rf-prose h2 { margin-top: 34px; font-size: 1.8rem; }
body.rf-light .rf-prose h3 { margin-top: 22px; font-size: 1.24rem; }
body.rf-light .rf-prose p, body.rf-light .rf-prose li { line-height: 1.88; color: var(--rf-muted); }
body.rf-light .rf-prose ul, body.rf-light .rf-prose ol { padding-left: 22px; }
body.rf-light .rf-check-list li { margin-bottom: 10px; }
body.rf-light .rf-price-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin-top: 16px; }
@media (max-width: 980px) { body.rf-light .rf-price-grid { grid-template-columns: 1fr; } }
body.rf-light .rf-price-card {
  background: rgba(255,255,255,0.94); border:1px solid rgba(16,38,46,0.08); border-radius:22px; padding: 22px; box-shadow: 0 12px 30px rgba(16,38,46,0.06);
}
body.rf-light .rf-price-card .rf-tag { display:inline-flex; padding:4px 10px; border-radius:999px; background: rgba(15,141,160,0.08); color: var(--rf-accent-strong); font-size: 0.78rem; font-weight: 800; margin-bottom:10px; }
body.rf-light .rf-mini-faq { display:grid; gap: 14px; margin-top: 18px; }
body.rf-light .rf-mini-faq .rf-card { padding: 22px; }
body.rf-light .rf-cta-panel {
  margin-top: 30px; background: linear-gradient(135deg, rgba(15,141,160,0.12), rgba(45,108,223,0.08)); border:1px solid rgba(15,141,160,0.16);
  border-radius: 24px; padding: 28px; text-align: center;
}
body.rf-light .rf-kpi-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; margin-top: 18px; }
@media (max-width: 980px) { body.rf-light .rf-kpi-grid { grid-template-columns: 1fr; } }
body.rf-light .rf-kpi {
  background: rgba(255,255,255,0.92); border:1px solid rgba(16,38,46,0.08); border-radius:20px; padding: 20px;
}
body.rf-light .rf-kpi strong { display:block; font-size: 1.55rem; color: var(--rf-heading); margin-bottom: 6px; }
body.rf-light .rf-subnav {
  display:flex; flex-wrap:wrap; gap:10px; margin: 18px 0 0;
}
body.rf-light .rf-subnav a {
  display:inline-flex; align-items:center; gap:8px; padding: 10px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.92); border:1px solid rgba(16,38,46,0.08); color: var(--rf-heading); font-weight: 700;
}
body.rf-light .rf-subnav a:hover { color: var(--rf-accent-strong); }



/* Pass 4 refinements: forms, nav polish, button contrast */
body.rf-light nav[aria-label="Main Navigation"] .logo a { display:flex; align-items:center; }
body.rf-light nav[aria-label="Main Navigation"] .logo img { display:block; }

body.rf-light .btn.btn-primary,
body.rf-light .btn.btn-primary:visited,
body.rf-light .btn.btn-primary:hover,
body.rf-light .btn.btn-primary:focus { color: #fff !important; }

body.rf-light .rf-form-card,
body.rf-light .rf-card.rf-form-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(16,38,46,0.08);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 16px 42px rgba(16,38,46,0.07);
}

body.rf-light .rf-form-card label,
body.rf-light .rf-card form label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--rf-heading);
  margin-bottom: 8px;
}

body.rf-light .rf-form-card input,
body.rf-light .rf-form-card select,
body.rf-light .rf-form-card textarea,
body.rf-light .rf-card form input,
body.rf-light .rf-card form select,
body.rf-light .rf-card form textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid rgba(16,38,46,0.12);
  background: #fbfdfe;
  color: var(--rf-heading);
  font: inherit;
  line-height: 1.4;
  -webkit-appearance: none;
  appearance: none;
}

body.rf-light .rf-form-card input::placeholder,
body.rf-light .rf-form-card textarea::placeholder,
body.rf-light .rf-card form input::placeholder,
body.rf-light .rf-card form textarea::placeholder {
  color: #8ba0ac;
}

body.rf-light .rf-form-card input:focus,
body.rf-light .rf-form-card select:focus,
body.rf-light .rf-form-card textarea:focus,
body.rf-light .rf-card form input:focus,
body.rf-light .rf-card form select:focus,
body.rf-light .rf-card form textarea:focus {
  outline: none;
  border-color: rgba(15,141,160,0.55);
  box-shadow: 0 0 0 4px rgba(15,141,160,0.10);
}

body.rf-light .rf-form-card textarea,
body.rf-light .rf-card form textarea {
  min-height: 140px;
  resize: vertical;
}

body.rf-light .rf-form-grid > div { min-width: 0; }
body.rf-light .rf-form-card .btn { width: auto; min-width: 220px; }

@media (max-width: 640px) {
  body.rf-light .rf-form-card .btn { width: 100%; min-width: 0; }
}

body.rf-light .rf-footnote a { color: var(--rf-accent-strong); font-weight: 600; }
body.rf-light .rf-print-note a { font-weight: 700; }



/* Pass: cleaner navigation architecture */
body.rf-light nav[aria-label="Main Navigation"] .container {
  display: flex;
  align-items: center;
  gap: 20px;
}
body.rf-light .nav-links {
  margin-left: auto;
  gap: 18px;
}
body.rf-light .nav-links > li {
  display: flex;
  align-items: center;
}
body.rf-light .nav-links > li > a {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
body.rf-light .rf-mega > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
body.rf-light .rf-mega-menu {
  min-width: min(920px, calc(100vw - 48px));
  width: min(920px, calc(100vw - 48px));
  padding: 18px;
  border-radius: 20px;
  left: 0;
  top: calc(100% + 10px);
  display: none;
  opacity: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
body.rf-light .dropdown:hover .rf-mega-menu,
body.rf-light .dropdown.open > .rf-mega-menu {
  display: grid;
  opacity: 1;
}
body.rf-light .rf-nav-group {
  background: rgba(247, 251, 252, 0.9);
  border: 1px solid rgba(16,38,46,0.07);
  border-radius: 16px;
  padding: 14px;
  min-width: 0;
}
body.rf-light .rf-nav-group-title {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rf-accent-strong);
  margin-bottom: 10px;
}
body.rf-light .rf-nav-group a {
  display: block;
  padding: 9px 10px;
  margin-bottom: 4px;
  border-radius: 12px;
  color: var(--rf-heading);
  font-size: 0.94rem;
  font-weight: 600;
  border-bottom: 0;
}
body.rf-light .rf-nav-group a:hover {
  background: rgba(15,141,160,0.08);
  color: var(--rf-accent);
  padding-left: 10px;
}
body.rf-light .rf-nav-group-featured {
  background: linear-gradient(180deg, rgba(15,141,160,0.08), rgba(45,108,223,0.06));
}
body.rf-light .rf-nav-feature-link {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,141,160,0.16);
  box-shadow: 0 10px 24px rgba(16,38,46,0.06);
}
body.rf-light .rf-nav-feature-link span {
  display: block;
  color: var(--rf-heading);
  font-weight: 800;
  margin-bottom: 4px;
}
body.rf-light .rf-nav-feature-link small {
  display: block;
  color: var(--rf-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}
body.rf-light .rf-nav-feature-link:hover small {
  color: var(--rf-muted);
}
body.rf-light .dropdown-content a:hover {
  padding-left: 10px;
}
@media (max-width: 1080px) {
  body.rf-light .nav-links {
    gap: 14px;
  }
  body.rf-light .rf-mega-menu {
    min-width: min(840px, calc(100vw - 36px));
    width: min(840px, calc(100vw - 36px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  body.rf-light nav[aria-label="Main Navigation"] .container {
    gap: 12px;
  }
  body.rf-light .rf-mega-menu {
    width: auto;
    min-width: 0;
    padding: 6px 0 10px;
    grid-template-columns: 1fr;
    gap: 10px;
    background: transparent;
    border: 0;
    box-shadow: none;
    top: auto;
  }
  body.rf-light .rf-nav-group {
    background: rgba(255,255,255,0.7);
    padding: 10px 0 2px;
    border-radius: 0;
    border: 0;
    border-top: 1px solid rgba(16,38,46,0.06);
  }
  body.rf-light .rf-nav-group:first-child {
    border-top: 0;
  }
  body.rf-light .rf-nav-group-title {
    padding: 0 14px;
    margin-bottom: 8px;
  }
  body.rf-light .rf-nav-group a {
    margin-bottom: 0;
    border-radius: 10px;
  }
}


/* Pass: compact split navigation architecture */
body.rf-light .rf-menu-compact > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
body.rf-light .rf-menu-services,
body.rf-light .rf-menu-industries {
  width: min(620px, calc(100vw - 36px));
  min-width: min(620px, calc(100vw - 36px));
  padding: 16px;
  top: calc(100% + 10px);
  display: none;
  opacity: 0;
  gap: 14px;
}
body.rf-light .rf-menu-services {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
}
body.rf-light .rf-menu-industries {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
body.rf-light .dropdown:hover .rf-menu-services,
body.rf-light .dropdown.open > .rf-menu-services,
body.rf-light .dropdown:hover .rf-menu-industries,
body.rf-light .dropdown.open > .rf-menu-industries {
  display: grid;
  opacity: 1;
}
body.rf-light .rf-nav-group-utility {
  background: linear-gradient(180deg, rgba(246,250,252,0.98), rgba(236,246,248,0.92));
}
body.rf-light .rf-nav-card-link {
  display: block;
  padding: 12px 12px;
  margin-top: 2px;
  margin-bottom: 8px;
  border-radius: 14px;
  border: 1px solid rgba(16,38,46,0.08);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 8px 22px rgba(16,38,46,0.04);
}
body.rf-light .rf-nav-card-link span {
  display: block;
  color: var(--rf-heading);
  font-weight: 800;
  margin-bottom: 4px;
}
body.rf-light .rf-nav-card-link small {
  display: block;
  color: var(--rf-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}
body.rf-light .rf-nav-card-link:hover,
body.rf-light .rf-nav-feature-link:hover {
  transform: translateY(-1px);
}
body.rf-light .rf-nav-card-link:hover small,
body.rf-light .rf-nav-feature-link:hover small {
  color: var(--rf-muted);
}
@media (max-width: 1080px) {
  body.rf-light .rf-menu-services,
  body.rf-light .rf-menu-industries {
    width: min(540px, calc(100vw - 28px));
    min-width: min(540px, calc(100vw - 28px));
  }
}
@media (max-width: 768px) {
  body.rf-light .rf-menu-services,
  body.rf-light .rf-menu-industries {
    width: auto;
    min-width: 0;
    padding: 6px 0 10px;
    grid-template-columns: 1fr;
    gap: 10px;
    background: transparent;
    border: 0;
    box-shadow: none;
    top: auto;
  }
  body.rf-light .rf-nav-card-link,
  body.rf-light .rf-nav-feature-link {
    box-shadow: none;
    border-color: rgba(16,38,46,0.06);
  }
}

/* Pass: dropdown visual polish */
body.rf-light .rf-menu-services,
body.rf-light .rf-menu-industries {
  background: rgba(255,255,255,0.985);
  border: 1px solid rgba(16,38,46,0.09);
  box-shadow: 0 28px 54px rgba(16,38,46,0.14);
  border-radius: 18px;
  padding: 18px;
  align-items: start;
}
body.rf-light .rf-menu-services {
  width: min(700px, calc(100vw - 40px));
  min-width: min(700px, calc(100vw - 40px));
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
}
body.rf-light .rf-menu-industries {
  width: min(600px, calc(100vw - 40px));
  min-width: min(600px, calc(100vw - 40px));
  grid-template-columns: repeat(2, minmax(240px, 1fr));
}
body.rf-light .rf-nav-group {
  background: linear-gradient(180deg, rgba(251,253,253,0.98), rgba(245,249,250,0.96));
  border: 1px solid rgba(16,38,46,0.07);
  border-radius: 16px;
  padding: 16px 16px 14px;
}
body.rf-light .rf-nav-group-utility {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, rgba(246,250,252,0.98), rgba(237,247,249,0.94));
}
body.rf-light .rf-nav-group-title {
  font-size: 0.90rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--rf-heading);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(16,38,46,0.07);
}
body.rf-light .rf-nav-group a {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  padding: 11px 12px;
  margin-bottom: 2px;
  border-radius: 12px;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--rf-heading);
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
body.rf-light .rf-nav-group a:last-child {
  margin-bottom: 0;
}
body.rf-light .rf-nav-group a:hover {
  background: rgba(15,141,160,0.08);
  color: var(--rf-accent-strong);
  transform: translateX(2px);
}
body.rf-light .rf-nav-card-link,
body.rf-light .rf-nav-feature-link {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 14px !important;
  margin: 0 !important;
  width: 100%;
  border-radius: 14px;
  white-space: normal;
}
body.rf-light .rf-nav-card-link {
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(16,38,46,0.08);
  box-shadow: 0 10px 24px rgba(16,38,46,0.05);
}
body.rf-light .rf-nav-feature-link {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(243,250,252,0.96));
  border: 1px solid rgba(15,141,160,0.16);
  box-shadow: 0 10px 24px rgba(16,38,46,0.06);
}
body.rf-light .rf-nav-card-link span,
body.rf-light .rf-nav-feature-link span {
  display: block !important;
  width: 100%;
  margin: 0;
  color: var(--rf-heading);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.25;
}
body.rf-light .rf-nav-card-link small,
body.rf-light .rf-nav-feature-link small {
  display: block !important;
  width: 100%;
  margin: 0;
  color: var(--rf-muted);
  font-size: 0.80rem;
  line-height: 1.5;
  white-space: normal;
}
body.rf-light .rf-nav-card-link:hover,
body.rf-light .rf-nav-feature-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(16,38,46,0.09);
}
body.rf-light .rf-nav-card-link:hover small,
body.rf-light .rf-nav-feature-link:hover small {
  color: var(--rf-muted);
}
@media (max-width: 1080px) {
  body.rf-light .rf-menu-services {
    width: min(640px, calc(100vw - 28px));
    min-width: min(640px, calc(100vw - 28px));
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.9fr);
  }
  body.rf-light .rf-menu-industries {
    width: min(560px, calc(100vw - 28px));
    min-width: min(560px, calc(100vw - 28px));
  }
}
@media (max-width: 768px) {
  body.rf-light .rf-menu-services,
  body.rf-light .rf-menu-industries {
    border-radius: 0;
    padding: 6px 0 10px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  body.rf-light .rf-nav-group,
  body.rf-light .rf-nav-group-utility {
    background: rgba(255,255,255,0.74);
    border: 0;
    border-top: 1px solid rgba(16,38,46,0.07);
    border-radius: 0;
    padding: 10px 0 6px;
    gap: 8px;
  }
  body.rf-light .rf-nav-group-title {
    margin: 0 14px 8px;
    padding-bottom: 0;
    border-bottom: 0;
  }
  body.rf-light .rf-nav-card-link,
  body.rf-light .rf-nav-feature-link {
    margin: 0 14px !important;
  }
}


/* Pass: desktop dropdown hover-bridge fix */
@media (min-width: 769px) {
  body.rf-light .nav-links > li.dropdown {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: -10px;
  }
  body.rf-light .rf-menu-services,
  body.rf-light .rf-menu-industries {
    top: calc(100% + 4px);
  }
  body.rf-light .rf-menu-services::before,
  body.rf-light .rf-menu-industries::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -14px;
    height: 14px;
    background: transparent;
  }
  body.rf-light .dropdown:hover .rf-menu-services,
  body.rf-light .dropdown:focus-within .rf-menu-services,
  body.rf-light .dropdown:hover .rf-menu-industries,
  body.rf-light .dropdown:focus-within .rf-menu-industries {
    display: grid;
    opacity: 1;
  }
}


/* Pass: desktop dropdown no-gap + hover-intent stability */
@media (min-width: 769px) {
  body.rf-light .nav-links > li.dropdown {
    padding-bottom: 14px;
    margin-bottom: -14px;
  }
  body.rf-light .nav-links > li.dropdown > a {
    position: relative;
    z-index: 2;
  }
  body.rf-light .rf-menu-services,
  body.rf-light .rf-menu-industries {
    top: calc(100% - 2px);
  }
  body.rf-light .rf-menu-services::before,
  body.rf-light .rf-menu-industries::before {
    top: -18px;
    height: 20px;
  }
}


/* Pass: definitive desktop dropdown bridge fix */
@media (min-width: 769px) {
  body.rf-light .nav-links > li.dropdown {
    position: relative;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  body.rf-light .nav-links > li.dropdown::after {
    content: "";
    position: absolute;
    left: -12px;
    right: -12px;
    top: 100%;
    height: 28px;
    background: transparent;
    z-index: 1;
  }
  body.rf-light .nav-links > li.dropdown > a {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  body.rf-light .rf-menu-services,
  body.rf-light .rf-menu-industries {
    top: calc(100% + 8px);
    z-index: 20;
  }
  body.rf-light .rf-menu-services::before,
  body.rf-light .rf-menu-industries::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -28px;
    height: 28px;
    background: transparent;
  }
}

body.rf-light .rf-nav-phone { display: flex; align-items: center; }
body.rf-light .rf-nav-phone a {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,141,160,0.16);
  background: rgba(15,141,160,0.08);
  color: var(--rf-accent-strong) !important;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
body.rf-light .rf-nav-phone a:hover { background: rgba(15,141,160,0.12); color: var(--rf-accent) !important; }
@media (max-width: 1180px) { body.rf-light .rf-nav-phone { display: none !important; } }
body.rf-light .rf-local-lede,
body.rf-light .rf-cta-trust,
body.rf-light .rf-form-trust,
body.rf-light .rf-proof-links {
  max-width: 64ch;
  color: var(--rf-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}
body.rf-light .rf-local-lede {
  margin: -8px 0 18px;
  padding-left: 14px;
  border-left: 3px solid rgba(15,141,160,0.24);
}
body.rf-light .rf-cta-trust { margin: -8px 0 18px; font-weight: 600; }
body.rf-light .rf-form-trust { margin: -6px 0 16px; font-weight: 600; }
body.rf-light .rf-proof-links { margin-top: 8px; }
body.rf-light .rf-proof-links a,
body.rf-light .rf-local-base,
body.rf-light .rf-print-note a,
body.rf-light .rf-call-link { color: var(--rf-accent-strong); font-weight: 700; }
body.rf-light .rf-proof-links a:hover,
body.rf-light .rf-print-note a:hover,
body.rf-light .rf-call-link:hover { color: var(--rf-accent); }
body.rf-light .rf-call-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: -6px;
  text-decoration: none;
}
body.rf-light .rf-local-base { margin-top: 8px; font-size: 0.94rem; }
body.rf-light .rf-call-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(16,38,46,0.08);
  box-shadow: 0 10px 20px rgba(16,38,46,0.06);
  text-decoration: none;
  font-weight: 800;
  color: var(--rf-heading);
}
body.rf-light .rf-call-chip:hover { color: var(--rf-accent); background: #fff; }
body.rf-light .rf-section-head .rf-proof-links { margin-top: 12px; }
body.rf-light .rf-kicker.local strong { color: var(--rf-heading); }
body.rf-light .rf-cta-banner p + .rf-cta-trust { margin-top: 8px; }
@media (max-width: 640px) { body.rf-light .rf-call-chip { width: 100%; justify-content: center; margin-left: 0; } }
