/* ============================================================
   Repair Bae — Main Stylesheet (rb-style.css)
   ============================================================ */

:root {
  --rb-black: #0a0a0f;
  --rb-deep: #0f1117;
  --rb-surface: #161820;
  --rb-card: #1c1f2e;
  --rb-border: #2a2d3e;
  --rb-blue: #3b82f6;
  --rb-blue-light: #60a5fa;
  --rb-blue-dark: #1d4ed8;
  --rb-cyan: #06b6d4;
  --rb-cyan-glow: rgba(6,182,212,0.15);
  --rb-white: #f8fafc;
  --rb-grey-100: #e2e8f0;
  --rb-grey-200: #cbd5e1;
  --rb-grey-400: #94a3b8;
  --rb-grey-500: #64748b;
  --rb-grey-600: #475569;
  --rb-success: #10b981;
  --rb-warning: #f59e0b;
  --rb-danger: #ef4444;
  --rb-gradient-hero: linear-gradient(135deg, #0f1117 0%, #0d1b2a 40%, #0f1117 100%);
  --rb-gradient-blue: linear-gradient(135deg, #1d4ed8, #0891b2);
  --rb-gradient-card: linear-gradient(145deg, #1c1f2e, #161820);
  --rb-shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --rb-shadow-md: 0 8px 24px rgba(0,0,0,0.5);
  --rb-shadow-lg: 0 24px 64px rgba(0,0,0,0.6);
  --rb-shadow-blue: 0 8px 32px rgba(59,130,246,0.25);
  --rb-radius-sm: 8px;
  --rb-radius-md: 14px;
  --rb-radius-lg: 20px;
  --rb-radius-xl: 28px;
  --rb-font-display: 'Syne', sans-serif;
  --rb-font-body: 'DM Sans', sans-serif;
  --rb-font-mono: 'JetBrains Mono', monospace;
  --rb-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --rb-transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--rb-font-body);
  background-color: var(--rb-black);
  color: var(--rb-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--rb-font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--rb-grey-200); margin-bottom: 1rem; }
a { color: var(--rb-blue-light); text-decoration: none; transition: var(--rb-transition); }
a:hover { color: var(--rb-cyan); }

/* ── Utility ── */
.rb-text-gradient {
  background: linear-gradient(135deg, var(--rb-blue-light), var(--rb-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rb-section { padding: 80px 0; }
.rb-section-sm { padding: 50px 0; }
.rb-section-lg { padding: 120px 0; }
.rb-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rb-cyan);
  display: inline-block;
  margin-bottom: 12px;
}
.rb-divider {
  width: 48px;
  height: 3px;
  background: var(--rb-gradient-blue);
  border-radius: 2px;
  margin: 16px auto;
}
.rb-divider-left { margin: 16px 0; }

/* ── Buttons ── */
.rb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--rb-radius-sm);
  font-family: var(--rb-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--rb-transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.rb-btn-primary {
  background: var(--rb-gradient-blue);
  color: #fff;
  box-shadow: var(--rb-shadow-blue);
}
.rb-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(59,130,246,0.4);
  color: #fff;
}
.rb-btn-outline {
  background: transparent;
  color: var(--rb-blue-light);
  border: 1.5px solid var(--rb-blue);
}
.rb-btn-outline:hover {
  background: rgba(59,130,246,0.1);
  border-color: var(--rb-blue-light);
  color: var(--rb-blue-light);
  transform: translateY(-2px);
}
.rb-btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--rb-grey-200);
  border: 1px solid var(--rb-border);
}
.rb-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--rb-white);
}
.rb-btn-sm { padding: 9px 20px; font-size: 0.875rem; }
.rb-btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ── Cards ── */
.rb-card {
  background: var(--rb-gradient-card);
  border: 1px solid var(--rb-border);
  border-radius: var(--rb-radius-md);
  padding: 28px;
  transition: var(--rb-transition);
}
.rb-card:hover {
  border-color: rgba(59,130,246,0.4);
  box-shadow: var(--rb-shadow-blue);
  transform: translateY(-4px);
}
.rb-card-flat {
  background: var(--rb-surface);
  border: 1px solid var(--rb-border);
  border-radius: var(--rb-radius-md);
  padding: 24px;
}

/* ── Navbar ── */
#rb-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--rb-transition);
  padding: 16px 0;
}
#rb-navbar.rb-navbar-scrolled {
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rb-border);
  padding: 10px 0;
  box-shadow: var(--rb-shadow-md);
}
.rb-navbar-brand {
  font-family: var(--rb-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--rb-white) !important;
  letter-spacing: -0.02em;
}
.rb-navbar-brand span { color: var(--rb-cyan); }
.rb-nav-link {
  color: var(--rb-grey-200) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: var(--rb-transition);
}
.rb-nav-link:hover, .rb-nav-link.active {
  color: var(--rb-white) !important;
  background: rgba(255,255,255,0.06);
}
.rb-navbar-cta {
  background: var(--rb-gradient-blue);
  color: #fff !important;
  border-radius: var(--rb-radius-sm);
  padding: 8px 20px !important;
}
.rb-navbar-cta:hover {
  box-shadow: var(--rb-shadow-blue);
  transform: translateY(-1px);
  background: var(--rb-gradient-blue) !important;
}
.rb-dropdown-menu {
  background: var(--rb-card) !important;
  border: 1px solid var(--rb-border) !important;
  border-radius: var(--rb-radius-md) !important;
  box-shadow: var(--rb-shadow-lg) !important;
  padding: 8px !important;
  min-width: 200px;
}
.rb-dropdown-item {
  color: var(--rb-grey-200) !important;
  border-radius: 8px;
  padding: 8px 14px !important;
  font-size: 0.875rem;
  transition: var(--rb-transition);
}
.rb-dropdown-item:hover {
  background: rgba(59,130,246,0.12) !important;
  color: var(--rb-white) !important;
}
.navbar-toggler { border-color: var(--rb-border) !important; }
.navbar-toggler-icon { filter: invert(1); }

