
/* ==========================================================================
   REPRO PRINTER RENTALS DESIGN SYSTEM (EDITORIAL B2B ACQUISITION LANGUAGE)
   ========================================================================== */
:root {
  --r-red: #DD183B;
  --r-red-dark: #B8122F;
  --r-red-glow: rgba(221, 24, 59, 0.4);
  --r-bg-black: #05080E;
  --r-bg-dark: #0B0F19;
  --r-bg-slate: #111827;
  --r-border-hairline: rgba(255, 255, 255, 0.08);
  --r-border-red: rgba(221, 24, 59, 0.35);
  --r-text-hero: #FFFFFF;
  --r-text-body: #94A3B8;
  --r-text-muted: #64748B;
  --r-font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --r-font-mono: 'JetBrains Mono', monospace;
}

.r-rentals-universe {
  font-family: var(--r-font-sans);
  background-color: var(--r-bg-black);
  color: var(--r-text-hero);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* Break out of Astra's .ast-container max-width so section backgrounds run edge-to-edge
     on wide viewports; .r-container inside each section still caps text at readable width.
     !important needed: Elementor's own .e-con{width:var(--width)} targets the same property
     on this element and otherwise wins the cascade. */
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  max-width: 100vw !important;
}

.r-rentals-universe *, .r-rentals-universe *::before, .r-rentals-universe *::after {
  box-sizing: border-box;
}

.r-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.r-chamber {
  padding: 88px 0;
  position: relative;
}

.r-chamber-dark {
  background: var(--r-bg-black);
}

