/*
Theme Name:  Rapid Response Child
Description: Child theme for Diaco-template, Rapid Response Services website
Author:      Tim Jennings / Soulheart
Template:    theme-wp
Version:     1.0.0
*/

/* ============================================================
   FUTURA SELF-HOSTED FONTS
   ============================================================ */
@font-face {
  font-family: 'Futura';
  src: url('fonts/futura-book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futura';
  src: url('fonts/futura-book-italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Futura';
  src: url('fonts/futura-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futura';
  src: url('fonts/futura-medium-italic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Futura';
  src: url('fonts/futura-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Futura';
  src: url('fonts/futura-bold-italic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Futura';
  src: url('fonts/futura-heavy.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand colors */
  --rrs-charcoal:     #1C1F24;
  --rrs-dark:         #111316;
  --rrs-orange:       #D4571A;
  --rrs-orange-light: #E87848;
  --rrs-orange-pale:  #FBF0EB;
  --rrs-blue:         #2E6E9E;
  --rrs-blue-light:   #4A8FBE;
  --rrs-blue-pale:    #EBF3F9;
  --rrs-white:        #FFFFFF;
  --rrs-light:        #F5F6F8;
  --rrs-mid:          #E2E5E9;
  --rrs-border:       #D1D5DB;
  --rrs-text:         #1C1F24;
  --rrs-text-muted:   #6B7280;
  --rrs-text-on-dark: rgba(255,255,255,0.88);
  --rrs-text-muted-on-dark: rgba(255,255,255,0.60);

  /* Typography */
  --rrs-font:         'Inter', system-ui, -apple-system, sans-serif;
  --rrs-font-size:    16px;
  --rrs-line-height:  1.65;

  /* Spacing */
  --rrs-space-xs:   0.5rem;
  --rrs-space-sm:   1rem;
  --rrs-space-md:   1.5rem;
  --rrs-space-lg:   2.5rem;
  --rrs-space-xl:   4rem;
  --rrs-space-2xl:  6rem;

  /* Radius */
  --rrs-radius:     14px;
  --rrs-radius-sm:  8px;
  --rrs-radius-lg:  20px;
  --rrs-radius-pill: 999px;

  /* Shadows */
  --rrs-shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --rrs-shadow:     0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.07);
  --rrs-shadow-lg:  0 8px 32px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08);
  --rrs-shadow-orange: 0 6px 24px rgba(212,87,26,0.30);

  /* Transitions */
  --rrs-transition: 0.22s ease;
  --rrs-transition-slow: 0.40s ease;

  /* Layout */
  --rrs-container-width: 1200px;
  --rrs-header-height:   72px;
}

/* ============================================================
   BASE RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: var(--rrs-font-size); scroll-behavior: smooth; }

body {
  font-family: var(--rrs-font);
  line-height: var(--rrs-line-height);
  color: var(--rrs-text);
  background: var(--rrs-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--rrs-orange); }
ul { list-style: none; }
address { font-style: normal; }

h1, h2, h3, h4, h5 {
  font-family: 'Futura', var(--rrs-font);
  font-weight: 700;
  line-height: 1.20;
  color: var(--rrs-text);
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.rrs-container {
  width: 100%;
  max-width: var(--rrs-container-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.rrs-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--rrs-space-md); }
.rrs-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--rrs-space-md); }
.rrs-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--rrs-space-md); }
.rrs-flex   { display: flex; }
.rrs-flex-center { display: flex; align-items: center; justify-content: center; }
.rrs-text-center { text-align: center; }

.rrs-visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.rrs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.625rem;
  border-radius: var(--rrs-radius-pill);
  font-family: var(--rrs-font);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--rrs-transition), color var(--rrs-transition),
              border-color var(--rrs-transition), box-shadow var(--rrs-transition),
              transform var(--rrs-transition);
  white-space: nowrap;
  text-decoration: none !important;
}
.rrs-btn:hover { transform: translateY(-1px); }
.rrs-btn:active { transform: translateY(0); }

.rrs-btn--primary {
  background: var(--rrs-orange);
  color: var(--rrs-white);
  border-color: var(--rrs-orange);
  box-shadow: var(--rrs-shadow-orange);
}
.rrs-btn--primary:hover {
  background: var(--rrs-orange-light);
  border-color: var(--rrs-orange-light);
  color: var(--rrs-white);
  box-shadow: 0 8px 28px rgba(212,87,26,0.38);
}

.rrs-btn--ghost {
  background: transparent;
  color: var(--rrs-white);
  border-color: rgba(255,255,255,0.50);
}
.rrs-btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--rrs-white);
  color: var(--rrs-white);
}

.rrs-btn--outline {
  background: transparent;
  color: var(--rrs-orange);
  border-color: var(--rrs-orange);
}
.rrs-btn--outline:hover {
  background: var(--rrs-orange);
  color: var(--rrs-white);
}

.rrs-btn--dark {
  background: var(--rrs-charcoal);
  color: var(--rrs-white);
  border-color: var(--rrs-charcoal);
}
.rrs-btn--dark:hover {
  background: #2a2f38;
  color: var(--rrs-white);
}

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

.rrs-btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1.0625rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.admin-bar .rrs-header {
  top: 32px;
}

.rrs-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--rrs-header-height);
  background: rgba(28, 31, 36, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--rrs-transition), box-shadow var(--rrs-transition);
}

.rrs-header--scrolled {
  background: var(--rrs-charcoal);
  box-shadow: 0 2px 20px rgba(0,0,0,0.30);
}

.rrs-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.rrs-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none !important;
}
.rrs-header__logo img { height: 70px; width: auto; }
.rrs-header__logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rrs-header__logo-rr {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.rrs-header__logo-name {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rrs-text-muted-on-dark);
  line-height: 1;
}

/* Desktop Nav */
.rrs-nav { display: flex; }
.rrs-nav__list { display: flex; align-items: center; gap: 0.125rem; }
.rrs-nav__item { position: relative; }

.rrs-nav__link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--rrs-radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--rrs-text-on-dark);
  transition: color var(--rrs-transition), background var(--rrs-transition);
  text-decoration: none !important;
}
.rrs-nav__link:hover {
  color: var(--rrs-white);
  background: rgba(255,255,255,0.08);
}

.rrs-nav__chevron { transition: transform var(--rrs-transition); }
.rrs-nav__item--has-dropdown:hover .rrs-nav__chevron { transform: rotate(180deg); }

.rrs-nav__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--rrs-charcoal);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--rrs-radius);
  box-shadow: var(--rrs-shadow-lg);
  min-width: 220px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--rrs-transition), visibility var(--rrs-transition), transform var(--rrs-transition);
  z-index: 100;
}
.rrs-nav__item--has-dropdown:hover .rrs-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.rrs-nav__dropdown li a {
  display: block;
  padding: 0.5625rem 0.875rem;
  border-radius: var(--rrs-radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--rrs-text-on-dark);
  transition: color var(--rrs-transition), background var(--rrs-transition);
}
.rrs-nav__dropdown li a:hover {
  color: var(--rrs-white);
  background: rgba(212,87,26,0.15);
}