/* ── Hero Section ── */
.rb-hero-animated {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--rb-black);
}
.rb-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(29,78,216,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 70%, rgba(6,182,212,0.1) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(59,130,246,0.08) 0%, transparent 50%);
}
.rb-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.rb-hero-content { position: relative; z-index: 2; }
.rb-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rb-blue-light);
  margin-bottom: 24px;
}
.rb-hero-eyebrow .rb-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rb-cyan);
  animation: rb-pulse-dot 2s ease-in-out infinite;
}
@keyframes rb-pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.rb-hero-title { margin-bottom: 24px; }
.rb-hero-subtitle {
  font-size: 1.1rem;
  color: var(--rb-grey-400);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.rb-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.rb-hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--rb-border);
  flex-wrap: wrap;
}
.rb-stat-item {}
.rb-stat-num {
  font-family: var(--rb-font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--rb-white);
}
.rb-stat-num span { color: var(--rb-cyan); }
.rb-stat-label { font-size: 0.8rem; color: var(--rb-grey-400); text-transform: uppercase; letter-spacing: 0.08em; }

/* Floating device illustrations */
.rb-hero-visual { position: relative; }
.rb-phone-mockup {
  position: relative;
  width: 260px;
  margin: 0 auto;
  animation: rb-float 4s ease-in-out infinite;
}
@keyframes rb-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.rb-phone-frame {
  background: linear-gradient(145deg, #2a2d3e, #1c1f2e);
  border: 2px solid rgba(59,130,246,0.3);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.05), 0 0 60px rgba(59,130,246,0.1);
}
.rb-phone-screen {
  background: linear-gradient(180deg, #0f172a, #1e293b);
  border-radius: 26px;
  height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.rb-phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #0a0a0f;
  border-radius: 0 0 16px 16px;
}
.rb-phone-screen-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}
.rb-phone-icon-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.rb-phone-icon-circle.rb-ok { background: rgba(16,185,129,0.2); color: var(--rb-success); }
.rb-phone-icon-circle.rb-warn { background: rgba(245,158,11,0.2); color: var(--rb-warning); }
.rb-phone-icon-circle.rb-bad { background: rgba(239,68,68,0.2); color: var(--rb-danger); }
.rb-phone-screen-text { font-size: 0.75rem; color: var(--rb-grey-400); text-align: center; padding: 0 20px; }
.rb-floating-badge {
  position: absolute;
  background: var(--rb-card);
  border: 1px solid var(--rb-border);
  border-radius: var(--rb-radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--rb-shadow-lg);
  white-space: nowrap;
}
.rb-floating-badge-1 { top: 20%; right: -60px; animation: rb-float 5s ease-in-out 1s infinite; }
.rb-floating-badge-2 { bottom: 20%; left: -70px; animation: rb-float 5s ease-in-out 2.5s infinite; }
.rb-badge-icon { font-size: 1.2rem; }
.rb-badge-text { font-size: 0.75rem; font-weight: 600; color: var(--rb-white); }
.rb-badge-sub { font-size: 0.65rem; color: var(--rb-grey-400); }