.r-chamber-slate {
  background: radial-gradient(circle at top center, #111827 0%, var(--r-bg-dark) 100%);
  border-top: 1px solid var(--r-border-hairline);
  border-bottom: 1px solid var(--r-border-hairline);
}

/* Typography Utilities */
.r-heading-wrap {
  max-width: 840px;
  margin-bottom: 48px;
}

.r-align-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.r-eyebrow-tech {
  font-family: var(--r-font-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--r-red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.r-display-title {
  font-size: 38px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 16px 0;
}

.r-display-sub {
  font-size: 17px;
  color: var(--r-text-body);
  line-height: 1.6;
  margin: 0;
}

.r-link-white {
  color: #FFFFFF !important;
  text-decoration: underline !important;
}

.r-link-red {
  color: #FF5A73 !important;
  text-decoration: underline !important;
}

/* Buttons */
.r-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--r-red);
  color: #FFFFFF !important;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 30px;
  border-radius: 10px;
  text-decoration: none !important;
  box-shadow: 0 10px 28px var(--r-red-glow);
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.r-btn-primary:hover {
  background: var(--r-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(221, 24, 59, 0.6);
}

.r-btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF !important;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 26px;
  border-radius: 10px;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.r-btn-phone:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.r-btn-full {
  width: 100%;
}

/* --- 1. HEADS-UP STICKY NAV --- */
.r-hud-nav {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(5, 8, 14, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--r-border-hairline);
  padding: 12px 0;
}

.r-hud-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.r-hud-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
}

.r-hud-logo-main {
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.r-hud-accent {
  color: var(--r-red);
}

.r-hud-logo-sub {
  font-size: 9.5px;
  font-family: var(--r-font-mono);
  color: var(--r-text-muted);
  letter-spacing: 0.08em;
}

.r-hud-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.r-menu-item {
  color: var(--r-text-body);
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.r-menu-item:hover {
  color: #FFFFFF;
}

.r-hud-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.r-hud-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #E2E8F0 !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.r-hud-phone:hover {
  color: #FF5A73 !important;
}

.r-btn-glow {
  background: var(--r-red);
  color: #FFFFFF !important;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 9999px;
  text-decoration: none !important;
  box-shadow: 0 0 16px var(--r-red-glow);
  transition: all 0.25s ease;
}

.r-btn-glow:hover {
  background: var(--r-red-dark);
  transform: translateY(-1px);
}

/* --- 2. HERO CHAMBER --- */
.r-hero-chamber {
  position: relative;
  padding: 90px 0 80px 0;
  overflow: hidden;
  background: radial-gradient(ellipse at top center, #172033 0%, var(--r-bg-black) 70%);
}

.r-ambient-glow {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(circle, rgba(221, 24, 59, 0.18) 0%, rgba(56, 189, 248, 0.05) 50%, transparent 80%);
  pointer-events: none;
}

.r-tech-grid-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 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: 48px 48px;
  mask-image: radial-gradient(circle at top center, black, transparent 85%);
  pointer-events: none;
}

.r-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.r-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(221, 24, 59, 0.12);
  border: 1px solid var(--r-border-red);
  padding: 7px 18px;
  border-radius: 9999px;
  margin-bottom: 24px;
}

.r-radar-ping {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--r-red);
  box-shadow: 0 0 10px var(--r-red);
  animation: rRadar 2s infinite;
}

@keyframes rRadar {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(221, 24, 59, 0.8); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(221, 24, 59, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(221, 24, 59, 0); }
}

.r-mono-tag {
  font-family: var(--r-font-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: #FF5A73;
  letter-spacing: 0.06em;
}

.r-hero-headline {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: #FFFFFF;
  max-width: 1060px;
  margin: 0 auto 20px auto;
}

.r-gradient-text {
  background: linear-gradient(135deg, #FFFFFF 30%, #FF6B81 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.r-hero-lead {
  font-size: 18.5px;
  line-height: 1.65;
  color: var(--r-text-body);
  max-width: 880px;
  margin: 0 auto 12px auto;
}

.r-hero-pacing {
  font-family: var(--r-font-mono);
  font-size: 13.5px;
  color: #CBD5E1;
  margin: 0 auto 36px auto;
  letter-spacing: 0.02em;
}

.r-hero-cta-cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* Trust Quad */
.r-trust-quad {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.r-tquad-card {
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid var(--r-border-hairline);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  backdrop-filter: blur(8px);
}

.r-tquad-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.r-tquad-body strong {
  display: block;
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 2px;
}

.r-tquad-body span {
  font-size: 11.5px;
  color: var(--r-text-muted);
  line-height: 1.4;
}

/* --- 3. PROOF BAR --- */
.r-proof-bar {
  background: #05080E;
  border-top: 1px solid var(--r-border-hairline);
  border-bottom: 1px solid var(--r-border-hairline);
  padding: 24px 0;
}

.r-proof-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.r-proof-item {
  display: flex;
  flex-direction: column;
}

.r-proof-val {
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
}

.r-proof-lbl {
  font-size: 12px;
  color: var(--r-text-muted);
}

.r-proof-sep {
  width: 1px;
  height: 32px;
  background: var(--r-border-hairline);
}

/* --- 4. TWO RENTAL PATHS --- */
.r-split-models {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.r-model-card {
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid var(--r-border-hairline);
  border-radius: 16px;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
}

.r-model-card-featured {
  border-color: var(--r-border-red);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.r-model-badge {
  font-family: var(--r-font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #38BDF8;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.r-badge-red {
  color: #FF5A73;
}

.r-model-title {
  font-size: 26px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 6px 0;
}

.r-model-duration {
  font-family: var(--r-font-mono);
  font-size: 13px;
  color: var(--r-red);
  font-weight: 700;
  margin-bottom: 14px;
}

.r-model-desc {
  font-size: 14.5px;
  color: var(--r-text-body);
  line-height: 1.55;
  margin: 0 0 22px 0;
}

.r-model-usecases {
  background: rgba(5, 8, 14, 0.6);
  border: 1px solid var(--r-border-hairline);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 22px;
}

.r-model-usecases strong {
  display: block;
  font-size: 12.5px;
  color: #CBD5E1;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.r-model-usecases ul {
  margin: 0;
  padding-left: 18px;
  color: var(--r-text-body);
  font-size: 13px;
  line-height: 1.6;
}

.r-model-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.r-mf-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #E2E8F0;
}

.r-mf-row span {
  color: #10B981;
  font-weight: 800;
}

.r-model-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.r-sub-whatsapp, .r-sub-phone {
  font-size: 12.5px;
  text-align: center;
  color: var(--r-text-body) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.r-sub-whatsapp:hover, .r-sub-phone:hover {
  color: #FFFFFF !important;
  text-decoration: underline !important;
}

/* --- 5. WHY RENT TABLE --- */
.r-compare-table-wrap {
  background: rgba(11, 15, 25, 0.9);
  border: 1px solid var(--r-border-hairline);
  border-radius: 16px;
  overflow-x: auto;
  margin-bottom: 16px;
}

.r-compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.r-compare-table th {
  background: #05080E;
  color: #FFFFFF;
  font-family: var(--r-font-mono);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 18px 24px;
  border-bottom: 1px solid var(--r-border-hairline);
}

.r-compare-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--r-border-hairline);
  vertical-align: top;
}

.r-td-factor {
  color: #FFFFFF;
  width: 220px;
  border-right: 1px solid var(--r-border-hairline);
}

.r-td-buy {
  color: var(--r-text-body);
  width: 45%;
}

.r-td-rent {
  color: #E2E8F0;
  background: rgba(221, 24, 59, 0.04);
}

.r-footnote {
  font-size: 12px;
  color: var(--r-text-muted);
  font-style: italic;
}

/* --- 6. EQUIPMENT MATRIX --- */
.r-tier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.r-tier-card {
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid var(--r-border-hairline);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.r-tier-card:hover {
  border-color: var(--r-border-red);
  transform: translateY(-4px);
}

.r-tier-card-pop {
  border-color: rgba(221, 24, 59, 0.4);
  position: relative;
}

.r-tier-badge {
  position: absolute;
  top: 18px;
  right: 20px;
  background: var(--r-red);
  color: #FFFFFF;
  font-family: var(--r-font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
}

.r-tier-vol {
  font-family: var(--r-font-mono);
  font-size: 12px;
  color: var(--r-red);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.r-tier-title {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 4px 0;
}

.r-tier-speed {
  font-size: 13px;
  color: var(--r-text-muted);
  display: block;
  margin-bottom: 16px;
}

.r-tier-desc {
  font-size: 13.5px;
  color: var(--r-text-body);
  line-height: 1.5;
  margin: 0 0 14px 0;
}

.r-tier-models {
  background: #05080E;
  border: 1px solid var(--r-border-hairline);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: #CBD5E1;
  margin-bottom: 16px;
}

.r-tier-points {
  margin: 0 0 24px 0;
  padding-left: 18px;
  font-size: 13px;
  color: var(--r-text-body);
  line-height: 1.55;
  flex: 1;
}

.r-tier-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF !important;
  font-size: 13.5px;
  font-weight: 700;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.r-tier-btn:hover {
  background: var(--r-red);
  border-color: var(--r-red);
}

.r-tier-span-full {
  grid-column: span 2;
}

.r-scanner-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.r-sf-left {
  flex: 1;
}

/* --- 7. WHAT'S INCLUDED --- */
.r-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.r-inc-card {
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid var(--r-border-hairline);
  border-radius: 14px;
  padding: 26px 22px;
}

.r-inc-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.r-inc-card h3 {
  font-size: 16.5px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 8px 0;
}

.r-inc-card p {
  font-size: 13.5px;
  color: var(--r-text-body);
  line-height: 1.55;
  margin: 0;
}

/* --- 8. COVERAGE MATRIX --- */
.r-coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.r-cov-card {
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid var(--r-border-hairline);
  border-radius: 16px;
  padding: 30px 26px;
}

.r-cov-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--r-border-hairline);
}

.r-cov-pin {
  font-size: 20px;
}

.r-cov-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
}

.r-cov-stat {
  font-size: 13px;
  color: #CBD5E1;
  margin-bottom: 8px;
}

.r-cov-stat strong {
  color: #FFFFFF;
}

.r-cov-p {
  font-size: 13px;
  color: var(--r-text-muted);
  line-height: 1.5;
  margin: 14px 0 0 0;
}

/* --- 9. RECOMMENDATION COCKPIT --- */
.r-rec-cockpit {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  background: rgba(11, 15, 25, 0.95);
  border: 1px solid var(--r-border-hairline);
  border-radius: 20px;
  padding: 44px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.r-rec-title {
  font-size: 30px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 14px 0;
  letter-spacing: -0.02em;
}

.r-rec-p {
  font-size: 15px;
  color: var(--r-text-body);
  line-height: 1.6;
  margin: 0 0 28px 0;
}

.r-rec-prompts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.r-prompt-lbl {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #E2E8F0;
  margin-bottom: 8px;
}

.r-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.r-pill-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--r-border-hairline);
  color: #CBD5E1;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.r-pill-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.r-pill-btn.is-active {
  background: rgba(221, 24, 59, 0.15);
  border-color: var(--r-red);
  color: #FFFFFF;
  font-weight: 700;
}

.r-rec-actions-box {
  background: #05080E;
  border: 1px solid var(--r-border-hairline);
  border-radius: 14px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
}

.r-rab-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--r-font-mono);
  font-size: 11px;
  color: #38BDF8;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--r-border-hairline);
  margin-bottom: 20px;
}

.r-dot-live {
  width: 6px; height: 6px; border-radius: 50%;
  background: #10B981; box-shadow: 0 0 8px #10B981;
}

.r-rab-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.r-btn-rec-phone, .r-btn-rec-wa, .r-btn-rec-quote {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.r-btn-rec-phone {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF !important;
}

.r-btn-rec-phone:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.r-btn-rec-wa {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366 !important;
}

.r-btn-rec-wa:hover {
  background: #25D366;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.r-btn-rec-quote {
  background: var(--r-red);
  color: #FFFFFF !important;
  box-shadow: 0 4px 16px var(--r-red-glow);
}

.r-btn-rec-quote:hover {
  background: var(--r-red-dark);
  transform: translateY(-2px);
}

.r-btn-rec-phone strong, .r-btn-rec-wa strong, .r-btn-rec-quote strong {
  display: block;
  font-size: 13.5px;
}

.r-btn-rec-phone span, .r-btn-rec-wa span, .r-btn-rec-quote span {
  font-size: 11.5px;
  opacity: 0.8;
}

/* --- 10. STEPS QUAD --- */
.r-steps-quad {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.r-step-card {
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid var(--r-border-hairline);
  border-radius: 14px;
  padding: 26px 20px;
  text-align: left;
}

.r-step-num {
  font-family: var(--r-font-mono);
  font-size: 26px;
  font-weight: 800;
  color: var(--r-red);
  margin-bottom: 10px;
}

.r-step-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 8px 0;
}

.r-step-card p {
  font-size: 13px;
  color: var(--r-text-body);
  line-height: 1.5;
  margin: 0;
}

/* --- 11. EXPANSION MONOLITH --- */
.r-expansion-monolith {
  background: radial-gradient(circle at top right, #1E293B 0%, #05080E 100%);
  border: 1px solid var(--r-border-hairline);
  border-radius: 20px;
  padding: 48px 44px;
  text-align: center;
}

.r-exp-title {
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

.r-exp-sub {
  font-size: 15.5px;
  color: var(--r-text-body);
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.r-exp-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.r-exp-node {
  background: rgba(11, 15, 25, 0.9);
  border: 1px solid var(--r-border-hairline);
  border-radius: 12px;
  padding: 22px 20px;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.r-node-icon {
  font-size: 24px;
  margin-bottom: 4px;
}

.r-node-step {
  font-family: var(--r-font-mono);
  font-size: 10px;
  color: var(--r-red);
  font-weight: 700;
}

.r-exp-node strong {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 800;
}

.r-exp-node span:last-child {
  font-size: 11.5px;
  color: var(--r-text-muted);
  line-height: 1.35;
}

.r-node-arrow {
  color: var(--r-red);
  font-size: 20px;
  font-weight: 800;
}

/* --- 12. FAQ ACCORDION --- */
.r-faq-accordion {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.r-faq-item {
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid var(--r-border-hairline);
  border-radius: 12px;
  overflow: hidden;
}

.r-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  color: #FFFFFF;
  font-size: 15.5px;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: inherit;
}

.r-faq-toggle {
  font-size: 20px;
  color: var(--r-red);
  font-weight: 700;
  transition: transform 0.2s ease;
}

.r-faq-item.is-open .r-faq-toggle {
  transform: rotate(45deg);
}

.r-faq-a {
  padding: 0 24px 20px 24px;
  color: var(--r-text-body);
  font-size: 14px;
  line-height: 1.6;
  display: none;
}

.r-faq-item.is-open .r-faq-a {
  display: block;
}

/* --- 13. QUALIFICATION FORM --- */
.r-quote-chamber {
  padding: 90px 0;
}

.r-quote-monolith {
  background: rgba(11, 15, 25, 0.95);
  border: 1px solid var(--r-border-red);
  border-radius: 20px;
  padding: 50px 48px;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.r-quote-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 36px auto;
}

.r-quote-title {
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

.r-quote-sub {
  font-size: 15px;
  color: var(--r-text-body);
  line-height: 1.6;
  margin: 0;
}

.r-form-section-title {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.r-req {
  color: var(--r-red);
}

.r-intent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.r-intent-card {
  background: #05080E;
  border: 1px solid var(--r-border-hairline);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.r-intent-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.r-intent-card input[type="radio"] {
  margin-top: 3px;
  accent-color: var(--r-red);
}

.r-ic-content strong {
  display: block;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

.r-ic-content span {
  display: block;
  font-size: 11px;
  color: var(--r-text-muted);
  line-height: 1.35;
}

.r-form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.r-form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.r-field {
  display: flex;
  flex-direction: column;
}

.r-field-label {
  font-size: 13px;
  font-weight: 700;
  color: #CBD5E1;
  margin-bottom: 6px;
}

.r-input, .r-select {
  background: #05080E;
  border: 1px solid var(--r-border-hairline);
  color: #FFFFFF;
  padding: 13px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.r-input:focus, .r-select:focus {
  border-color: var(--r-red);
  box-shadow: 0 0 12px var(--r-red-glow);
}

.r-val-msg {
  color: #EF4444;
  font-size: 11.5px;
  margin-top: 4px;
  display: none;
}

.r-field.has-error .r-input, .r-field.has-error .r-select {
  border-color: #EF4444 !important;
}

.r-field.has-error .r-val-msg {
  display: block;
}

.r-submit-row {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

.r-btn-submit {
  width: 100%;
  background: var(--r-red);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 800;
  padding: 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 10px 30px var(--r-red-glow);
  transition: all 0.25s ease;
  font-family: inherit;
}

.r-btn-submit:hover {
  background: var(--r-red-dark);
  transform: translateY(-2px);
}

.r-privacy-note {
  font-size: 12px;
  color: var(--r-text-muted);
}

.r-secondary-anchor {
  font-size: 13px;
  color: #CBD5E1;
  margin-top: 8px;
}

/* Success Box */
.r-rfp-success-box {
  text-align: center;
  padding: 40px 20px;
  animation: rFadeIn 0.4s ease forwards;
}

@keyframes rFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.r-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: #10B981; color: #FFFFFF;
  font-size: 32px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.r-success-h3 {
  font-size: 26px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 12px 0;
}

.r-success-p {
  font-size: 15px;
  color: var(--r-text-body);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 24px auto;
}

.r-btn-wa-direct {
  display: inline-flex;
  align-items: center;
  background: #25D366;
  color: #FFFFFF !important;
  font-size: 14.5px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.r-btn-wa-direct:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
}

/* --- 14. PERSISTENT MOBILE STICKY BAR --- */
.r-mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999999;
  background: rgba(5, 8, 14, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--r-border-hairline);
  padding: 10px 16px;
  gap: 12px;
}

.r-msb-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none !important;
}

.r-msb-phone {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF !important;
}

.r-msb-wa {
  background: #25D366;
  color: #FFFFFF !important;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1080px) {
  .r-trust-quad { grid-template-columns: repeat(2, 1fr); }
  .r-split-models { grid-template-columns: 1fr; }
  .r-tier-grid { grid-template-columns: 1fr; }
  .r-tier-span-full { grid-column: span 1; }
  .r-scanner-flex { flex-direction: column; align-items: flex-start; }
  .r-included-grid { grid-template-columns: repeat(2, 1fr); }
  .r-coverage-grid { grid-template-columns: 1fr; }
  .r-rec-cockpit { grid-template-columns: 1fr; }
  .r-steps-quad { grid-template-columns: repeat(2, 1fr); }
  .r-intent-grid { grid-template-columns: 1fr; }
  .r-form-row-3 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .r-hud-menu { display: none; }
  .r-hero-headline { font-size: 32px; }
  .r-included-grid { grid-template-columns: 1fr; }
  .r-steps-quad { grid-template-columns: 1fr; }
  .r-form-row-2 { grid-template-columns: 1fr; }
  .r-quote-monolith { padding: 32px 20px; }
  .r-expansion-monolith { padding: 32px 20px; }
  .r-node-arrow { transform: rotate(90deg); margin: 6px 0; }
  .r-exp-node { width: 100%; }
  .r-mobile-sticky-bar { display: flex; }
  body { padding-bottom: 60px; }
}


/* Astra theme forces h1-h6 font-family site-wide via an inline <style> in <head>, and a
   site-wide Customizer rule sets a bare `a { color: #DD183B }`. Both beat non-reinforced
   author CSS regardless of source order. Fix proven on /ricoh-pro-c9500/: force heading
   font-family, and double each button's class selector for extra specificity margin. */
.r-rentals-universe h1,
.r-rentals-universe h2,
.r-rentals-universe h3,
.r-rentals-universe h4,
.r-rentals-universe h5,
.r-rentals-universe h6 {
  font-family: var(--r-font-sans) !important;
}

.r-btn-primary.r-btn-primary { background: var(--r-red) !important; color: #FFFFFF !important; }
.r-btn-phone.r-btn-phone { background: rgba(255, 255, 255, 0.05) !important; color: #FFFFFF !important; }
.r-btn-glow.r-btn-glow { background: var(--r-red) !important; color: #FFFFFF !important; }
.r-btn-rec-phone.r-btn-rec-phone { background: rgba(255, 255, 255, 0.04) !important; color: #FFFFFF !important; }
.r-btn-rec-wa.r-btn-rec-wa { background: rgba(37, 211, 102, 0.1) !important; color: #25D366 !important; }
.r-btn-submit.r-btn-submit { background: var(--r-red) !important; color: #FFFFFF !important; }
.r-btn-wa-direct.r-btn-wa-direct { background: #25D366 !important; color: #FFFFFF !important; }


/* Equipment tier & rental model product imagery */
.r-tier-visual {
  height: 150px;
  background: #F1F5F9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
}
.r-tier-visual img { max-width: 90%; max-height: 85%; object-fit: contain; }
.r-sf-visual {
  height: 130px;
  width: 160px;
  flex-shrink: 0;
  background: #F1F5F9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 24px;
}
.r-sf-visual img { max-width: 85%; max-height: 80%; object-fit: contain; }
.r-model-visual {
  height: 170px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.r-model-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

.rental-hidden-field { display: none !important; }


.r-hero-visual {
  max-width: 1100px;
  margin: 56px auto 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--r-border-hairline);
}
.r-hero-visual img {
  width: 100%;
  height: auto;
  display: block;
}


/* WPForms default label/required-asterisk color (near-black) is invisible against this
   page's dark background — the form's own inputs are already styled fine (white bg, dark
   text), only the labels sitting directly on the dark page background need fixing. */
#rental-quote .wpforms-field-label {
  color: #FFFFFF !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  margin-bottom: 6px !important;
}
#rental-quote .wpforms-required-label {
  color: #DD183B !important;
}
#rental-quote .wpforms-description {
  color: #94A3B8 !important;
}


/* Center the FAQ heading/accordion and the RFP form's header content, per direct request. */
#faq .r-heading-wrap {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
#faq .elementor-accordion {
  max-width: 900px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: content-box;
}
#rental-quote .r-quote-header {
  text-align: center;
}
#rental-quote .r-quote-title,
#rental-quote .r-quote-sub {
  margin-left: auto;
  margin-right: auto;
}


/* The WPForms widget renders as an independent Elementor widget, not actually nested
   inside the .r-quote-monolith card (the raw-HTML div-closing trick across separate
   widgets doesn't reliably span Elementor's own per-widget wrappers). Give the form
   its own matching width/centering so it visually continues the same card. */
#rental-quote .wpforms-container {
  max-width: 864px !important;
  margin: 0 auto !important;
  padding: 0 24px;
  box-sizing: border-box;
}


/* Card styling moved from raw HTML (which relied on unclosed divs spanning separate
   Elementor widgets — fragile, and got cleaned up the moment the page was touched in the
   real Elementor editor) onto this actual shared container that wraps all 3 rental-quote
   widgets. This is durable: it survives editing any of the widgets inside it. */
.r-quote-card-wrapper {
  width: 100%;
  max-width: 1008px;
  margin: 0 auto;
  padding: 24px;
  background: rgba(11, 15, 25, 0.95);
  border: 1px solid var(--r-border-red);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
}
.r-quote-card-wrapper .r-quote-header {
  padding: 26px 24px 0 24px;
}
.r-quote-card-wrapper .wpforms-container {
  max-width: 100% !important;
  padding: 24px !important;
}
.r-quote-card-wrapper .r-privacy-note,
.r-quote-card-wrapper .r-secondary-anchor {
  padding-left: 24px;
  padding-right: 24px;
}


/* =========================================================================
   THEME TOGGLE CONTROL
   ========================================================================= */
.r-theme-toggle {
  position: fixed; bottom: 24px; right: 20px; z-index: 999999;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--r-font-mono); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; color: #FFFFFF;
  background: rgba(17, 24, 39, 0.9); border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px; padding: 10px 16px; cursor: pointer;
  backdrop-filter: blur(8px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: all 0.2s ease;
}
.r-theme-toggle:hover { border-color: rgba(255, 255, 255, 0.35); transform: translateY(-1px); }
.r-theme-toggle-icon { font-size: 13px; line-height: 1; }
@media (max-width: 768px) {
  .r-theme-toggle { bottom: 76px; right: 12px; padding: 9px 12px; }
  .r-theme-toggle-label { display: none; }
}

/* =========================================================================
   LIGHT MODE — toggled via [data-theme="light"] on .r-rentals-universe (JS-driven)
   ========================================================================= */
.r-rentals-universe[data-theme='light'] {
  --r-bg-black: #F7F6F3;
  --r-bg-dark: #F1F0EC;
  --r-bg-slate: #FFFFFF;
  --r-border-hairline: rgba(20,21,26,0.08);
  --r-border-red: rgba(221,24,59,0.3);
  --r-text-hero: #14151A;
  --r-text-body: #40444E;
  --r-text-muted: #6B7280;
}
.r-rentals-universe[data-theme='light'] .r-theme-toggle { color: #14151A; background: rgba(255,255,255,0.92); border-color: rgba(20,21,26,0.14); box-shadow: 0 8px 24px rgba(20,21,26,0.10); }
.r-rentals-universe[data-theme='light'] .r-theme-toggle:hover { border-color: rgba(20,21,26,0.3); }
.r-rentals-universe[data-theme='light'] .r-hud-nav { background: rgba(255,255,255,0.9); }
.r-rentals-universe[data-theme='light'] .r-hud-logo-main { color: #14151A; }
.r-rentals-universe[data-theme='light'] .r-menu-item:hover { color: #14151A; }
.r-rentals-universe[data-theme='light'] .r-hud-phone { color: #23262E !important; }
.r-rentals-universe[data-theme='light'] .r-hero-chamber { background: radial-gradient(ellipse at top center, #FFFFFF 0%, var(--r-bg-black) 70%); }
.r-rentals-universe[data-theme='light'] .r-mono-tag { color: #C81942; }
.r-rentals-universe[data-theme='light'] .r-hero-headline { color: #14151A; }
.r-rentals-universe[data-theme='light'] .r-gradient-text { background: linear-gradient(135deg, #14151A 30%, #C81942 100%); -webkit-background-clip: text; }
.r-rentals-universe[data-theme='light'] .r-hero-pacing { color: #40444E; }
.r-rentals-universe[data-theme='light'] .r-tquad-card { background: rgba(255,255,255,0.9); }
.r-rentals-universe[data-theme='light'] .r-tquad-body strong { color: #14151A; }
.r-rentals-universe[data-theme='light'] .r-proof-bar { background: #F1F0EC; }
.r-rentals-universe[data-theme='light'] .r-proof-val { color: #14151A; }
.r-rentals-universe[data-theme='light'] .r-model-card { background: rgba(255,255,255,0.92); }
.r-rentals-universe[data-theme='light'] .r-model-badge { color: #0369A1; }
.r-rentals-universe[data-theme='light'] .r-badge-red { color: #C81942; }
.r-rentals-universe[data-theme='light'] .r-model-title { color: #14151A; }
.r-rentals-universe[data-theme='light'] .r-model-usecases { background: rgba(20,21,26,0.03); }
.r-rentals-universe[data-theme='light'] .r-model-usecases strong { color: #40444E; }
.r-rentals-universe[data-theme='light'] .r-mf-row { color: #23262E; }
.r-rentals-universe[data-theme='light'] .r-compare-table-wrap { background: #FFFFFF; }
.r-rentals-universe[data-theme='light'] .r-compare-table th { background: #F1F0EC; color: #14151A; }
.r-rentals-universe[data-theme='light'] .r-td-factor { color: #14151A; }
.r-rentals-universe[data-theme='light'] .r-td-rent { color: #14151A; }
.r-rentals-universe[data-theme='light'] .r-tier-card { background: rgba(255,255,255,0.92); }
.r-rentals-universe[data-theme='light'] .r-tier-title { color: #14151A; }
.r-rentals-universe[data-theme='light'] .r-tier-models { background: #F1F0EC; color: #40444E; }
.r-rentals-universe[data-theme='light'] .r-tier-btn { background: rgba(20,21,26,0.04); border-color: rgba(20,21,26,0.16); color: #14151A !important; }
.r-rentals-universe[data-theme='light'] .r-inc-card { background: rgba(255,255,255,0.92); }
.r-rentals-universe[data-theme='light'] .r-inc-card h3 { color: #14151A; }
.r-rentals-universe[data-theme='light'] .r-cov-card { background: rgba(255,255,255,0.92); }
.r-rentals-universe[data-theme='light'] .r-cov-header h3 { color: #14151A; }
.r-rentals-universe[data-theme='light'] .r-cov-stat { color: #40444E; }
.r-rentals-universe[data-theme='light'] .r-cov-stat strong { color: #14151A; }
.r-rentals-universe[data-theme='light'] .r-rec-cockpit { background: #FFFFFF; }
.r-rentals-universe[data-theme='light'] .r-rec-title { color: #14151A; }
.r-rentals-universe[data-theme='light'] .r-prompt-lbl { color: #23262E; }
.r-rentals-universe[data-theme='light'] .r-pill-btn { background: rgba(20,21,26,0.04); color: #40444E; }
.r-rentals-universe[data-theme='light'] .r-pill-btn:hover { background: rgba(20,21,26,0.08); color: #14151A; }
.r-rentals-universe[data-theme='light'] .r-pill-btn.is-active { color: #B8122F; }
.r-rentals-universe[data-theme='light'] .r-rec-actions-box { background: #F7F6F3; }
.r-rentals-universe[data-theme='light'] .r-rab-header { color: #0369A1; }
.r-rentals-universe[data-theme='light'] .r-btn-rec-phone.r-btn-rec-phone { background: rgba(20,21,26,0.04) !important; border-color: rgba(20,21,26,0.16); color: #14151A !important; }
.r-rentals-universe[data-theme='light'] .r-step-card { background: rgba(255,255,255,0.92); }
.r-rentals-universe[data-theme='light'] .r-step-card h3 { color: #14151A; }
.r-rentals-universe[data-theme='light'] .r-expansion-monolith { background: radial-gradient(circle at top right, #FFFFFF 0%, #F3F2EE 100%); }
.r-rentals-universe[data-theme='light'] .r-exp-title { color: #14151A; }
.r-rentals-universe[data-theme='light'] .r-exp-node { background: rgba(255,255,255,0.92); }
.r-rentals-universe[data-theme='light'] .r-exp-node strong { color: #14151A; }
.r-rentals-universe[data-theme='light'] .r-faq-item { background: rgba(255,255,255,0.92); }
.r-rentals-universe[data-theme='light'] .r-faq-q { color: #14151A; }
.r-rentals-universe[data-theme='light'] .r-quote-monolith, .r-rentals-universe[data-theme='light'] .r-quote-card-wrapper { background: #FFFFFF; }
.r-rentals-universe[data-theme='light'] .r-quote-title { color: #14151A; }
.r-rentals-universe[data-theme='light'] .r-form-section-title { color: #14151A; }
.r-rentals-universe[data-theme='light'] .r-intent-card { background: #FFFFFF; border-color: rgba(20,21,26,0.16); }
.r-rentals-universe[data-theme='light'] .r-ic-content strong { color: #14151A; }
.r-rentals-universe[data-theme='light'] .r-field-label { color: #40444E; }
.r-rentals-universe[data-theme='light'] .r-input, .r-rentals-universe[data-theme='light'] .r-select { background: #FFFFFF; color: #14151A; border-color: rgba(20,21,26,0.2); }
.r-rentals-universe[data-theme='light'] .r-success-h3 { color: #14151A; }
.r-rentals-universe[data-theme='light'] .r-msb-phone { background: rgba(20,21,26,0.05) !important; border-color: rgba(20,21,26,0.18); color: #14151A !important; }
.r-rentals-universe[data-theme='light'] #rental-quote .wpforms-field-label { color: #14151A !important; }
.r-rentals-universe[data-theme='light'] #rental-quote .wpforms-description { color: #40444E !important; }

.r-rentals-universe[data-theme='light'] .r-display-title { color: #14151A; }
.r-rentals-universe[data-theme='light'] .elementor-accordion-title { color: #14151A !important; }
.r-rentals-universe[data-theme='light'] .r-link-white { color: #14151A !important; }
.r-rentals-universe[data-theme='light'] .r-secondary-anchor { color: #40444E; }

.r-rentals-universe[data-theme='light'] .r-chamber-slate { background: radial-gradient(circle at top center, #FFFFFF 0%, var(--r-bg-dark) 100%); }

.r-rentals-universe[data-theme='light'] .elementor-tab-content { background-color: #FFFFFF !important; color: #23262E !important; }
.r-rentals-universe[data-theme='light'] .elementor-accordion-item { border-color: rgba(20,21,26,0.1) !important; }