/* Header actions */
.rrs-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.rrs-header__phone {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--rrs-text-on-dark);
  transition: color var(--rrs-transition);
  text-decoration: none !important;
}
.rrs-header__phone:hover { color: var(--rrs-orange-light); }

/* Hamburger */
.rrs-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: var(--rrs-radius-sm);
  transition: background var(--rrs-transition);
}
.rrs-header__hamburger:hover { background: rgba(255,255,255,0.08); }
.rrs-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--rrs-white);
  border-radius: 2px;
  transition: transform var(--rrs-transition), opacity var(--rrs-transition);
  transform-origin: center;
}
.rrs-header__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rrs-header__hamburger.is-open span:nth-child(2) { opacity: 0; }
.rrs-header__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.rrs-mobile-menu {
  position: fixed;
  top: var(--rrs-header-height);
  left: 0; right: 0; bottom: 0;
  background: var(--rrs-charcoal);
  z-index: 999;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.30s ease;
  padding-bottom: 120px;
}
.rrs-mobile-menu.is-open { transform: translateX(0); }

.rrs-mobile-menu__inner {
  padding: 1.5rem;
}
.rrs-mobile-menu__list { display: flex; flex-direction: column; }
.rrs-mobile-menu__list li a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--rrs-text-on-dark);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--rrs-transition);
}
.rrs-mobile-menu__list li a:hover { color: var(--rrs-orange-light); }
.rrs-mobile-menu__list li a.rrs-mobile-menu__sub {
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  color: var(--rrs-text-muted-on-dark);
}
.rrs-mobile-menu__cta {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1.5rem;
}
.rrs-mobile-menu__phone-link {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--rrs-orange-light);
  text-decoration: none !important;
}