/* ── Repair Selector ── */
.rb-selector-section { background: var(--rb-deep); }
.rb-selector-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.rb-selector-tab {
  padding: 10px 20px;
  border-radius: var(--rb-radius-sm);
  border: 1.5px solid var(--rb-border);
  background: transparent;
  color: var(--rb-grey-400);
  font-family: var(--rb-font-body);
  font-weight: 500;
  cursor: pointer;
  transition: var(--rb-transition);
  font-size: 0.875rem;
}
.rb-selector-tab.rb-active,
.rb-selector-tab:hover {
  border-color: var(--rb-blue);
  color: var(--rb-blue-light);
  background: rgba(59,130,246,0.08);
}
.rb-issue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.rb-issue-card {
  background: var(--rb-card);
  border: 1.5px solid var(--rb-border);
  border-radius: var(--rb-radius-md);
  padding: 18px 14px;
  text-align: center;
  cursor: pointer;
  transition: var(--rb-transition);
}
.rb-issue-card:hover, .rb-issue-card.rb-active {
  border-color: var(--rb-blue);
  background: rgba(59,130,246,0.08);
}
.rb-issue-icon { font-size: 1.8rem; margin-bottom: 8px; display: block; }
.rb-issue-label { font-size: 0.8rem; font-weight: 600; color: var(--rb-grey-200); }
.rb-selector-result {
  background: var(--rb-card);
  border: 1px solid var(--rb-border);
  border-radius: var(--rb-radius-lg);
  padding: 28px;
  display: none;
}
.rb-selector-result.rb-visible { display: block; animation: rb-fade-up 0.4s ease; }
@keyframes rb-fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Quiz Module ── */
.rb-quiz-section { background: var(--rb-black); }
.rb-quiz-tabs {
  display: flex;
  gap: 4px;
  background: var(--rb-surface);
  border: 1px solid var(--rb-border);
  border-radius: var(--rb-radius-md);
  padding: 4px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.rb-quiz-tab-btn {
  flex: 1;
  min-width: 120px;
  padding: 10px 16px;
  border: none;
  background: transparent;
  color: var(--rb-grey-400);
  font-family: var(--rb-font-body);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--rb-transition);
}
.rb-quiz-tab-btn.rb-active {
  background: var(--rb-gradient-blue);
  color: #fff;
  box-shadow: var(--rb-shadow-blue);
}
.rb-quiz-panel { display: none; }
.rb-quiz-panel.rb-active { display: block; animation: rb-fade-up 0.3s ease; }
.rb-quiz-option {
  background: var(--rb-card);
  border: 1.5px solid var(--rb-border);
  border-radius: var(--rb-radius-md);
  padding: 16px 20px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: var(--rb-transition);
  display: flex;
  align-items: center;
  gap: 14px;
}
.rb-quiz-option:hover { border-color: var(--rb-blue); background: rgba(59,130,246,0.06); }
.rb-quiz-option.rb-selected {
  border-color: var(--rb-blue);
  background: rgba(59,130,246,0.12);
}
.rb-quiz-option-icon { font-size: 1.4rem; width: 32px; text-align: center; flex-shrink: 0; }
.rb-quiz-option-text { font-weight: 500; color: var(--rb-grey-200); font-size: 0.9rem; }
.rb-quiz-result-box {
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(6,182,212,0.1));
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: var(--rb-radius-lg);
  padding: 28px;
  text-align: center;
  display: none;
}
.rb-quiz-result-box.rb-visible { display: block; animation: rb-fade-up 0.4s ease; }
.rb-quiz-result-icon { font-size: 3rem; margin-bottom: 12px; }
.rb-quiz-result-title { font-family: var(--rb-font-display); font-size: 1.4rem; margin-bottom: 8px; }
.rb-quiz-result-text { color: var(--rb-grey-400); font-size: 0.9rem; }
.rb-progress-bar {
  height: 8px;
  background: var(--rb-border);
  border-radius: 4px;
  overflow: hidden;
  margin: 16px 0;
}
.rb-progress-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--rb-gradient-blue);
  transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
}

/* ── Service Cards ── */
.rb-service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.rb-service-card {
  background: var(--rb-gradient-card);
  border: 1px solid var(--rb-border);
  border-radius: var(--rb-radius-lg);
  padding: 32px 28px;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: var(--rb-transition);
}
.rb-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rb-gradient-blue);
  opacity: 0;
  transition: var(--rb-transition);
}
.rb-service-card:hover {
  border-color: rgba(59,130,246,0.4);
  box-shadow: var(--rb-shadow-blue);
  transform: translateY(-6px);
}
.rb-service-card:hover::before { opacity: 1; }
.rb-service-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--rb-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
}
.rb-service-card-screen .rb-service-card-icon { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.2); }
.rb-service-card-battery .rb-service-card-icon { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.2); }
.rb-service-card-water .rb-service-card-icon { background: rgba(6,182,212,0.1); border-color: rgba(6,182,212,0.2); }
.rb-service-card-diag .rb-service-card-icon { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.2); }
.rb-service-card-title { font-family: var(--rb-font-display); font-size: 1.15rem; color: var(--rb-white); margin-bottom: 10px; }
.rb-service-card-desc { font-size: 0.875rem; color: var(--rb-grey-400); line-height: 1.7; margin-bottom: 20px; }
.rb-service-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rb-blue-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Before/After Slider ── */
.rb-slider-section { background: var(--rb-deep); }
.rb-before-after-container {
  position: relative;
  border-radius: var(--rb-radius-xl);
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--rb-shadow-lg);
}
.rb-before-after-container img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  pointer-events: none;
}
.rb-ba-after {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  overflow: hidden;
  width: 50%;
}
.rb-ba-after img { width: 100%; max-width: none; min-width: 100%; object-position: center; }
.rb-ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  z-index: 10;
}
.rb-ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--rb-shadow-md);
  z-index: 11;
  font-size: 1rem;
  color: var(--rb-black);
}
.rb-ba-label {
  position: absolute;
  bottom: 16px;
  padding: 6px 14px;
  background: rgba(0,0,0,0.7);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.rb-ba-label-before { left: 16px; }
.rb-ba-label-after { right: 16px; }

/* ── Testimonials ── */
.rb-testimonials-section { background: var(--rb-black); overflow: hidden; }
.rb-testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.rb-testimonial-card {
  background: var(--rb-card);
  border: 1px solid var(--rb-border);
  border-radius: var(--rb-radius-lg);
  padding: 28px;
  min-width: 340px;
  max-width: 340px;
  flex-shrink: 0;
}
.rb-testimonial-stars { color: #f59e0b; margin-bottom: 14px; font-size: 0.9rem; }
.rb-testimonial-text { color: var(--rb-grey-200); font-size: 0.9rem; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.rb-testimonial-author { display: flex; align-items: center; gap: 12px; }
.rb-testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rb-border);
}
.rb-testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--rb-white); }
.rb-testimonial-detail { font-size: 0.75rem; color: var(--rb-grey-400); }
.rb-carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.rb-carousel-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: var(--rb-border);
  cursor: pointer;
  transition: var(--rb-transition);
}
.rb-carousel-dot.rb-active {
  background: var(--rb-blue);
  width: 24px;
}
.rb-carousel-controls { display: flex; gap: 12px; justify-content: center; margin-top: 20px; }
.rb-carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--rb-border);
  background: var(--rb-card);
  color: var(--rb-grey-200);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--rb-transition);
}
.rb-carousel-btn:hover {
  border-color: var(--rb-blue);
  color: var(--rb-blue-light);
  background: rgba(59,130,246,0.08);
}