/* Mobile bottom bar */
.rrs-mobile-bottom {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--rrs-dark);
  border-top: 1px solid rgba(255,255,255,0.10);
  z-index: 998;
  padding: 0.75rem 1rem;
  gap: 0.625rem;
}
.rrs-mobile-bottom a {
  flex: 1;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 0.5rem;
  border-radius: var(--rrs-radius-sm);
  text-decoration: none !important;
}
.rrs-mobile-bottom__call {
  background: var(--rrs-orange);
  color: var(--rrs-white);
}
.rrs-mobile-bottom__assess {
  background: rgba(255,255,255,0.08);
  color: var(--rrs-white);
  border: 1px solid rgba(255,255,255,0.20);
}

/* Page offset for fixed header */
.rrs-page-wrapper { padding-top: var(--rrs-header-height); }
.admin-bar .rrs-page-wrapper { padding-top: calc(var(--rrs-header-height) + 32px); }

/* ============================================================
   SECTION BASE
   ============================================================ */
.rrs-section {
  padding-block: var(--rrs-space-xl);
}
.rrs-section--sm { padding-block: var(--rrs-space-lg); }
.rrs-section--grey { background: var(--rrs-light); }
.rrs-section--dark {
  background: var(--rrs-charcoal);
  color: var(--rrs-text-on-dark);
}
.rrs-section--dark h2,
.rrs-section--dark h3,
.rrs-section--dark h4 { color: var(--rrs-white); }
.rrs-section--orange { background: var(--rrs-orange); }

.rrs-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rrs-orange);
  background: var(--rrs-orange-pale);
  padding: 0.3125rem 0.875rem;
  border-radius: var(--rrs-radius-pill);
  margin-bottom: 0.875rem;
}
.rrs-section--dark .rrs-section-label {
  color: var(--rrs-orange-light);
  background: rgba(212,87,26,0.18);
}

.rrs-section-heading {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 1rem;
}
.rrs-section-heading--lg {
  font-size: clamp(1.875rem, 4vw, 2.875rem);
}
.rrs-section-sub {
  font-size: 1.0625rem;
  color: var(--rrs-text-muted);
  max-width: 600px;
  line-height: 1.6;
}
.rrs-section-header { margin-bottom: var(--rrs-space-lg); }
.rrs-section-header--center { text-align: center; }
.rrs-section-header--center .rrs-section-sub { margin-inline: auto; }

/* ============================================================
   HERO, HOMEPAGE
   ============================================================ */
.rrs-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--rrs-dark);
  overflow: hidden;
  padding-block: var(--rrs-space-2xl);
  margin-top: calc(-1 * var(--rrs-header-height));
  padding-top: calc(var(--rrs-header-height) + var(--rrs-space-2xl));
}

.rrs-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(46,110,158,0.35) 0%, transparent 65%),
    linear-gradient(to bottom, rgba(13,15,19,0.72) 0%, rgba(13,15,19,0.50) 50%, rgba(13,15,19,0.82) 100%),
    url('images/arizona-storm-damage-roof-repair-contractor.webp') center center / cover no-repeat;
}

.rrs-hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.6;
}

.rrs-hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.rrs-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,87,26,0.18);
  border: 1px solid rgba(212,87,26,0.40);
  color: var(--rrs-orange-light);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: var(--rrs-radius-pill);
  margin-bottom: 1.25rem;
}

.rrs-hero__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--rrs-orange);
  border-radius: 50%;
  animation: rrs-pulse 1.8s ease-in-out infinite;
}

@keyframes rrs-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.rrs-hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--rrs-white);
  margin-bottom: 1.25rem;
}

.rrs-hero h1 .rrs-hero__accent { color: var(--rrs-orange); }

.rrs-hero__subtext {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--rrs-text-on-dark);
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.rrs-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.rrs-hero__trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.rrs-hero__trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--rrs-text-muted-on-dark);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 0.375rem 0.875rem;
  border-radius: var(--rrs-radius-pill);
}
.rrs-hero__trust-pill svg { opacity: 0.7; }

/* ============================================================
   HERO, INNER PAGES
   ============================================================ */
.rrs-hero-inner {
  position: relative;
  background: var(--rrs-charcoal);
  margin-top: calc(-1 * var(--rrs-header-height));
  padding-top: calc(var(--rrs-header-height) + 3.5rem);
  padding-bottom: 3rem;
  overflow: hidden;
}
.rrs-hero-inner__bg {
  position: absolute;
  inset: 0;
}
.rrs-hero-inner__content { position: relative; z-index: 2; }
.rrs-hero-inner__content h1 {
  font-size: clamp(1.875rem, 4vw, 2.875rem);
  font-weight: 800;
  color: var(--rrs-white);
  line-height: 1.12;
  margin-bottom: 0.875rem;
}
.rrs-hero-inner__content p {
  font-size: 1.0625rem;
  color: var(--rrs-text-on-dark);
  max-width: 640px;
  margin-bottom: 1.5rem;
}
.rrs-hero-inner__emergency {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--rrs-orange-light);
  margin-bottom: 1rem;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.rrs-trust-bar {
  background: var(--rrs-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-block: 1rem;
}
.rrs-trust-bar__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 0;
}
.rrs-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rrs-text-muted-on-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.875rem;
  white-space: nowrap;
}
.rrs-trust-bar__item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.12);
}
.rrs-trust-bar__item svg { color: var(--rrs-orange); flex-shrink: 0; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.rrs-service-card {
  background: var(--rrs-white);
  border-radius: var(--rrs-radius);
  box-shadow: var(--rrs-shadow);
  overflow: hidden;
  transition: transform var(--rrs-transition), box-shadow var(--rrs-transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rrs-mid);
}
.rrs-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rrs-shadow-lg);
}
.rrs-service-card__icon-bar {
  height: 6px;
  background: linear-gradient(90deg, var(--rrs-orange), var(--rrs-orange-light));
}
.rrs-service-card--blue .rrs-service-card__icon-bar {
  background: linear-gradient(90deg, var(--rrs-blue), var(--rrs-blue-light));
}
.rrs-service-card__body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }

.rrs-service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--rrs-radius-sm);
  background: var(--rrs-orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
  flex-shrink: 0;
}
.rrs-service-card--blue .rrs-service-card__icon { background: var(--rrs-blue-pale); }

.rrs-service-card__icon svg { color: var(--rrs-orange); }
.rrs-service-card--blue .rrs-service-card__icon svg { color: var(--rrs-blue); }

.rrs-service-card h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--rrs-text);
}
.rrs-service-card p {
  font-size: 0.9375rem;
  color: var(--rrs-text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}
.rrs-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--rrs-orange);
  transition: gap var(--rrs-transition);
}
.rrs-service-card__link:hover { gap: 0.625rem; color: var(--rrs-orange); }
.rrs-service-card--blue .rrs-service-card__link { color: var(--rrs-blue); }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.rrs-process {
  counter-reset: rrs-step;
}
.rrs-process-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--rrs-radius);
  margin-bottom: 1rem;
  align-items: flex-start;
  transition: background var(--rrs-transition), border-color var(--rrs-transition);
}
.rrs-process-step:hover {
  background: rgba(212,87,26,0.08);
  border-color: rgba(212,87,26,0.20);
}
.rrs-process-step__num {
  counter-increment: rrs-step;
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rrs-orange);
  color: var(--rrs-white);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rrs-process-step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--rrs-white);
  margin-bottom: 0.375rem;
}
.rrs-process-step p {
  font-size: 0.9375rem;
  color: var(--rrs-text-on-dark);
  opacity: 0.8;
  margin: 0;
}