/* ── Team Section ── */
.rb-team-section { background: var(--rb-deep); }
.rb-team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 24px; }
.rb-team-card {
  background: var(--rb-card);
  border: 1px solid var(--rb-border);
  border-radius: var(--rb-radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--rb-transition);
}
.rb-team-card:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-4px);
  box-shadow: var(--rb-shadow-blue);
}
.rb-team-photo {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
  border: 3px solid var(--rb-border);
  transition: var(--rb-transition);
}
.rb-team-card:hover .rb-team-photo { border-color: var(--rb-blue); }
.rb-team-name { font-family: var(--rb-font-display); font-size: 1rem; margin-bottom: 4px; }
.rb-team-role { font-size: 0.8rem; color: var(--rb-cyan); font-weight: 600; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.rb-team-bio { font-size: 0.8rem; color: var(--rb-grey-400); line-height: 1.6; }

/* ── Process Steps ── */
.rb-process-section { background: var(--rb-black); }
.rb-process-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 0; position: relative; }
.rb-process-step {
  padding: 32px 24px;
  text-align: center;
  position: relative;
}
.rb-process-step-num {
  font-family: var(--rb-font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(59,130,246,0.12);
  line-height: 1;
  margin-bottom: 8px;
}
.rb-process-step-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}
.rb-process-step-title { font-family: var(--rb-font-display); font-size: 1rem; margin-bottom: 8px; }
.rb-process-step-desc { font-size: 0.825rem; color: var(--rb-grey-400); line-height: 1.65; }

/* ── CTA Block ── */
.rb-cta-block {
  background: linear-gradient(135deg, rgba(29,78,216,0.15), rgba(6,182,212,0.1));
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--rb-radius-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rb-cta-block::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Forms ── */
.rb-form-group { margin-bottom: 20px; }
.rb-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--rb-grey-200);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.rb-form-control {
  width: 100%;
  background: var(--rb-surface);
  border: 1.5px solid var(--rb-border);
  border-radius: var(--rb-radius-sm);
  padding: 13px 16px;
  color: var(--rb-white);
  font-family: var(--rb-font-body);
  font-size: 0.9rem;
  transition: var(--rb-transition);
  outline: none;
}
.rb-form-control:focus {
  border-color: var(--rb-blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.rb-form-control::placeholder { color: var(--rb-grey-600); }
.rb-form-control.rb-error { border-color: var(--rb-danger); }
.rb-form-error { font-size: 0.8rem; color: var(--rb-danger); margin-top: 5px; display: none; }
.rb-form-error.rb-visible { display: block; }
select.rb-form-control { cursor: pointer; }
textarea.rb-form-control { resize: vertical; min-height: 120px; }
.rb-checkbox-group { display: flex; align-items: flex-start; gap: 10px; }
.rb-checkbox-group input[type="checkbox"] {
  width: 18px; height: 18px;
  border: 2px solid var(--rb-border);
  border-radius: 4px;
  background: var(--rb-surface);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--rb-blue);
}

/* ── Page Banner ── */
.rb-page-banner {
  background: var(--rb-deep);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.rb-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(29,78,216,0.12) 0%, transparent 60%),
    linear-gradient(rgba(59,130,246,0.03) 1px, transparent 1px) 0 0 / 50px 50px,
    linear-gradient(90deg, rgba(59,130,246,0.03) 1px, transparent 1px) 0 0 / 50px 50px;
}
.rb-page-banner-content { position: relative; z-index: 1; }
.rb-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 0.8rem; color: var(--rb-grey-400); flex-wrap: wrap; }
.rb-breadcrumb a { color: var(--rb-grey-400); }
.rb-breadcrumb a:hover { color: var(--rb-blue-light); }
.rb-breadcrumb-sep { color: var(--rb-grey-600); }

/* ── Service Page ── */
.rb-service-page-content { padding: 64px 0; }
.rb-service-detail-img {
  width: 100%;
  border-radius: var(--rb-radius-xl);
  object-fit: cover;
  box-shadow: var(--rb-shadow-lg);
}
.rb-process-timeline { padding: 0; list-style: none; }
.rb-timeline-item {
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}
.rb-timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 48px;
  bottom: 0;
  width: 1px;
  background: var(--rb-border);
}
.rb-timeline-step {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--rb-gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rb-font-display);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.rb-timeline-content {}
.rb-timeline-title { font-family: var(--rb-font-display); font-size: 1rem; margin-bottom: 6px; }
.rb-timeline-desc { font-size: 0.875rem; color: var(--rb-grey-400); line-height: 1.65; }