/* Light bg version */
.rrs-section:not(.rrs-section--dark) .rrs-process-step {
  background: var(--rrs-white);
  border: 1px solid var(--rrs-mid);
}
.rrs-section:not(.rrs-section--dark) .rrs-process-step:hover {
  background: var(--rrs-orange-pale);
  border-color: rgba(212,87,26,0.20);
}
.rrs-section:not(.rrs-section--dark) .rrs-process-step h3 { color: var(--rrs-text); }
.rrs-section:not(.rrs-section--dark) .rrs-process-step p { color: var(--rrs-text-muted); opacity: 1; }

/* ============================================================
   WHY GRID
   ============================================================ */
.rrs-why-item {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1.625rem;
  background: var(--rrs-white);
  border-radius: var(--rrs-radius);
  border: 1px solid var(--rrs-mid);
  box-shadow: var(--rrs-shadow-sm);
  transition: border-color var(--rrs-transition), box-shadow var(--rrs-transition);
}
.rrs-why-item:hover {
  border-color: rgba(212,87,26,0.30);
  box-shadow: var(--rrs-shadow);
}
.rrs-why-item--blue:hover {
  border-color: rgba(46,110,158,0.35);
  box-shadow: var(--rrs-shadow);
}
.rrs-why-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--rrs-radius-sm);
  background: var(--rrs-orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rrs-orange);
  flex-shrink: 0;
}
.rrs-why-item h3 { font-size: 1rem; font-weight: 700; color: var(--rrs-text); }
.rrs-why-item p { font-size: 0.9rem; color: var(--rrs-text-muted); margin: 0; }

/* Blue icon variant for why items */
.rrs-why-item--blue .rrs-why-item__icon {
  background: var(--rrs-blue-pale);
  color: var(--rrs-blue);
}

/* Dark bg why items */
.rrs-section--dark .rrs-why-item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.rrs-section--dark .rrs-why-item:hover {
  border-color: rgba(46,110,158,0.40);
  background: rgba(46,110,158,0.08);
}
.rrs-section--dark .rrs-why-item__icon { background: rgba(212,87,26,0.18); }
.rrs-section--dark .rrs-why-item h3 { color: var(--rrs-white); }
.rrs-section--dark .rrs-why-item p { color: var(--rrs-text-on-dark); }

/* Blue process step variant */
.rrs-process-step--blue .rrs-process-step__num {
  background: var(--rrs-blue);
}
.rrs-process-step:hover {
  border-color: rgba(46,110,158,0.40);
  background: rgba(46,110,158,0.07);
}

/* ============================================================
   PARTNER CARD (AwareOwner)
   ============================================================ */
.rrs-partner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--rrs-charcoal);
  border-radius: var(--rrs-radius-lg);
  overflow: hidden;
  box-shadow: var(--rrs-shadow-lg);
}
.rrs-partner__content {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.rrs-partner__visual {
  background: linear-gradient(135deg, rgba(212,87,26,0.20) 0%, rgba(46,110,158,0.20) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  min-height: 300px;
}
.rrs-partner h2 { color: var(--rrs-white); font-size: clamp(1.5rem, 3vw, 2rem); }
.rrs-partner p { color: var(--rrs-text-on-dark); font-size: 1rem; line-height: 1.65; }
.rrs-partner-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rrs-orange-light);
}
.rrs-partner__flow {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 260px;
}
.rrs-partner__flow-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--rrs-radius);
  padding: 1rem 1.25rem;
  color: var(--rrs-white);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}
.rrs-partner__flow-item--orange {
  background: rgba(212,87,26,0.25);
  border-color: rgba(212,87,26,0.40);
  color: var(--rrs-orange-light);
}
.rrs-partner__flow-item--blue {
  background: rgba(46,110,158,0.25);
  border-color: rgba(46,110,158,0.40);
  color: var(--rrs-blue-light);
}
.rrs-partner__flow-arrow {
  text-align: center;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.30);
  margin: -0.25rem 0;
}

/* ============================================================
   FAQ (details/summary)
   ============================================================ */
.rrs-faq { display: flex; flex-direction: column; gap: 0.625rem; }

.rrs-faq-item {
  background: var(--rrs-white);
  border: 1px solid var(--rrs-mid);
  border-radius: var(--rrs-radius);
  overflow: hidden;
  transition: border-color var(--rrs-transition);
}
.rrs-faq-item:hover { border-color: var(--rrs-blue); background: rgba(46,110,158,0.03); }
.rrs-faq-item[open] { border-color: var(--rrs-blue); background: rgba(46,110,158,0.03); }

.rrs-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.375rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--rrs-text);
  cursor: pointer;
  list-style: none;
  user-select: none;
  line-height: 1.35;
}
.rrs-faq-item summary::-webkit-details-marker { display: none; }
.rrs-faq-item summary::marker { display: none; }

.rrs-faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--rrs-orange-pale);
  color: var(--rrs-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  transition: background var(--rrs-transition), transform var(--rrs-transition);
}
.rrs-faq-item[open] .rrs-faq-item__icon {
  background: var(--rrs-orange);
  color: var(--rrs-white);
  transform: rotate(45deg);
}

.rrs-faq-item__answer {
  padding: 0 1.375rem 1.125rem;
  font-size: 0.9375rem;
  color: var(--rrs-text-muted);
  line-height: 1.65;
}
.rrs-faq-item__answer p:last-child { margin: 0; }

/* Dark bg FAQ */
.rrs-section--dark .rrs-faq-item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.rrs-section--dark .rrs-faq-item summary { color: var(--rrs-white); }
.rrs-section--dark .rrs-faq-item__answer { color: var(--rrs-text-on-dark); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.rrs-testimonial-card {
  background: var(--rrs-white);
  border-radius: var(--rrs-radius);
  padding: 1.75rem;
  border: 1px solid var(--rrs-mid);
  box-shadow: var(--rrs-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rrs-testimonial-card__stars {
  display: flex;
  gap: 2px;
  color: #F59E0B;
  font-size: 1rem;
}
.rrs-testimonial-card__text {
  font-size: 0.9375rem;
  color: var(--rrs-text-muted);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
.rrs-testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.rrs-testimonial-card__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--rrs-text);
}
.rrs-testimonial-card__location {
  font-size: 0.8125rem;
  color: var(--rrs-text-muted);
}

/* ============================================================
   AREA CARDS (Service Areas)
   ============================================================ */
.rrs-area-card {
  background: var(--rrs-white);
  border: 1px solid var(--rrs-mid);
  border-radius: var(--rrs-radius);
  padding: 1.5rem;
  box-shadow: var(--rrs-shadow-sm);
  transition: border-color var(--rrs-transition), box-shadow var(--rrs-transition);
}
.rrs-area-card:hover {
  border-color: var(--rrs-orange);
  box-shadow: var(--rrs-shadow);
}
.rrs-area-card--blue:hover {
  border-color: rgba(46,110,158,0.40);
  background: rgba(46,110,158,0.04);
}
.rrs-area-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--rrs-text);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.rrs-area-card h3 svg { color: var(--rrs-orange); flex-shrink: 0; }
.rrs-area-card ul { display: flex; flex-direction: column; gap: 0.25rem; }
.rrs-area-card ul li {
  font-size: 0.9rem;
  color: var(--rrs-text-muted);
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--rrs-mid);
}
.rrs-area-card ul li:last-child { border-bottom: none; }
.rrs-area-card--blue h3 svg { color: var(--rrs-blue); }
.rrs-fact-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--rrs-radius-sm);
  transition: border-color var(--rrs-transition), background var(--rrs-transition);
  cursor: default;
}
.rrs-fact-item:hover {
  border-color: rgba(46,110,158,0.40);
  background: rgba(46,110,158,0.08);
}

/* ============================================================
   SERVICE LIST (bullet lists on service pages)
   ============================================================ */
.rrs-service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.rrs-service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--rrs-text-muted);
  padding: 0.5rem 0;
}
.rrs-service-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--rrs-orange);
  margin-top: 0.45em;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.rrs-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--rrs-text-muted-on-dark);
  margin-bottom: 1.25rem;
}
.rrs-breadcrumb a {
  color: var(--rrs-text-muted-on-dark);
  transition: color var(--rrs-transition);
}
.rrs-breadcrumb a:hover { color: var(--rrs-orange-light); }
.rrs-breadcrumb__sep { opacity: 0.4; }
.rrs-breadcrumb__current { color: var(--rrs-orange-light); font-weight: 500; }

/* ============================================================
   CTA BAND
   ============================================================ */