/* ── Article Styles ── */
.rb-article-content { max-width: 760px; margin: 0 auto; padding: 60px 0; }
.rb-article-content h2 { font-size: 1.6rem; margin: 40px 0 16px; }
.rb-article-content h3 { font-size: 1.2rem; margin: 28px 0 12px; color: var(--rb-blue-light); }
.rb-article-content p { margin-bottom: 18px; line-height: 1.85; color: var(--rb-grey-200); }
.rb-article-content ul, .rb-article-content ol { padding-left: 24px; margin-bottom: 18px; color: var(--rb-grey-200); }
.rb-article-content li { margin-bottom: 8px; line-height: 1.7; }
.rb-article-content img { width: 100%; border-radius: var(--rb-radius-lg); margin: 24px 0; object-fit: cover; }
.rb-article-meta { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.rb-article-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--rb-grey-400); }
.rb-article-highlight {
  background: rgba(59,130,246,0.08);
  border-left: 3px solid var(--rb-blue);
  border-radius: 0 var(--rb-radius-sm) var(--rb-radius-sm) 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 0.9rem;
  color: var(--rb-grey-200);
  font-style: italic;
}
.rb-article-card {
  background: var(--rb-card);
  border: 1px solid var(--rb-border);
  border-radius: var(--rb-radius-lg);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: var(--rb-transition);
}
.rb-article-card:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-4px);
  box-shadow: var(--rb-shadow-blue);
}
.rb-article-card-img { width: 100%; height: 200px; object-fit: cover; }
.rb-article-card-body { padding: 20px; }
.rb-article-tag {
  display: inline-block;
  background: rgba(59,130,246,0.1);
  color: var(--rb-blue-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.rb-article-card-title { font-family: var(--rb-font-display); font-size: 1rem; color: var(--rb-white); margin-bottom: 8px; }
.rb-article-card-excerpt { font-size: 0.825rem; color: var(--rb-grey-400); line-height: 1.65; }

/* ── Contact ── */
.rb-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rb-border);
}
.rb-contact-info-item:last-child { border-bottom: none; }
.rb-contact-info-icon {
  width: 44px; height: 44px;
  border-radius: var(--rb-radius-sm);
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--rb-blue-light);
  flex-shrink: 0;
}
.rb-contact-info-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--rb-grey-600); margin-bottom: 4px; }
.rb-contact-info-value { font-size: 0.95rem; color: var(--rb-grey-100); font-weight: 500; }
.rb-map-container {
  border-radius: var(--rb-radius-xl);
  overflow: hidden;
  height: 350px;
  border: 1px solid var(--rb-border);
}
.rb-map-container iframe { width: 100%; height: 100%; border: none; filter: grayscale(60%) invert(90%) hue-rotate(180deg); }

/* ── Legal Pages ── */
.rb-legal-content { max-width: 860px; margin: 0 auto; padding: 60px 0; }
.rb-legal-content h2 { font-size: 1.5rem; margin: 40px 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--rb-border); }
.rb-legal-content h3 { font-size: 1.1rem; margin: 24px 0 10px; color: var(--rb-blue-light); }
.rb-legal-content p, .rb-legal-content li { font-size: 0.9rem; color: var(--rb-grey-200); line-height: 1.85; }
.rb-legal-content ul, .rb-legal-content ol { padding-left: 22px; margin-bottom: 16px; }
.rb-legal-content li { margin-bottom: 6px; }
.rb-legal-last-updated {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--rb-radius-sm);
  padding: 10px 16px;
  font-size: 0.8rem;
  color: var(--rb-warning);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ── Footer ── */
.rb-footer {
  background: var(--rb-deep);
  border-top: 1px solid var(--rb-border);
  padding: 64px 0 32px;
}
.rb-footer-brand { margin-bottom: 16px; }
.rb-footer-brand-name { font-family: var(--rb-font-display); font-size: 1.4rem; font-weight: 800; color: var(--rb-white); }
.rb-footer-brand-name span { color: var(--rb-cyan); }
.rb-footer-tagline { font-size: 0.85rem; color: var(--rb-grey-400); }
.rb-footer-heading { font-family: var(--rb-font-display); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--rb-grey-400); margin-bottom: 16px; }
.rb-footer-links { list-style: none; }
.rb-footer-links li { margin-bottom: 8px; }
.rb-footer-links a { font-size: 0.875rem; color: var(--rb-grey-400); transition: var(--rb-transition); }
.rb-footer-links a:hover { color: var(--rb-blue-light); padding-left: 4px; }
.rb-footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 0.875rem; color: var(--rb-grey-400); }
.rb-footer-contact-item i { color: var(--rb-blue-light); width: 16px; }
.rb-footer-divider { border-color: var(--rb-border); margin: 32px 0 24px; }
.rb-footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; gap: 12px; }
.rb-footer-copyright { font-size: 0.8rem; color: var(--rb-grey-600); }
.rb-footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.rb-footer-legal-links a { font-size: 0.78rem; color: var(--rb-grey-600); transition: var(--rb-transition); }
.rb-footer-legal-links a:hover { color: var(--rb-grey-400); }

/* ── Cookie Banner ── */
#rb-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, calc(100vw - 48px));
  background: var(--rb-card);
  border: 1px solid var(--rb-border);
  border-radius: var(--rb-radius-lg);
  padding: 20px 24px;
  box-shadow: var(--rb-shadow-lg);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--rb-transition-slow);
}
#rb-cookie-banner.rb-hidden {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.rb-cookie-text { flex: 1; min-width: 200px; font-size: 0.85rem; color: var(--rb-grey-200); line-height: 1.6; }
.rb-cookie-text a { color: var(--rb-blue-light); }
.rb-cookie-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; flex-wrap: wrap; }

/* ── Thank You ── */
.rb-thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rb-black);
  position: relative;
  overflow: hidden;
}
.rb-thankyou-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(16,185,129,0.08) 0%, transparent 60%);
}
.rb-thankyou-card {
  background: var(--rb-card);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: var(--rb-radius-xl);
  padding: 64px 48px;
  text-align: center;
  max-width: 560px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 80px rgba(16,185,129,0.1);
}
.rb-thankyou-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(16,185,129,0.15);
  border: 2px solid rgba(16,185,129,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--rb-success);
  margin: 0 auto 24px;
  animation: rb-pulse-success 2s ease infinite;
}
@keyframes rb-pulse-success {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.3); }
  50% { box-shadow: 0 0 0 16px rgba(16,185,129,0); }
}

/* ── Info Boxes ── */
.rb-info-box {
  background: rgba(59,130,246,0.06);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--rb-radius-md);
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 20px 0;
}
.rb-info-box-warn {
  background: rgba(245,158,11,0.06);
  border-color: rgba(245,158,11,0.2);
}
.rb-info-box-success {
  background: rgba(16,185,129,0.06);
  border-color: rgba(16,185,129,0.2);
}
.rb-info-box i { color: var(--rb-blue-light); margin-top: 2px; font-size: 0.9rem; }
.rb-info-box-warn i { color: var(--rb-warning); }
.rb-info-box-success i { color: var(--rb-success); }
.rb-info-box p { font-size: 0.875rem; color: var(--rb-grey-200); margin: 0; }

/* ── About Page ── */
.rb-value-card {
  background: var(--rb-card);
  border: 1px solid var(--rb-border);
  border-radius: var(--rb-radius-md);
  padding: 24px;
  height: 100%;
  transition: var(--rb-transition);
}
.rb-value-card:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-4px);
}
.rb-value-icon { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.rb-value-title { font-family: var(--rb-font-display); font-size: 1rem; margin-bottom: 8px; }
.rb-value-desc { font-size: 0.85rem; color: var(--rb-grey-400); line-height: 1.7; }

/* ── Scroll animations ── */
.rb-animate { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.rb-animate.rb-animated { opacity: 1; transform: translateY(0); }
.rb-animate-delay-1 { transition-delay: 0.1s; }
.rb-animate-delay-2 { transition-delay: 0.2s; }
.rb-animate-delay-3 { transition-delay: 0.3s; }
.rb-animate-delay-4 { transition-delay: 0.4s; }

/* ── Misc ── */
.rb-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.rb-badge-blue { background: rgba(59,130,246,0.12); color: var(--rb-blue-light); border: 1px solid rgba(59,130,246,0.25); }
.rb-badge-green { background: rgba(16,185,129,0.12); color: var(--rb-success); border: 1px solid rgba(16,185,129,0.25); }
.rb-badge-amber { background: rgba(245,158,11,0.12); color: var(--rb-warning); border: 1px solid rgba(245,158,11,0.25); }
.rb-section-header { text-align: center; margin-bottom: 56px; }
.rb-section-header p { max-width: 560px; margin: 0 auto; font-size: 1rem; color: var(--rb-grey-400); }
.rb-back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--rb-gradient-blue);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--rb-transition);
  box-shadow: var(--rb-shadow-blue);
}
.rb-back-to-top.rb-visible { opacity: 1; transform: translateY(0); }
.rb-back-to-top:hover { transform: translateY(-3px); }

/* ── Responsive ── */
@media (max-width: 991px) {
  .rb-hero-visual { display: none; }
  .rb-floating-badge { display: none; }
}
@media (max-width: 768px) {
  .rb-section { padding: 56px 0; }
  .rb-cta-block { padding: 40px 24px; }
  .rb-process-steps { grid-template-columns: 1fr 1fr; }
  .rb-testimonial-card { min-width: 280px; max-width: 280px; }
  .rb-hero-stats { gap: 20px; }
  #rb-cookie-banner { flex-direction: column; }
  .rb-ba-after { display: none; }
  .rb-ba-divider { display: none; }
  .rb-ba-handle { display: none; }
  .rb-ba-label-after { display: none; }
}
@media (max-width: 576px) {
  .rb-quiz-tabs { flex-direction: column; }
  .rb-quiz-tab-btn { min-width: unset; }
  .rb-selector-tabs { gap: 6px; }
}

/* ============================================================
   ADDITIONAL STYLES — Articles, Contact, Legal, Service Banner
   ============================================================ */