.rrs-cta-band {
  background: var(--rrs-orange);
  padding-block: var(--rrs-space-lg);
  text-align: center;
}
.rrs-cta-band h2 {
  color: var(--rrs-white);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  margin-bottom: 0.625rem;
}
.rrs-cta-band p {
  color: rgba(255,255,255,0.88);
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
}
.rrs-cta-band .rrs-btn--ghost { border-color: rgba(255,255,255,0.55); }
.rrs-btn--ghost-blue {
  border-color: var(--rrs-blue-light);
  color: var(--rrs-blue-light);
}
.rrs-btn--ghost-blue:hover {
  background: var(--rrs-blue);
  border-color: var(--rrs-blue);
  color: var(--rrs-white);
}

.rrs-cta-band--dark {
  background: var(--rrs-charcoal);
}

/* ============================================================
   FINANCING CALLOUT
   ============================================================ */
.rrs-financing {
  background: var(--rrs-light);
  border: 1px solid var(--rrs-mid);
  border-left: 4px solid var(--rrs-orange);
  border-radius: var(--rrs-radius);
  padding: 2rem 2.25rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.rrs-financing__icon {
  width: 56px;
  height: 56px;
  background: var(--rrs-orange-pale);
  border-radius: var(--rrs-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rrs-orange);
  flex-shrink: 0;
}
.rrs-financing__body {
  flex: 1;
  min-width: 200px;
}
.rrs-financing__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rrs-orange);
  margin-bottom: 0.25rem;
}
.rrs-financing__heading {
  font-family: 'Futura', var(--rrs-font);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--rrs-text);
  margin-bottom: 0.375rem;
}
.rrs-financing__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.625rem;
}
.rrs-financing__pill {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--rrs-text-muted);
  background: var(--rrs-white);
  border: 1px solid var(--rrs-mid);
  border-radius: var(--rrs-radius-pill);
  padding: 0.25rem 0.75rem;
}
.rrs-financing__actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}
@media (max-width: 600px) {
  .rrs-financing { padding: 1.5rem; }
  .rrs-financing__actions { width: 100%; }
  .rrs-financing__actions .rrs-btn { width: 100%; text-align: center; }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.rrs-form { display: flex; flex-direction: column; gap: 1rem; }
.rrs-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.rrs-form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.rrs-form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--rrs-text);
}
.rrs-form-input,
.rrs-form-select,
.rrs-form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--rrs-border);
  border-radius: var(--rrs-radius-sm);
  font-family: var(--rrs-font);
  font-size: 0.9375rem;
  color: var(--rrs-text);
  background: var(--rrs-white);
  transition: border-color var(--rrs-transition), box-shadow var(--rrs-transition);
  -webkit-appearance: none;
  appearance: none;
}
.rrs-form-input:focus,
.rrs-form-select:focus,
.rrs-form-textarea:focus {
  outline: none;
  border-color: var(--rrs-orange);
  box-shadow: 0 0 0 3px rgba(212,87,26,0.12);
}
.rrs-form-textarea { resize: vertical; min-height: 130px; }
.rrs-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.25rem;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.rrs-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.08); }
.rrs-stat {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--rrs-charcoal);
}
.rrs-stat__num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--rrs-orange);
  line-height: 1;
  margin-bottom: 0.375rem;
}
.rrs-stat__label {
  font-size: 0.875rem;
  color: var(--rrs-text-on-dark);
  font-weight: 500;
}

/* ============================================================
   TEAM CARDS
   ============================================================ */
.rrs-team-card {
  background: var(--rrs-white);
  border: 1px solid var(--rrs-mid);
  border-radius: var(--rrs-radius);
  overflow: hidden;
  text-align: center;
}
.rrs-team-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--rrs-light);
}
.rrs-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.rrs-team-card__info {
  padding: 1.5rem;
}
.rrs-team-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--rrs-text);
  margin-bottom: 0.25rem;
}
.rrs-team-card__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--rrs-orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.rrs-team-card__bio {
  font-size: 0.9rem;
  color: var(--rrs-text-muted);
  line-height: 1.6;
}

/* ============================================================
   INFO BOX (contact page)
   ============================================================ */