/* Service banner stat grid (diagnostics etc.) */
.rb-service-banner-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rb-service-banner-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rb-service-banner-stat .rb-stat-num {
  font-family: var(--rb-font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rb-cyan);
  line-height: 1;
}
.rb-service-banner-stat .rb-stat-label {
  font-size: 0.78rem;
  color: var(--rb-grey-400);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Article listing cards */
.rb-article-card {
  background: var(--rb-surface);
  border: 1px solid var(--rb-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.rb-article-card:hover {
  border-color: var(--rb-blue);
  transform: translateY(-4px);
}
.rb-article-card-img-link { display: block; overflow: hidden; }
.rb-article-card-img-link img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}
.rb-article-card:hover .rb-article-card-img-link img { transform: scale(1.04); }
.rb-article-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.rb-article-card-title {
  font-family: var(--rb-font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--rb-white);
  margin: 10px 0 8px;
  line-height: 1.4;
}
.rb-article-card-title a { color: inherit; text-decoration: none; }
.rb-article-card-title a:hover { color: var(--rb-blue-light); }
.rb-article-card-excerpt {
  font-size: 0.85rem;
  color: var(--rb-grey-400);
  line-height: 1.7;
  flex: 1;
}
.rb-article-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--rb-border);
  font-size: 0.78rem;
  color: var(--rb-grey-500);
}
.rb-article-read-link {
  color: var(--rb-blue-light);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}
.rb-article-read-link:hover { color: var(--rb-cyan); }
.rb-article-tag {
  display: inline-block;
  background: rgba(59,130,246,0.15);
  color: var(--rb-blue-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(59,130,246,0.25);
}

/* Article full page */
.rb-article-meta-row {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--rb-grey-400);
}
.rb-article-hero-img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 36px;
  max-height: 440px;
  object-fit: cover;
}
.rb-article-body {
  font-size: 0.97rem;
  line-height: 1.9;
  color: var(--rb-grey-200);
}
.rb-article-body h2 {
  font-family: var(--rb-font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--rb-white);
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rb-border);
}
.rb-article-body h3 {
  font-family: var(--rb-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--rb-blue-light);
  margin: 28px 0 10px;
}
.rb-article-body p { margin-bottom: 18px; }
.rb-article-body ul, .rb-article-body ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
.rb-article-body li { margin-bottom: 8px; }
.rb-article-body strong { color: var(--rb-white); font-weight: 600; }
.rb-article-lead {
  font-size: 1.1rem;
  color: var(--rb-grey-100);
  line-height: 1.85;
  margin-bottom: 28px;
  font-weight: 400;
}
.rb-article-cta-box {
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 14px;
  padding: 28px 32px;
}
.rb-article-cta-box p { color: var(--rb-grey-200); margin: 0; }
.rb-article-card-sm {
  background: var(--rb-surface);
  border: 1px solid var(--rb-border);
  border-radius: 12px;
  padding: 20px;
  transition: border-color 0.2s;
}
.rb-article-card-sm:hover { border-color: var(--rb-blue); }
.rb-article-card-sm h5 {
  font-family: var(--rb-font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.rb-article-card-sm h5 a { color: var(--rb-white); text-decoration: none; }
.rb-article-card-sm h5 a:hover { color: var(--rb-blue-light); }
.rb-article-card-sm p { font-size: 0.82rem; color: var(--rb-grey-400); margin: 0; }

/* Contact page */
.rb-contact-info-card {
  background: var(--rb-surface);
  border: 1px solid var(--rb-border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rb-contact-info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.rb-contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(59,130,246,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rb-blue-light);
  font-size: 1rem;
  flex-shrink: 0;
}
.rb-contact-info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rb-grey-500);
  margin: 0 0 4px;
  font-weight: 600;
}
.rb-contact-info-value {
  font-size: 0.92rem;
  color: var(--rb-grey-200);
  margin: 0;
  line-height: 1.6;
}
.rb-contact-info-value a { color: var(--rb-blue-light); text-decoration: none; }
.rb-contact-info-value a:hover { color: var(--rb-cyan); }
.rb-hours-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.rb-hours-table td { padding: 9px 4px; border-bottom: 1px solid var(--rb-border); color: var(--rb-grey-300); }
.rb-hours-table td:first-child { font-weight: 500; color: var(--rb-white); width: 52%; }
.rb-hours-table tr.rb-hours-today td { background: rgba(59,130,246,0.08); color: var(--rb-blue-light); border-radius: 4px; }
.rb-hours-table tr.rb-hours-today td:first-child { color: var(--rb-blue-light); }
.rb-hours-closed { color: var(--rb-grey-500) !important; font-style: italic; }
.rb-notice-box {
  background: rgba(59,130,246,0.07);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 0.85rem;
  color: var(--rb-grey-300);
  line-height: 1.65;
}
.rb-map-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--rb-border);
}

/* Contact detail list (about page) */
.rb-contact-detail-list { display: flex; flex-direction: column; gap: 12px; }
.rb-contact-detail-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: var(--rb-grey-300); }
.rb-contact-detail-item i { color: var(--rb-blue-light); margin-top: 2px; width: 16px; }

/* Legal extras */
.rb-legal-last-updated {
  display: inline-block;
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.25);
  color: var(--rb-cyan);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 32px;
}
.rb-disclosure-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 20px 0 32px;
}
.rb-disclosure-table th, .rb-disclosure-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--rb-border);
  text-align: left;
  vertical-align: top;
}
.rb-disclosure-table th {
  color: var(--rb-grey-400);
  font-weight: 500;
  width: 36%;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.rb-disclosure-table td { color: var(--rb-grey-200); }
.rb-disclosure-table a { color: var(--rb-blue-light); text-decoration: none; }

/* Transparency box (diagnostics page) */
.rb-transparency-box { display: flex; flex-direction: column; gap: 20px; }
.rb-transparency-item {
  background: var(--rb-surface);
  border: 1px solid var(--rb-border);
  border-radius: 12px;
  padding: 22px 24px;
}
.rb-transparency-item h5 {
  font-family: var(--rb-font-display);
  font-size: 0.97rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--rb-white);
  display: flex;
  align-items: center;
}
.rb-transparency-item p { font-size: 0.87rem; color: var(--rb-grey-400); margin: 0; line-height: 1.75; }

/* Form additions */
.rb-form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.rb-form-textarea { resize: vertical; min-height: 120px; }
.rb-form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--rb-grey-300);
  cursor: pointer;
  line-height: 1.6;
}
.rb-form-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--rb-blue);
}
.rb-form-checkbox-label a { color: var(--rb-blue-light); }
.rb-required { color: var(--rb-danger, #ef4444); }

/* Checklist (about, water damage etc.) */
.rb-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.rb-checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: var(--rb-grey-200); line-height: 1.6; }
.rb-checklist li i { color: var(--rb-cyan); margin-top: 2px; flex-shrink: 0; }

/* Responsive additions */
@media (max-width: 768px) {
  .rb-article-hero-img { max-height: 260px; }
  .rb-article-body h2 { font-size: 1.2rem; }
  .rb-contact-info-card { padding: 18px; }
  .rb-service-banner-stat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .rb-disclosure-table th { width: 40%; }
}


.logo{
  max-width: 200px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}

.rb-article-tag{
  width: max-content;
}

.rb-contact-info-card {
  background: var(--rb-surface);
  border: 1px solid var(--rb-border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rb-contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.rb-contact-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rb-blue-light);
  font-size: 0.95rem;
}

.rb-contact-info-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  color: var(--rb-grey-500);
  margin: 0 0 4px;
}

.rb-contact-info-value {
  font-size: 0.9rem;
  color: var(--rb-grey-200);
  line-height: 1.65;
  margin: 0;
}

.rb-contact-info-value a {
  color: var(--rb-blue-light);
  text-decoration: none;
  transition: color 0.2s;
}

.rb-contact-info-value a:hover {
  color: var(--rb-cyan);
}

/* ── Hours table ── */
.rb-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.rb-hours-table td {
  padding: 10px 6px;
  border-bottom: 1px solid var(--rb-border);
  color: var(--rb-grey-300);
  vertical-align: middle;
}

.rb-hours-table tr:last-child td {
  border-bottom: none;
}

.rb-hours-table td:first-child {
  font-weight: 500;
  color: var(--rb-white);
  width: 50%;
}

/* today highlight (added by rb-interactions.js) */
.rb-hours-table tr.rb-hours-today td {
  color: var(--rb-blue-light);
}

.rb-hours-table tr.rb-hours-today td:first-child::after {
  content: " (today)";
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--rb-cyan);
  margin-left: 4px;
}

.rb-hours-closed {
  color: var(--rb-grey-500) !important;
  font-style: italic;
}

/* ── Notice box ── */
.rb-notice-box {
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 10px;
  padding: 15px 18px;
  font-size: 0.84rem;
  color: var(--rb-grey-300);
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* ── Form inputs ── */
.rb-form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rb-grey-200);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}

.rb-required {
  color: var(--rb-danger);
}

.rb-form-input {
  width: 100%;
  background: var(--rb-surface);
  border: 1.5px solid var(--rb-border);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--rb-white);
  font-family: var(--rb-font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.rb-form-input::placeholder {
  color: var(--rb-grey-600);
}

.rb-form-input:hover {
  border-color: var(--rb-grey-500);
}

.rb-form-input:focus {
  border-color: var(--rb-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.rb-form-input.rb-error {
  border-color: var(--rb-danger);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* ── Select ── */
.rb-form-select {
  cursor: pointer;
  padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
}

.rb-form-select option {
  background: var(--rb-card);
  color: var(--rb-white);
}

/* ── Textarea ── */
.rb-form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

/* ── Form error message ── */
.rb-form-error {
  font-size: 0.78rem;
  color: var(--rb-danger);
  margin-top: 5px;
  display: none;
  align-items: center;
  gap: 5px;
}

.rb-form-error.rb-visible {
  display: flex;
}

/* ── CAPTCHA wrapper ── */
.rb-captcha-wrap {
  background: var(--rb-surface);
  border: 1.5px solid var(--rb-border);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--rb-grey-200);
}

/* ── Consent checkbox ── */
.rb-form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--rb-grey-300);
  line-height: 1.65;
  cursor: pointer;
  user-select: none;
}

.rb-form-checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--rb-blue);
  cursor: pointer;
}

.rb-form-checkbox-label a {
  color: var(--rb-blue-light);
  text-decoration: none;
}

.rb-form-checkbox-label a:hover {
  color: var(--rb-cyan);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .rb-contact-info-card { padding: 18px; gap: 16px; }
  .rb-contact-info-icon { width: 36px; height: 36px; font-size: 0.85rem; }
  .rb-hours-table { font-size: 0.82rem; }
  .rb-hours-table td { padding: 9px 4px; }
  .rb-notice-box { font-size: 0.8rem; padding: 13px 15px; }
  .rb-form-input { padding: 10px 12px; font-size: 0.87}
}