.rrs-info-card {
  background: var(--rrs-charcoal);
  border-radius: var(--rrs-radius);
  padding: 2rem;
  color: var(--rrs-text-on-dark);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.rrs-info-card h3 { color: var(--rrs-white); font-size: 1.25rem; }
.rrs-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.rrs-contact-detail__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--rrs-radius-sm);
  background: rgba(212,87,26,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rrs-orange-light);
  flex-shrink: 0;
}
.rrs-contact-detail__text { display: flex; flex-direction: column; gap: 0.125rem; }
.rrs-contact-detail__label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--rrs-text-muted-on-dark); }
.rrs-contact-detail__value { font-size: 1rem; font-weight: 600; color: var(--rrs-white); }
.rrs-contact-detail__value a { color: var(--rrs-orange-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.rrs-footer {
  background: var(--rrs-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--rrs-text-on-dark);
}
.rrs-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-block: 3.5rem;
}
.rrs-footer__logo { display: block; margin-bottom: 1rem; }
.rrs-footer__logo img { height: 38px; width: auto; }
.rrs-footer__tagline {
  font-size: 0.9rem;
  color: var(--rrs-text-muted-on-dark);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  max-width: 260px;
}
.rrs-footer__contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.rrs-footer__contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--rrs-text-muted-on-dark);
  transition: color var(--rrs-transition);
  text-decoration: none !important;
}
.rrs-footer__contact-link:hover { color: var(--rrs-orange-light); }
.rrs-footer__address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--rrs-text-muted-on-dark);
}
.rrs-footer__col-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rrs-white);
  margin-bottom: 1rem;
}
.rrs-footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.rrs-footer__links a {
  font-size: 0.875rem;
  color: var(--rrs-text-muted-on-dark);
  transition: color var(--rrs-transition);
  text-decoration: none !important;
}
.rrs-footer__links a:hover { color: var(--rrs-orange-light); }
.rrs-footer__cta-box {
  margin-top: 1.25rem;
  padding: 1.25rem;
  background: rgba(212,87,26,0.12);
  border: 1px solid rgba(212,87,26,0.25);
  border-radius: var(--rrs-radius);
}
.rrs-footer__cta-box p {
  font-size: 0.875rem;
  color: var(--rrs-text-on-dark);
  margin-bottom: 0.875rem;
}
.rrs-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-block: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.rrs-footer__legal {
  font-size: 0.8125rem;
  color: var(--rrs-text-muted-on-dark);
  opacity: 0.75;
  line-height: 1.55;
}
.rrs-footer__legal--small { font-size: 0.75rem; opacity: 0.50; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.rrs-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.rrs-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .rrs-footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .rrs-partner { grid-template-columns: 1fr; }
  .rrs-partner__visual { min-height: 200px; }
  .rrs-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .rrs-nav { display: none; }
  .rrs-header__actions { display: none; }
  .rrs-header__hamburger { display: flex; }
  .rrs-mobile-bottom { display: flex; }
}

@media (max-width: 768px) {
  :root { --rrs-space-xl: 3rem; --rrs-space-2xl: 4rem; }
  .rrs-grid-2 { grid-template-columns: 1fr; }
  .rrs-grid-3 { grid-template-columns: 1fr; }
  .rrs-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .rrs-form-row { grid-template-columns: 1fr; }
  .rrs-service-list { grid-template-columns: 1fr; }
  .rrs-hero__actions { flex-direction: column; align-items: center; }
  .rrs-hero__actions .rrs-btn { width: 100%; max-width: 320px; }
  .rrs-trust-bar__item { padding-inline: 0.75rem; font-size: 0.75rem; }
  .rrs-trust-bar__item:not(:last-child) { border-right: none; }
  .rrs-trust-bar__list { justify-content: flex-start; gap: 0.5rem 0; }
}

@media (max-width: 560px) {
  .rrs-grid-4 { grid-template-columns: 1fr; }
  .rrs-stats { grid-template-columns: repeat(2, 1fr); }
  .rrs-footer__top { grid-template-columns: 1fr; gap: 1.75rem; }
  .rrs-trust-bar__item { border-right: none !important; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .rrs-animate { opacity: 1; transform: none; transition: none; }
  .rrs-hero__badge-dot { animation: none; }
}
