/* ════════════════════════════════════════════════════
   RESET
════════════════════════════════════════════════════ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{background:var(--rs-color-bg);color:var(--rs-color-text);font-size:var(--rs-font-size-base);font-family:var(--rs-font-body);}
a{text-decoration:none;}
button{cursor:pointer;}
ul{list-style:none;}

.rs-hero--v5 .rs-hero__top{
  grid-template-columns:minmax(0,1.12fr) minmax(420px,.88fr);
  gap:40px;
  align-items:end;
}
.rs-hero--v5 .rs-hero__person{
  height:560px;
  margin-bottom:-64px;
  justify-content:flex-end;
  overflow:visible;
  isolation:isolate;
}
.rs-hero__person-figure--photo{
  width:min(660px,44vw);
  height:620px;
  display:flex;
  align-items:flex-end;
  justify-content:flex-end;
  background:transparent!important;
  box-shadow:none!important;
  border:0!important;
  overflow:visible;
  -webkit-mask-image:none!important;
  mask-image:none!important;
  transform:translateX(-8px) translateY(10px) scale(1.04);
  transform-origin:right bottom;
}
.rs-hero__person-figure--photo img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:right bottom;
  display:block;
  background:transparent!important;
  filter:drop-shadow(0 22px 42px rgba(15,23,42,.18));
}
@media (max-width:980px){
  .rs-hero--v5 .rs-hero__top{grid-template-columns:1fr;gap:28px;}
  .rs-hero--v5 .rs-hero__person{height:460px;justify-content:center;margin-bottom:-48px;}
  .rs-hero__person-figure--photo{width:min(520px,92vw);height:500px;transform:translateY(8px) scale(1.02);justify-content:center;}
  .rs-hero__person-figure--photo img{object-position:center bottom;}
}


/* hero variant panels (demo mode show/hide) */
.hero-variant{display:none;}
.hero-variant.active{display:block;}

/* ════════════════════════════════════════════════════
   RS-SUPERHEADER  (_includes/header.html top bar)
════════════════════════════════════════════════════ */
.rs-superheader{
  background:var(--rs-superheader-bg);
  color:var(--rs-superheader-text);
  display:flex;align-items:center;justify-content:center;
  padding:0;height:38px;
  font-family:var(--rs-font-body);
  font-size:12px;font-weight:500;
  position:sticky;top:0;z-index:701;
}
.rs-superheader__inner{
  width:100%;max-width:1320px;
  display:flex;align-items:center;
  padding:0 40px;gap:24px;
}
.rs-superheader__phone{display:flex;align-items:center;gap:6px;}
.rs-superheader__phone a{color:inherit;font-weight:600;}
.rs-superheader__sep{opacity:.2;}
.rs-superheader__hours{opacity:.7;}
.rs-superheader__badge{
  display:flex;align-items:center;gap:5px;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);
  border-radius:100px;padding:3px 10px;font-size:11px;
}
.rs-superheader__badge-dot{width:6px;height:6px;border-radius:50%;background:#22c55e;flex-shrink:0;}
.rs-superheader__right{margin-left:auto;display:flex;align-items:center;gap:12px;}
/* Desktop superheader CTA — hidden on desktop (no CTA in superheader on desktop) */
.rs-superheader__cta{display:none;}
/* Mobile-only dual CTA block — hidden on desktop, shown on mobile via media query */
.rs-superheader__mobile-ctas{display:none;}
.rs-superheader__mobile-hours{font-size:11px;opacity:.7;text-align:center;}
.rs-superheader__mobile-btns{display:flex;gap:8px;width:100%;}
.rs-superheader__mobile-btn{
  flex:1;text-align:center;padding:9px 0;
  font-size:13px;font-weight:700;font-family:var(--rs-font-body);
  border-radius:var(--rs-btn-radius);
  display:flex;align-items:center;justify-content:center;gap:5px;
  min-height:40px;text-decoration:none;white-space:nowrap;
}
.rs-superheader__mobile-btn--call{background:rgba(255,255,255,.12);color:#fff;border:1px solid rgba(255,255,255,.2);}
.rs-superheader__mobile-btn--cta{background:var(--rs-color-primary);color:#fff;}

/* ════════════════════════════════════════════════════
   RS-NAV  (_includes/header.html main nav)
════════════════════════════════════════════════════ */
.rs-nav{
  background:var(--rs-nav-bg);
  border-bottom:1px solid var(--rs-color-border);
  display:flex;align-items:center;justify-content:center;
  padding:0;height:64px;
  font-family:var(--rs-font-body);
  position:sticky;top:38px;z-index:700;
  gap:0;
}
.rs-nav__inner{width:100%;max-width:1320px;display:flex;align-items:center;padding:0 40px;gap:0;}

.rs-nav__logo{
  font-family:var(--rs-font-heading);
  font-weight:800;font-size:20px;
  color:var(--rs-nav-text);
  margin-right:auto;letter-spacing:-.03em;
  display:flex;align-items:center;gap:10px;
}
.rs-nav__logo-accent{color:var(--rs-color-primary);}

/* logo icon (C only) */
.rs-nav__logo-icon{
  width:30px;height:30px;background:var(--rs-color-primary);
  border-radius:7px;display:flex;align-items:center;justify-content:center;font-size:14px;
}

.rs-nav__links{
  display:flex;align-items:center;gap:0;margin-right:16px;
}

/* Each nav item wraps button + optional dropdown */
.rs-nav__item{
  position:relative;
  display:flex;align-items:center;
}

.rs-nav__link{
  padding:0 14px;height:64px;border:none;background:none;
  font-family:var(--rs-font-body);font-size:15px;font-weight:500;
  color:var(--rs-nav-text-muted);
  display:flex;align-items:center;gap:5px;transition:color .15s;
  border-bottom:2px solid transparent;
  cursor:pointer;white-space:nowrap;
}
.rs-nav__link:hover{color:var(--rs-nav-text);}
.rs-nav__item:hover .rs-nav__link{color:var(--rs-nav-text);}

/* Chevron for items with dropdown — SVG inline chevron, clearly visible */
.rs-nav__link--has-drop .rs-nav__chevron{
  display:inline-flex;align-items:center;justify-content:center;
  width:16px;height:16px;
  opacity:.55;
  transition:transform .2s, opacity .2s;
  flex-shrink:0;
}
/* Render as CSS chevron using borders */
.rs-nav__link--has-drop .rs-nav__chevron::before{
  content:'';
  display:block;
  width:8px;height:8px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg) translate(-2px,-2px);
  border-radius:1px;
}
.rs-nav__item:has(.rs-nav__link--has-drop):hover .rs-nav__link--has-drop .rs-nav__chevron,
.rs-nav__item--open .rs-nav__link--has-drop .rs-nav__chevron{
  transform:rotate(180deg);opacity:.85;
}

/* Nav larger font variant */
.rs-nav--large .rs-nav__link{font-size:17px;}

/* ── Dropdown panel ── */
.rs-nav__dropdown{
  position:absolute;top:100%;left:0;
  background:var(--rs-color-surface);
  border:1px solid var(--rs-color-border);
  border-top:none;
  border-radius:0 0 14px 14px;
  box-shadow:0 16px 48px rgba(0,0,0,.12),0 4px 12px rgba(0,0,0,.06);
  padding:24px;
  display:none;
  z-index:600;
  min-width:720px;
  gap:24px;
  flex-direction:column;
}
/* Show on hover of parent item — only items that contain a dropdown trigger */
.rs-nav__item:has(.rs-nav__link--has-drop):hover .rs-nav__dropdown,
.rs-nav__item--open .rs-nav__dropdown{
  display:flex;
  flex-direction:column;
}
/* Inner row containing columns */
.rs-nav__dd-cols{
  display:flex;
  gap:24px;
}
/* About dropdown is narrower */
.rs-nav__dropdown--about{
  min-width:280px;
}

/* Dropdown columns */
.rs-nav__dd-col{
  display:flex;flex-direction:column;gap:0;flex:1;
}
.rs-nav__dd-col-title{
  font-family:var(--rs-font-body);
  font-size:10px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  color:var(--rs-color-primary);
  margin-bottom:12px;padding-bottom:8px;
  border-bottom:1px solid var(--rs-color-border);
}

.rs-nav__dd-item{
  display:flex;align-items:center;gap:10px;
  padding:8px 10px;border-radius:8px;
  font-family:var(--rs-font-body);font-size:14px;font-weight:500;
  color:var(--rs-color-text-muted);
  text-decoration:none;cursor:pointer;
  transition:background .15s,color .15s;
  border:none;background:none;text-align:left;width:100%;
}
.rs-nav__dd-item:hover{
  background:var(--rs-color-primary-light);
  color:var(--rs-color-primary);
}

.rs-nav__dd-item-icon{
  font-size:16px;flex-shrink:0;
  width:28px;height:28px;border-radius:7px;
  background:var(--rs-color-bg-alt);
  display:flex;align-items:center;justify-content:center;
}
img.rs-nav__dd-item-icon{width:20px;height:20px;flex-shrink:0;opacity:.85;display:inline-block;vertical-align:middle;background:transparent;}

.rs-nav__dd-item-text{}
.rs-nav__dd-item-label{font-size:14px;font-weight:600;color:inherit;display:block;}
.rs-nav__dd-item-sub{font-size:12px;opacity:.6;display:block;margin-top:1px;}

/* Dropdown footer — view all link */
.rs-nav__dd-footer{
  border-top:1px solid var(--rs-color-border);
  padding-top:12px;
  margin-top:4px;
}
.rs-nav__dd-footer-link{
  font-family:var(--rs-font-body);
  font-size:13px;font-weight:700;
  color:var(--rs-color-primary);
  text-decoration:none;
  display:inline-flex;align-items:center;gap:4px;
}
.rs-nav__dd-footer-link:hover{text-decoration:underline;}

/* Divider between dropdown cols */
.rs-nav__dd-divider{
  width:1px;background:var(--rs-color-border);
  margin:0 4px;flex-shrink:0;
}

/* CTA button */
.rs-nav__cta{
  background:var(--rs-color-primary);color:#fff;border:none;
  padding:10px 20px;font-size:14px;font-weight:700;
  font-family:var(--rs-font-body);
  border-radius:var(--rs-btn-radius);
  white-space:nowrap;cursor:pointer;
}
/* Desktop-only nav CTA — hidden on mobile (CTA moves to superheader on mobile) */
.rs-nav__cta--desktop-only{display:inline-flex;align-items:center;}

/* ══════════════════════════════════════════════════
   NAV VARIANT: CENTER
   Logo left · Links centered · CTA right
   Three-zone grid — equal left/right columns
══════════════════════════════════════════════════ */
.rs-nav--center{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding:0 40px;
}
.rs-nav--center .rs-nav__logo{margin-right:0;}
.rs-nav--center .rs-nav__links{margin-right:0;justify-content:center;gap:0;}
.rs-nav--center .rs-nav__right{display:flex;align-items:center;justify-content:flex-end;gap:12px;}

/* ══════════════════════════════════════════════════
   NAV VARIANT: WIDE (Spread)
   Logo left · Links spread to fill full width · CTA right
   Links use justify-content:space-between to fill the
   entire space between logo and CTA
══════════════════════════════════════════════════ */
.rs-nav--wide{
  display:flex;
  align-items:center;
  padding:0 40px;
  gap:0;
}
.rs-nav--wide .rs-nav__logo{flex-shrink:0;margin-right:0;}
/* Links stretch to fill remaining space */
.rs-nav--wide .rs-nav__links{
  flex:1;
  margin:0 8px;
  justify-content:center;
  gap:clamp(24px,3.5vw,60px); /* spreads with viewport width, hard cap at 60px */
}
.rs-nav--wide .rs-nav__right{flex-shrink:0;display:flex;align-items:center;gap:12px;}

/* ════════════════════════════════════════════════════
   SHARED SECTION STYLES
════════════════════════════════════════════════════ */
.rs-section{padding:72px 48px;background:var(--rs-color-bg);}
.rs-section--alt{background:var(--rs-color-bg-alt);}
.rs-section--dark{background:var(--rs-color-dark);color:#fff;}
.rs-section--dark-alt{background:var(--rs-color-dark-alt);color:#fff;}
.rs-container{max-width:1320px;margin:0 auto;}
/* #6 — standard pages (Trade In, Contact, Reviews, Warranty, Financing, Privacy, Terms, FAQ, Services, Book a Repair) place hero content in a bare .rs-container with an unstyled variant class, so the header rendered edge-to-edge with no padding or width constraint. Constrain it to a centered, padded column so the page reads as an intentional, formatted header with real side margins. (about/homepage heroes use __inner, not a direct .rs-container child, so they are unaffected.) */
section.rs-hero > .rs-container{max-width:880px!important;margin-left:auto!important;margin-right:auto!important;padding:64px 24px 48px!important;}
/* #6 (cont.) — the body sections of these template pages (FAQ "Common questions", Trade In "What to include", contact details, warranty, how-it-works) place their text as direct children with no centered inner, so it stretched edge-to-edge. Constrain that direct text to the same centered column as the hero content (880 - 48 padding = 832) so the whole page reads as one aligned, formatted column. Grid/inner wrappers (__grid/__inner/__steps) are not direct h2/p/ul/ol children, so they keep their own layout. */
.rs-faq > h2, .rs-faq > .rs-faq__item,
.rs-what-we-fix > h2, .rs-what-we-fix > ul,
.rs-hours-contact > h2, .rs-hours-contact > p,
.rs-guarantee-block > h2, .rs-guarantee-block > p,
.rs-how-it-works > h2, .rs-how-it-works > ol, .rs-how-it-works > ul{max-width:832px;margin-left:auto;margin-right:auto;}
/* Blog post body — was unstyled, so text ran into the screen edges on mobile and far too wide on desktop. Give it a readable padded column and keep the featured image responsive so it can't overflow. */
.rs-blog-post-body{padding:8px 24px 72px;}
.rs-blog-post-body__wrap{max-width:760px;margin:0 auto;}
.rs-blog-post-body__featured-image{display:block;width:calc(100% - 48px);max-width:760px;height:auto;margin:24px auto 8px;border-radius:16px;}
/* Blog author block — center it as a tidy end-of-article author section instead of flush-left raw text. */
.rs-author-block{padding:8px 24px 56px;}
.rs-author-block .rs-container{max-width:680px;text-align:center;border-top:1px solid var(--rs-color-border);padding-top:32px;}
.rs-author-block__byline{font-weight:800;font-size:15px;color:var(--rs-color-text);margin-bottom:8px;}
.rs-author-block__bio{font-size:14px;color:var(--rs-color-text-muted);line-height:1.65;max-width:520px;margin:0 auto;}
/* Reviews page — the standalone .rs-reviews section has a dark background, but its plain h2/p children had no light color set, so the text rendered dark-on-dark and was unreadable. Make them white and align to the same centered column as the rest of the page. */
.rs-reviews > h2{color:#fff;max-width:832px;margin-left:auto;margin-right:auto;}
.rs-reviews > p{color:rgba(255,255,255,.82);max-width:832px;margin-left:auto;margin-right:auto;line-height:1.7;margin-top:14px;}
/* How-it-works steps on standard pages (financing, warranty, sell) use a plain <ol>.
   Render each step as a polished card with a gradient number badge so it matches the
   service-page step cards instead of reading as a bland numbered list. */
.rs-how-it-works > ol{list-style:none;counter-reset:hiw;max-width:760px;margin:36px auto 0;padding:0;display:grid;gap:16px;}
.rs-how-it-works > ol > li{position:relative;counter-increment:hiw;background:var(--rs-color-surface);border:1px solid var(--rs-color-border);border-radius:16px;padding:22px 26px 22px 84px;box-shadow:0 1px 2px rgba(15,23,42,.04);transition:transform .16s,box-shadow .16s,border-color .16s;font-size:15px;line-height:1.7;color:var(--rs-color-text-muted);}
.rs-how-it-works > ol > li:hover{transform:translateY(-2px);box-shadow:0 14px 28px rgba(15,23,42,.09);border-color:var(--rs-color-primary);}
.rs-how-it-works > ol > li::before{content:counter(hiw);position:absolute;left:24px;top:22px;width:44px;height:44px;border-radius:13px;background:linear-gradient(135deg,#bb2525,#921d1d);color:#fff;font-family:var(--rs-font-heading);font-size:19px;font-weight:800;display:flex;align-items:center;justify-content:center;box-shadow:0 8px 18px rgba(187,37,37,.35);}
.rs-how-it-works > ol > li strong{display:block;font-size:17px;font-weight:800;color:var(--rs-color-text);margin-bottom:3px;}
/* "What we fix / what to include" lists (trade-in) — checkmarked two-column list. */
.rs-what-we-fix > ul{list-style:none;max-width:760px;margin:28px auto 0;padding:0;display:grid;grid-template-columns:1fr 1fr;gap:12px 28px;}
.rs-what-we-fix > ul > li{position:relative;padding-left:30px;line-height:1.6;color:var(--rs-color-text-muted);}
.rs-what-we-fix > ul > li::before{content:"";position:absolute;left:2px;top:2px;width:18px;height:18px;background:no-repeat center/contain;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");}
@media(max-width:640px){.rs-what-we-fix > ul{grid-template-columns:1fr;}}
.rs-what-we-fix > .rs-section-kicker{justify-content:center;margin-bottom:6px;}
.rs-what-we-fix > h2{text-align:center;}
/* About-style hero illustration sizing (used on warranty, trade-in, financing) */
.rs-about-hero__art{width:80%;max-width:340px;height:auto;display:block;position:relative;z-index:1;animation:rsFloaty 4.5s ease-in-out infinite;}
@keyframes rsFloaty{0%,100%{transform:translateY(0);}50%{transform:translateY(-12px);}}
@media(prefers-reduced-motion:reduce){.rs-about-hero__art{animation:none;}}
/* ── Scroll reveal: sections gently fade + rise into view. Guarded by .js-reveal,
   which JS only adds when supported — so if JS is off, nothing is ever hidden. ── */
.js-reveal [data-reveal]{opacity:0;transform:translateY(24px);transition:opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);will-change:opacity,transform;}
.js-reveal [data-reveal].is-revealed{opacity:1;transform:none;}
@media(prefers-reduced-motion:reduce){.js-reveal [data-reveal]{opacity:1!important;transform:none!important;transition:none!important;}}
/* ============================================================
   REVIEWS PAGE — distinctive, review-focused layout
   ============================================================ */
.rs-rev-hero{padding:72px 48px;background:var(--rs-color-bg);border-bottom:1px solid var(--rs-color-border);}
.rs-rev-hero__inner{max-width:1320px;margin:0 auto;display:grid;grid-template-columns:1.1fr .9fr;gap:56px;align-items:center;}
.rs-rating-card{background:linear-gradient(150deg,#0f172a,#1e3a8a);color:#fff;border-radius:24px;padding:44px 40px;text-align:center;box-shadow:0 28px 56px rgba(15,23,42,.28);position:relative;overflow:hidden;}
.rs-rating-card::before{content:"";position:absolute;top:-40px;right:-40px;width:160px;height:160px;border-radius:50%;background:radial-gradient(circle,rgba(187,37,37,.35),transparent 70%);}
.rs-rating-card__score{font-family:var(--rs-font-heading);font-size:88px;font-weight:900;line-height:1;}
.rs-rating-card__stars{color:#fbbf24;font-size:30px;letter-spacing:5px;margin:10px 0 10px;}
.rs-rating-card__count{font-size:14px;color:rgba(255,255,255,.62);}
.rs-rating-card__platform{margin-top:22px;display:inline-flex;align-items:center;gap:8px;font-size:13px;font-weight:700;background:rgba(255,255,255,.12);padding:9px 18px;border-radius:999px;}
/* Rating breakdown bars */
.rs-rating-breakdown{padding:60px 24px;background:var(--rs-color-bg-alt);border-bottom:1px solid var(--rs-color-border);}
.rs-rating-breakdown__inner{max-width:720px;margin:0 auto;}
.rs-rating-breakdown__head{text-align:center;margin-bottom:30px;}
.rs-rating-breakdown__head .rs-section-kicker{justify-content:center;}
.rs-rating-breakdown__title{font-family:var(--rs-font-heading);font-size:clamp(24px,3.4vw,32px);font-weight:800;letter-spacing:-.02em;color:var(--rs-color-text);margin-top:4px;}
.rs-rating-row{display:grid;grid-template-columns:46px 1fr 44px;align-items:center;gap:14px;margin-bottom:12px;}
.rs-rating-row__label{font-size:13px;font-weight:700;color:var(--rs-color-text-muted);white-space:nowrap;}
.rs-rating-row__track{height:11px;background:#dbe4f0;border-radius:999px;overflow:hidden;}
.rs-rating-row__fill{height:100%;background:linear-gradient(90deg,#bb2525,#921d1d);border-radius:999px;}
.rs-rating-row__pct{font-size:13px;font-weight:800;color:var(--rs-color-text);text-align:right;}
/* Featured pull-quote */
.rs-rev-featured{padding:72px 24px 56px;text-align:center;}
.rs-rev-featured__inner{max-width:820px;margin:0 auto;}
.rs-rev-featured__mark{font-family:Georgia,'Times New Roman',serif;font-size:96px;line-height:.6;color:var(--rs-color-primary);opacity:.18;}
.rs-rev-featured__quote{font-family:var(--rs-font-heading);font-size:clamp(22px,3vw,30px);font-weight:700;line-height:1.45;color:var(--rs-color-text);letter-spacing:-.01em;margin:8px 0 0;}
.rs-rev-featured__stars{color:#f59e0b;font-size:22px;letter-spacing:3px;margin:22px 0 12px;}
.rs-rev-featured__author{font-weight:800;font-size:16px;color:var(--rs-color-text);}
.rs-rev-featured__role{font-size:14px;color:var(--rs-color-text-muted);margin-top:2px;}
/* Platform badges */
.rs-platforms{padding:56px 24px 68px;}
.rs-platforms__inner{max-width:760px;margin:0 auto;display:flex;justify-content:center;gap:16px;flex-wrap:wrap;}
.rs-platform-badge{display:flex;align-items:center;gap:12px;background:var(--rs-color-surface);border:1px solid var(--rs-color-border);border-radius:14px;padding:14px 22px;box-shadow:0 1px 2px rgba(15,23,42,.04);}
.rs-platform-badge__name{font-weight:800;color:var(--rs-color-text);}
.rs-platform-badge__score{color:#f59e0b;font-weight:800;}
@media(max-width:900px){.rs-rev-hero__inner{grid-template-columns:1fr;gap:36px;}}
@media(max-width:640px){
  .rs-rev-hero{padding:48px 24px;}
  .rs-rating-breakdown{padding:48px 24px;}
  .rs-rev-featured{padding:48px 24px 44px;}
  .rs-platforms{padding:44px 24px 56px;}
  .rs-rating-card{padding:36px 28px;}
  .rs-rating-card__score{font-size:72px;}
  .rs-rev-featured__quote{font-size:21px;}
  .rs-platforms__inner{gap:14px;}
}
/* Finance options — three feature cards */
.rs-finance-options{padding:64px 24px;background:var(--rs-color-bg-alt);border-top:1px solid var(--rs-color-border);border-bottom:1px solid var(--rs-color-border);}
.rs-finance-options .rs-container{max-width:1000px;margin:0 auto;}
.rs-finance-options__head{text-align:center;max-width:680px;margin:0 auto;}
.rs-finance-options__head .rs-section-kicker{justify-content:center;}
.rs-finance-options__title{font-family:var(--rs-font-heading);font-size:clamp(24px,3.4vw,32px);font-weight:800;letter-spacing:-.02em;color:var(--rs-color-text);margin:4px 0 6px;}
.rs-finance-options__sub{font-size:15px;color:var(--rs-color-text-muted);line-height:1.6;}
.rs-finance-options__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:34px;}
.rs-finance-card{background:var(--rs-color-surface);border:1px solid var(--rs-color-border);border-radius:18px;padding:28px 24px;transition:transform .16s,box-shadow .16s,border-color .16s;}
.rs-finance-card:hover{transform:translateY(-3px);box-shadow:0 16px 32px rgba(15,23,42,.09);border-color:var(--rs-color-primary);}
.rs-finance-card__icon{width:48px;height:48px;border-radius:13px;background:linear-gradient(135deg,var(--rs-color-primary),var(--rs-color-primary-dark));display:flex;align-items:center;justify-content:center;margin-bottom:16px;box-shadow:0 8px 18px rgba(187,37,37,.3);}
/* finance topic cards usable as anchor links (jump to FAQ section); keep them theme-coloured (María, master fix #6) */
a.rs-finance-card{text-decoration:none;color:inherit;}
.rs-faq__cat{scroll-margin-top:150px;}
.rs-finance-card__icon svg{width:26px;height:26px;}
.rs-finance-card__title{font-family:var(--rs-font-heading);font-size:18px;font-weight:800;color:var(--rs-color-text);margin-bottom:8px;}
.rs-finance-card__desc{font-size:14.5px;line-height:1.65;color:var(--rs-color-text-muted);}
@media(max-width:780px){.rs-finance-options__grid{grid-template-columns:1fr;}}
/* ===== Legal pages (privacy, terms) — clean, readable document card ===== */
.rs-legal{padding:8px 24px 72px;background:var(--rs-color-bg);}
.rs-legal__wrap{max-width:800px;margin:0 auto;background:var(--rs-color-surface);border:1px solid var(--rs-color-border);border-radius:20px;padding:40px 44px;box-shadow:var(--rs-shadow-card);}
.rs-legal__wrap > h2:first-of-type{margin-top:0;padding-top:0;border-top:none;}
.rs-legal__wrap h2{font-family:var(--rs-font-heading);font-size:clamp(20px,2.6vw,24px);font-weight:800;color:var(--rs-color-text);letter-spacing:-.01em;margin:34px 0 12px;padding-top:26px;border-top:1px solid var(--rs-color-border);}
.rs-legal__wrap h3{font-family:var(--rs-font-heading);font-size:17px;font-weight:700;color:var(--rs-color-text);margin:22px 0 8px;}
.rs-legal__wrap p{font-size:16px;line-height:1.8;color:var(--rs-color-text-muted);margin:0 0 14px;}
.rs-legal__wrap strong{color:var(--rs-color-text);font-weight:700;}
.rs-legal__wrap a{color:var(--rs-color-primary);text-decoration:underline;text-underline-offset:2px;}
.rs-legal__wrap ul{list-style:none;margin:0 0 18px;padding:0;}
.rs-legal__wrap li{position:relative;padding-left:26px;margin-bottom:10px;line-height:1.7;color:var(--rs-color-text-muted);}
.rs-legal__wrap li::before{content:"";position:absolute;left:4px;top:10px;width:7px;height:7px;border-radius:50%;background:var(--rs-color-primary);}
.rs-legal__updated{display:inline-flex;align-items:center;gap:8px;background:var(--rs-color-bg-alt);border:1px solid var(--rs-color-border);border-radius:999px;padding:8px 16px;font-size:13px;font-weight:600;color:var(--rs-color-text-muted);margin-bottom:28px;}
@media(max-width:640px){.rs-legal{padding:8px 16px 56px;}.rs-legal__wrap{padding:26px 20px;border-radius:16px;}.rs-legal__wrap p,.rs-legal__wrap li{font-size:15px;}}
/* ===== Contact form placeholder + map note ===== */
.rs-contact-form{padding:8px 24px 8px;}
.rs-contact-form__wrap{max-width:760px;margin:0 auto;background:var(--rs-color-surface);border:1px dashed var(--rs-color-border-strong,#e6aeae);border-radius:18px;padding:34px 28px;text-align:center;}
.rs-contact-form__icon{width:48px;height:48px;border-radius:13px;background:linear-gradient(135deg,#bb2525,#921d1d);display:flex;align-items:center;justify-content:center;margin:0 auto 14px;box-shadow:0 8px 18px rgba(187,37,37,.3);}
.rs-contact-form__icon svg{width:26px;height:26px;}
.rs-contact-form__wrap h2{font-family:var(--rs-font-heading);font-size:22px;font-weight:800;color:var(--rs-color-text);margin-bottom:8px;}
.rs-contact-form__wrap p{font-size:15px;color:var(--rs-color-text-muted);line-height:1.65;max-width:520px;margin:0 auto;}
/* ──────────────────────────────────────────────────────────
   Blog article typography — one consistent, organized rhythm
   so headings, body text, and lists read as a single page.
   ────────────────────────────────────────────────────────── */
.rs-blog-post-body__wrap{font-size:17px;color:var(--rs-color-text);}
.rs-blog-post-body__wrap > *:first-child{margin-top:0;}
/* Headings */
.rs-blog-post-body__wrap > h2{font-family:var(--rs-font-heading);font-size:clamp(23px,3vw,28px);font-weight:800;letter-spacing:-.02em;color:var(--rs-color-text);line-height:1.25;margin:40px 0 14px;}
.rs-blog-post-body__wrap > h3{font-family:var(--rs-font-heading);font-size:20px;font-weight:700;color:var(--rs-color-text);line-height:1.3;margin:30px 0 10px;}
/* Body text */
.rs-blog-post-body__wrap > p{font-size:17px;line-height:1.8;color:var(--rs-color-text-muted);margin:0 0 18px;}
.rs-blog-post-body__wrap a{color:var(--rs-color-primary);font-weight:600;text-decoration:underline;text-underline-offset:2px;}
/* Unordered lists — each item gets a clear blue dot marker */
.rs-blog-post-body__wrap > ul{list-style:none;margin:0 0 22px;padding:0;}
.rs-blog-post-body__wrap > ul > li{position:relative;padding-left:28px;margin-bottom:12px;line-height:1.7;font-size:17px;color:var(--rs-color-text-muted);}
.rs-blog-post-body__wrap > ul > li::before{content:"";position:absolute;left:4px;top:10px;width:9px;height:9px;border-radius:50%;background:var(--rs-color-primary);}
.rs-blog-post-body__wrap > ul > li strong{color:var(--rs-color-text);}
/* Ordered lists — numbered badge markers */
.rs-blog-post-body__wrap > ol{list-style:none;counter-reset:step;margin:0 0 22px;padding:0;}
.rs-blog-post-body__wrap > ol > li{position:relative;counter-increment:step;padding-left:46px;margin-bottom:16px;min-height:30px;line-height:1.7;font-size:17px;color:var(--rs-color-text-muted);}
.rs-blog-post-body__wrap > ol > li::before{content:counter(step);position:absolute;left:0;top:1px;width:30px;height:30px;border-radius:50%;background:var(--rs-color-primary);color:#fff;font-size:14px;font-weight:800;font-family:var(--rs-font-body);display:flex;align-items:center;justify-content:center;}
.rs-blog-post-body__wrap > ol > li strong{color:var(--rs-color-text);}
/* Blog rich content — callout boxes, figures with captions, and comparison tables */
.rs-blog-callout{background:#f8e9e9;border:1px solid #e6aeae;border-left:4px solid var(--rs-color-primary);border-radius:14px;padding:20px 24px;margin:28px 0;}
.rs-blog-callout--tip{background:#f0fdf4;border-color:#bbf7d0;border-left-color:#16a34a;}
.rs-blog-callout__title{font-weight:800;font-size:12px;letter-spacing:.05em;text-transform:uppercase;color:var(--rs-color-primary);margin-bottom:12px;}
.rs-blog-callout--tip .rs-blog-callout__title{color:#16a34a;}
.rs-blog-callout ul{list-style:none;margin:0;padding:0;}
.rs-blog-callout li{position:relative;padding-left:30px;margin-bottom:11px;line-height:1.6;}
.rs-blog-callout li::before{content:"";position:absolute;left:2px;top:2px;width:18px;height:18px;background:no-repeat center/contain;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");}
.rs-blog-callout li:last-child{margin-bottom:0;}
.rs-blog-callout p{margin:0;line-height:1.75;}
.rs-blog-figure{margin:32px 0;}
.rs-blog-figure img{display:block;width:100%;height:auto;border-radius:16px;border:1px solid var(--rs-color-border);}
.rs-blog-figure figcaption{margin-top:10px;font-size:13px;color:var(--rs-color-text-muted);text-align:center;}
.rs-blog-table{width:100%;border-collapse:collapse;margin:26px 0;font-size:15px;border:1px solid var(--rs-color-border);border-radius:12px;overflow:hidden;}
.rs-blog-table th{background:var(--rs-color-primary);color:#fff;text-align:left;padding:13px 16px;font-size:14px;}
.rs-blog-table td{padding:13px 16px;border-top:1px solid var(--rs-color-border);vertical-align:top;line-height:1.55;}
.rs-blog-table tbody tr:nth-child(even){background:#f8fafc;}
@media(max-width:600px){.rs-blog-table{font-size:13.5px;}.rs-blog-table th,.rs-blog-table td{padding:10px 12px;}}
/* FAQ accordion — centered header used on blog + standard pages (financing, etc.) */
.rs-faq--blog{padding:64px 24px 8px;}
.rs-faq__head{text-align:center;max-width:760px;margin:0 auto;}
.rs-faq__head .rs-section-kicker{justify-content:center;}
.rs-faq__title{font-family:var(--rs-font-heading);font-size:clamp(26px,4vw,36px);font-weight:800;color:var(--rs-color-text);letter-spacing:-.02em;margin:4px 0 6px;}
.rs-faq__intro{font-size:14px;color:var(--rs-color-text-muted);}
.rs-faq__head + .rs-faq__grid{margin-top:30px;}
.rs-faq__item.is-open .rs-faq__a{max-height:700px;}
/* FAQ category sub-heading (used on the FAQ page to group questions) */
.rs-faq__cat{max-width:760px;margin:34px auto 6px;display:flex;align-items:center;gap:10px;font-family:var(--rs-font-body);font-size:12px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:var(--rs-color-primary);}
.rs-faq__cat::before{content:"";width:20px;height:2px;background:var(--rs-color-primary);border-radius:2px;}
.rs-faq__head + .rs-faq__cat{margin-top:18px;}
/* Center the how-it-works header on standard pages (financing, warranty) */
.rs-how-it-works > .rs-section-kicker{justify-content:center;margin-bottom:6px;}
.rs-how-it-works > h2{text-align:center;}
/* Blog CTA — kicker, gradient, and trust row with icons */
.rs-cta-block--blog{background:linear-gradient(135deg,#bb2525,#921d1d);}
.rs-cta-block__kicker{font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.72);margin-bottom:12px;}
.rs-cta-block__trust-row{display:flex;justify-content:center;gap:24px;flex-wrap:wrap;margin-top:26px;}
.rs-cta-trust{display:inline-flex;align-items:center;gap:7px;font-size:13px;font-weight:600;color:rgba(255,255,255,.9);}
.rs-cta-trust svg{width:16px;height:16px;flex-shrink:0;}
/* Blog author block — avatar badge */
.rs-author-block__avatar{width:56px;height:56px;border-radius:50%;background:linear-gradient(135deg,#bb2525,#921d1d);display:flex;align-items:center;justify-content:center;margin:0 auto 14px;box-shadow:0 8px 20px rgba(187,37,37,.3);}
.rs-author-block__avatar svg{width:28px;height:28px;}
.rs-section-kicker{
  font-family:var(--rs-font-body);font-size:11px;font-weight:700;
  letter-spacing:.12em;text-transform:uppercase;
  color:var(--rs-color-primary);margin-bottom:10px;
  display:flex;align-items:center;gap:8px;
}
.rs-section-kicker::before{content:'';width:18px;height:2px;background:var(--rs-color-primary);}
.rs-section-title{
  font-family:var(--rs-font-heading);
  font-size:clamp(28px,4vw,38px);font-weight:800;
  color:var(--rs-color-text);letter-spacing:-.025em;line-height:1.15;
  margin-bottom:8px;
}
.rs-section-title--light{color:#ffffff;}
/* How It Works title: dark on light-bg themes, white only on B (dark bg) */
.rs-how-it-works .rs-section-title{color:var(--rs-color-text);}
/* HIW kicker also adapts */
.rs-how-it-works .rs-section-kicker{color:var(--rs-color-primary);}
.rs-section-sub{font-family:var(--rs-font-body);font-size:16px;color:var(--rs-color-text-muted);margin-bottom:36px;line-height:1.6;}

/* ════════════════════════════════════════════════════
   BLOCK 1 — HERO INCLUDES
   hero-variant panels inside .rs-hero-slot
════════════════════════════════════════════════════ */
.rs-hero-slot{position:relative;}

.rs-hero__grid{
  max-width:1320px;margin:0 auto;
  padding:88px 40px 72px;
  display:grid;grid-template-columns:3fr 2fr;gap:72px;align-items:center;
  width:100%;box-sizing:border-box;
}
@media(max-width:900px){
  .rs-hero__grid{grid-template-columns:1fr;gap:36px;padding:64px 24px 56px;}
}

/* ── HERO VARIANT 1: Location-First (clean split) ── */
.rs-hero--v1{
  background:var(--rs-color-bg);
  padding:0;
}
.rs-hero--v1 .rs-hero__grid{
  max-width:1320px;margin:0 auto;
  padding:88px 40px 72px;
  display:grid;grid-template-columns:3fr 2fr;gap:72px;align-items:center;
  width:100%;
}
/* ── Hero left column text — bumped sizes ── */
.rs-hero__badge{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--rs-color-primary-light);color:var(--rs-color-primary);
  border:1px solid var(--rs-color-border-strong);
  border-radius:100px;padding:6px 16px;font-size:12px;font-weight:700;
  letter-spacing:.05em;text-transform:uppercase;margin-bottom:22px;
}
.rs-hero__badge::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--rs-color-primary);}
.rs-hero__h1{
  font-family:var(--rs-font-heading);font-weight:800;
  font-size:clamp(42px,5.5vw,62px);line-height:1.07;
  color:var(--rs-color-text);letter-spacing:-.035em;margin-bottom:20px;
}
.rs-hero__h1 em{font-style:normal;color:var(--rs-color-primary);}
.rs-hero__sub{font-family:var(--rs-font-body);font-size:19px;color:var(--rs-color-text-muted);line-height:1.7;margin-bottom:30px;}
.rs-hero__actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:24px;}
.rs-btn--primary{
  background:var(--rs-color-primary);color:#fff;border:none;
  padding:14px 26px;font-size:15px;font-weight:700;
  font-family:var(--rs-font-body);border-radius:var(--rs-btn-radius);
  white-space:nowrap;transition:background .18s;
}
.rs-btn--primary:hover{background:var(--rs-color-primary-dark);}
.rs-btn--secondary{
  background:none;color:var(--rs-color-text);
  border:1.5px solid var(--rs-color-border);
  padding:14px 22px;font-size:15px;font-weight:600;
  font-family:var(--rs-font-body);border-radius:var(--rs-btn-radius);
  white-space:nowrap;
}
.rs-hero__trust{display:flex;align-items:center;gap:10px;font-size:14px;color:var(--rs-color-text-muted);}
.rs-hero__stars{color:#f59e0b;font-size:16px;}

/* pricing panel (right side v1) */
.rs-hero__panel{
  background:linear-gradient(135deg,var(--rs-color-primary-light),var(--rs-color-bg-alt));
  border-radius:var(--rs-card-radius);padding:28px;
  border:1px solid var(--rs-color-border-strong);
  display:flex;flex-direction:column;gap:10px;
}
.rs-hero__price-row{
  background:var(--rs-color-surface);border-radius:calc(var(--rs-card-radius) - 4px);
  padding:14px 18px;display:flex;align-items:center;gap:14px;
  box-shadow:var(--rs-shadow-card);
}
.rs-hero__price-icon{
  width:40px;height:40px;border-radius:9px;
  background:var(--rs-color-primary-light);
  display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0;
}
.rs-hero__price-name{font-size:13px;font-weight:700;color:var(--rs-color-text);}
.rs-hero__price-sub{font-size:11px;color:var(--rs-color-text-muted);margin-top:2px;}
.rs-hero__price-amt{margin-left:auto;font-size:15px;font-weight:800;color:var(--rs-color-primary);}
.rs-hero__stat-pair{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
.rs-hero__stat{
  background:var(--rs-color-surface);border-radius:10px;padding:14px 16px;
  border:1px solid var(--rs-color-border);
}
.rs-hero__stat-n{font-size:22px;font-weight:800;color:var(--rs-color-text);}
.rs-hero__stat-l{font-size:11px;color:var(--rs-color-text-muted);margin-top:2px;}

/* ── HERO VARIANT 2: Pricing Panel (same as v1 but explicit) ──
   Already covered by v1 default — pricing panel is the default right side */

/* ── HERO VARIANT 3: Cracked Phone Right ── */
.rs-hero--v3{
  background:var(--rs-color-bg);
  padding:0;
}
.rs-hero--v3 .rs-hero__v3-inner{
  max-width:1320px;margin:0 auto;
  padding:72px 40px 72px;
  display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;
  width:100%;box-sizing:border-box;
}

/* ── iPhone 16 Pro chassis ── */
.rs-hero__phone-wrap{
  display:flex;align-items:center;justify-content:center;
  position:relative;
  height:600px;
  padding:0 44px;
}
.rs-hero__phone{
  /*
    iPhone 16 Pro: 6.3" display — slightly taller/wider than 15 Pro
    Key 16 Pro design details:
    • Squarer corners — "continuous flow" glass, tighter radius than 15 Pro
    • Micro-brushed titanium frame — cooler, more polished neutral tone
    • Dynamic Island: same pill, slightly narrower
    • NEW: Camera Control button on right edge below power button
    • Rear: same triangle camera cluster but raised glass surround
  */
  width:232px;height:500px;
  border-radius:44px; /* squarer than 15 Pro's 48px */
  /* Micro-brushed titanium — cooler neutral, less warm than 15 Pro */
  background:linear-gradient(168deg,#424244 0%,#2e2e30 30%,#1e1e20 70%,#141416 100%);
  /* Polished titanium frame — brighter outer chamfer than 15 Pro */
  box-shadow:
    0 0 0 1px rgba(255,255,255,.22),
    0 0 0 2px #111113,
    0 0 0 3.5px rgba(220,220,230,.1),
    0 32px 64px rgba(0,0,0,.58),
    0 8px 20px rgba(0,0,0,.38);
  position:relative;overflow:visible;
  display:flex;flex-direction:column;align-items:center;justify-content:flex-start;
  flex-shrink:0;
  /* 14° tilt — slightly more than 15 Pro for more depth */
  transform:rotate(-14deg) perspective(900px) rotateY(5deg);
  transform-origin:center center;
}

/* Screen */
.rs-hero__phone-screen{
  position:absolute;inset:4px;border-radius:41px;overflow:hidden;
  background:linear-gradient(175deg,#09090f 0%,#05050a 55%,#020205 100%);
  display:flex;flex-direction:column;align-items:center;justify-content:flex-start;
}

/* Dynamic Island — 16 Pro: slightly narrower pill, same position */
.rs-hero__phone::before{
  content:'';
  position:absolute;top:9px;left:50%;transform:translateX(-50%);
  width:92px;height:28px;
  background:#000;border-radius:18px;z-index:20;
  box-shadow:inset 0 1px 2px rgba(255,255,255,.05),0 0 0 1px rgba(255,255,255,.03);
}

/*
  Camera Control button — right edge, below power button
  This is the hardware element unique to iPhone 16 series.
  Rendered as a longer flat button with subtle texture.
*/
.rs-hero__phone::after{
  content:'';
  position:absolute;right:-3px;top:208px;
  width:3px;height:56px;
  background:linear-gradient(to left,#2a2a2c,#3c3c3e);
  border-radius:0 2px 2px 0;
  box-shadow:1px 0 3px rgba(0,0,0,.5);
  z-index:22;
}

/* Backlight bleed through crack */
.rs-hero__phone-screen::before{
  content:'';position:absolute;
  bottom:-10px;left:50%;transform:translateX(-50%);
  width:170px;height:110px;
  background:radial-gradient(ellipse,rgba(var(--hero-glow-rgb),.24) 0%,transparent 70%);
  z-index:1;
}

/* Crack SVG */
.rs-hero__phone-crack{
  position:absolute;inset:0;z-index:5;pointer-events:none;
}

/* Lock screen UI */
.rs-hero__phone-ui{
  position:relative;z-index:3;
  display:flex;flex-direction:column;align-items:center;gap:4px;
  padding:50px 16px 16px;
}
.rs-hero__phone-ui-time{
  font-size:62px;font-weight:200;color:rgba(255,255,255,.92);
  letter-spacing:-.03em;line-height:1;font-family:'DM Sans',sans-serif;
  text-shadow:0 0 40px rgba(255,255,255,.1);
}
.rs-hero__phone-ui-date{
  font-size:15px;color:rgba(255,255,255,.42);font-family:'DM Sans',sans-serif;
  letter-spacing:.01em;margin-bottom:18px;
}
.rs-hero__phone-ui-alert{
  background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.15);
  border-radius:16px;padding:12px 20px;text-align:center;
  backdrop-filter:blur(12px);
}
.rs-hero__phone-ui-alert-icon{font-size:24px;margin-bottom:5px;}
.rs-hero__phone-ui-alert-text{font-size:13px;color:rgba(255,255,255,.52);font-family:'DM Sans',sans-serif;}

/* Volume buttons — left edge, cooler titanium tone */
.rs-hero__phone-btn-vol-up{
  position:absolute;left:-3px;top:108px;
  width:3px;height:30px;
  background:linear-gradient(to right,#222224,#38383a);
  border-radius:2px 0 0 2px;
  box-shadow:-1px 0 2px rgba(0,0,0,.45);
}
.rs-hero__phone-btn-vol-dn{
  position:absolute;left:-3px;top:148px;
  width:3px;height:56px;
  background:linear-gradient(to right,#222224,#38383a);
  border-radius:2px 0 0 2px;
  box-shadow:-1px 0 2px rgba(0,0,0,.45);
}
/* Power button — right edge */
.rs-hero__phone-btn-power{
  position:absolute;right:-3px;top:124px;
  width:3px;height:66px;
  background:linear-gradient(to left,#222224,#38383a);
  border-radius:0 2px 2px 0;
  box-shadow:1px 0 2px rgba(0,0,0,.45);
}

/* Reflection sheen */
.rs-hero__phone-sheen{
  position:absolute;top:0;left:0;right:0;height:48%;
  background:linear-gradient(172deg,rgba(255,255,255,.06) 0%,rgba(255,255,255,0) 55%);
  border-radius:44px 44px 0 0;z-index:10;pointer-events:none;
}

/* ── Floating callout badges — OVERLAP phone by 24–30px ──
   z-index above the phone. Left blurb bleeds LEFT off phone,
   right blurbs bleed RIGHT off phone. Feels emergent, not adjacent.
── */
.rs-hero__floats{
  position:absolute;inset:0;
  pointer-events:none;
  /* extend bounds so absolutely-positioned children aren't clipped */
  overflow:visible;
}
.rs-hero__float{
  position:absolute;
  background:var(--rs-color-surface);
  border-radius:14px;
  padding:13px 16px;
  box-shadow:
    0 2px 6px rgba(0,0,0,.07),
    0 10px 28px rgba(0,0,0,.13),
    0 0 0 1px rgba(0,0,0,.05);
  display:flex;align-items:center;gap:12px;
  white-space:nowrap;
  z-index:30;
  animation:floatIn .5s ease both;
}
@keyframes floatIn{from{opacity:0;transform:translateY(10px);}to{opacity:1;transform:translateY(0);}}

/* Upper-right — "Ready in 45 min": right edge overlaps phone right by ~28px */
.rs-hero__float--1{
  top:10%;
  right:8px;   /* phone right edge is ~40px from wrap edge; bleed 28px in */
  animation-delay:.1s;
}
/* Lower-right — "From $89" */
.rs-hero__float--2{
  bottom:14%;
  right:4px;
  animation-delay:.25s;
}
/* Left center — "90-day warranty": left edge overlaps phone left by ~26px */
.rs-hero__float--3{
  top:44%;
  left:6px;   /* phone left edge is ~40px from wrap edge; bleed 26px in */
  animation-delay:.18s;
}

/* Icon dot box */
.rs-hero__float-dot{
  width:36px;height:36px;border-radius:9px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;font-size:20px;
}
.rs-hero__float--1 .rs-hero__float-dot{background:#fef3c7;}
.rs-hero__float--2 .rs-hero__float-dot{background:var(--rs-color-primary-light);}
.rs-hero__float--3 .rs-hero__float-dot{background:#dcfce7;}

/* Text sizes: 14px label / 12px sublabel min per spec */
.rs-hero__float-icon{font-size:20px;}
.rs-hero__float-title{font-size:14px;font-weight:700;color:var(--rs-color-text);}
.rs-hero__float-sub{font-size:12px;color:var(--rs-color-text-muted);margin-top:3px;}

/* checklist items */
.rs-hero__checks{display:flex;flex-direction:column;gap:9px;margin-bottom:28px;}
.rs-hero__check{
  display:flex;align-items:center;gap:9px;
  font-family:var(--rs-font-body);font-size:15px;color:var(--rs-color-text-muted);font-weight:500;
}
.rs-hero__check-mark{
  width:20px;height:20px;border-radius:50%;flex-shrink:0;
  background:var(--rs-color-primary-light);
  color:var(--rs-color-primary);
  display:flex;align-items:center;justify-content:center;
  font-size:11px;font-weight:800;
}

/* ══════════════════════════════════════════════════════════
   HERO VARIANT 4 — "Problem First" — full redesign
   Two-column: sentence + CTA left | social proof right
   Rotating word is a noun phrase completing the sentence:
   "We fix your [WORD] today." — grammatically clean for all states
══════════════════════════════════════════════════════════ */
.rs-hero--v4{
  background:var(--rs-color-dark);
  padding:0;
  position:relative;overflow:hidden;
  min-height:600px;
}
.rs-hero--v4 .rs-hero__v4-inner{
  max-width:1320px;margin:0 auto;
  padding:96px 40px;
  display:grid;
  grid-template-columns:3fr 2fr;
  gap:72px;
  align-items:center;
  width:100%;box-sizing:border-box;
  position:relative;z-index:2;
}
/* Ambient glow — left-weighted, subtle */
.rs-hero--v4::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(ellipse 50% 70% at 28% 55%,rgba(var(--hero-glow-rgb),.09) 0%,transparent 65%),
    radial-gradient(ellipse 25% 35% at 85% 25%,rgba(var(--hero-glow-rgb),.04) 0%,transparent 55%);
  pointer-events:none;
}

/* ── LEFT COLUMN ── */
.rs-hero--v4 .rs-h4-left{
  position:relative;z-index:2;
}

/* Eyebrow */
.rs-h4-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--rs-font-body);
  font-size:11px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;
  color:var(--rs-color-primary);
  margin-bottom:32px;
}
.rs-h4-eyebrow::before{
  content:'';width:24px;height:2px;background:var(--rs-color-primary);flex-shrink:0;
}

/* Sentence structure:
   Line 1: "We fix your"   — muted, body weight, sets up the payoff
   Line 2: [ROTATING WORD] — large, bold, the focal point
   Line 3: "today."        — muted, body weight, closes the sentence
   All three lines read as one continuous thought.
*/
.rs-h4-sentence{
  display:flex;flex-direction:column;
  /* No gaps — the rotating word height creates spacing naturally */
}
.rs-h4-sentence-static{
  font-family:var(--rs-font-heading);
  font-size:clamp(28px,3.5vw,38px);
  font-weight:400;
  color:rgba(255,255,255,.45);
  line-height:1.15;
  letter-spacing:-.02em;
}

/* Rotating word container — fixed height prevents layout shift */
.rs-h4-rotating-wrap{
  height:clamp(72px,9vw,100px);
  position:relative;overflow:hidden;
  margin:2px 0;  /* breathing room between static lines */
}
.rs-h4-rotating-word{
  position:absolute;top:0;left:0;
  font-family:var(--rs-font-heading);
  font-size:clamp(62px,8vw,86px);
  font-weight:800;
  line-height:1.08;
  letter-spacing:-.04em;
  /* Gradient: white → theme accent — always readable */
  color:#fff;
  /* Text fill stays solid white — no clip-path gradient that breaks on some browsers */
  opacity:0;
  transform:translateY(12px);
  transition:opacity .5s cubic-bezier(.16,1,.3,1), transform .5s cubic-bezier(.16,1,.3,1);
}
.rs-h4-rotating-word.active{
  opacity:1;
  transform:translateY(0);
}
/* Accent color applied as a subtle underline instead of text gradient — more legible */
.rs-h4-rotating-word::after{
  content:'';
  position:absolute;
  bottom:4px;left:0;
  height:3px;
  width:100%;
  background:var(--rs-color-primary);
  opacity:.6;
  border-radius:2px;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .5s cubic-bezier(.16,1,.3,1) .15s;
}
.rs-h4-rotating-word.active::after{
  transform:scaleX(1);
}

/* CTA block */
.rs-h4-cta{
  margin-top:40px;
  display:flex;align-items:center;gap:16px;flex-wrap:wrap;
}
.rs-h4-link{
  font-family:var(--rs-font-body);font-size:15px;font-weight:500;
  color:rgba(255,255,255,.5);background:none;border:none;cursor:pointer;
  display:flex;align-items:center;gap:6px;
  transition:color .15s;
}
.rs-h4-link:hover{color:rgba(255,255,255,.85);}
.rs-h4-link::after{content:'→';font-size:14px;}

/* Trust line below CTA */
.rs-h4-trust{
  margin-top:24px;display:flex;align-items:center;gap:8px;
  font-family:var(--rs-font-body);font-size:13px;color:rgba(255,255,255,.35);
}
.rs-h4-trust-stars{color:#f59e0b;font-size:13px;}

/* ── RIGHT COLUMN — social proof panel ── */
.rs-h4-right{
  position:relative;z-index:2;
  display:flex;flex-direction:column;gap:16px;
}

/* Large stat card — single number, single label, anchors credibility */
.rs-h4-stat-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:28px 32px;
  display:flex;align-items:baseline;gap:12px;
}
.rs-h4-stat-number{
  font-family:var(--rs-font-heading);
  font-size:clamp(48px,6vw,64px);
  font-weight:800;
  color:#fff;
  letter-spacing:-.04em;
  line-height:1;
  white-space:nowrap;
}
.rs-h4-stat-number .rs-h4-stat-accent{
  color:var(--rs-color-primary);
}
.rs-h4-stat-desc{
  font-family:var(--rs-font-body);
  font-size:14px;
  color:rgba(255,255,255,.45);
  line-height:1.55;
}

/* Stat row — three compact stats in a horizontal strip */
.rs-h4-stat-row{
  display:grid;grid-template-columns:repeat(3,1fr);gap:0;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.07);
  border-radius:14px;overflow:hidden;
}
.rs-h4-mini-stat{
  padding:18px 20px;border-right:1px solid rgba(255,255,255,.07);
  text-align:center;
}
.rs-h4-mini-stat:last-child{border-right:none;}
.rs-h4-mini-stat-n{
  font-family:var(--rs-font-heading);
  font-size:22px;font-weight:800;color:#fff;letter-spacing:-.03em;line-height:1;
}
.rs-h4-mini-stat-l{
  font-family:var(--rs-font-body);
  font-size:11px;color:rgba(255,255,255,.35);margin-top:5px;letter-spacing:.02em;
}

/* Review card — one real quote, name, device */
.rs-h4-review{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:24px 28px;
}
.rs-h4-review-stars{color:#f59e0b;font-size:13px;margin-bottom:10px;}
.rs-h4-review-text{
  font-family:var(--rs-font-body);
  font-size:14px;color:rgba(255,255,255,.6);
  line-height:1.65;
  font-style:italic;
  margin-bottom:14px;
}
.rs-h4-review-author{
  font-family:var(--rs-font-body);
  font-size:11px;font-weight:700;
  color:rgba(255,255,255,.28);
  letter-spacing:.07em;text-transform:uppercase;
}

/* ── HERO VARIANT 5: Person Image Hero ── */
.rs-hero--v5{
  background:var(--rs-color-bg);
  padding:0;
}
.rs-hero--v5 .rs-hero__top{
  max-width:1320px;margin:0 auto;
  padding:40px 40px 64px;
  display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:end;
  width:100%;box-sizing:border-box;
}
.rs-hero--v5 .rs-hero__device-cta{
  margin-top:16px;font-size:13px;color:var(--rs-color-text-muted);
  display:flex;align-items:center;gap:8px;
}
.rs-hero--v5 .rs-hero__device-cta::before{content:'↓';}

/* ── Person image column — flush to bottom of row ── */
.rs-hero--v5 .rs-hero__person{
  position:relative;
  display:flex;align-items:flex-end;justify-content:center;
  height:480px;
  overflow:visible;
  /* negative margin pulls figure down flush to bottom of the 64px padded row */
  margin-bottom:-64px;
}

.rs-hero__person-figure{
  position:relative;
  width:320px;height:540px;
  flex-shrink:0;
  -webkit-mask-image:linear-gradient(to bottom,black 60%,transparent 100%);
  mask-image:linear-gradient(to bottom,black 60%,transparent 100%);
}
.rs-hero__person-figure svg{width:100%;height:100%;}


/* ════════════════════════════════════════════════════
   BLOCK 2 — SOCIAL PROOF BAR  (rs-social-proof-bar)
════════════════════════════════════════════════════ */
.rs-social-proof-bar{
  background:var(--rs-color-dark);padding:20px 48px;
  display:flex;align-items:center;justify-content:space-around;gap:24px;flex-wrap:wrap;
}
.rs-social-proof-bar__item{
  display:flex;align-items:center;gap:10px;
  font-family:var(--rs-font-body);font-size:13px;font-weight:600;
  color:rgba(255,255,255,.7);white-space:nowrap;
}
.rs-social-proof-bar__icon{font-size:18px;}
.rs-social-proof-bar__strong{color:#fff;}
/* ── Logo bar — greyscale default, full color on hover ── */
/* ══════════════════════════════════════════════════════
   LOGO BAR — no border, no label, larger tiles
   Default: light grey icons that stand out on white/surface bg
   Hover: full brand color
══════════════════════════════════════════════════════ */
.rs-social-proof-bar--logos{
  background:var(--rs-color-surface);
  /* no border */
  padding:32px 48px;
  display:flex;align-items:center;justify-content:center;gap:8px;
  flex-wrap:nowrap;
}
/* label removed — no .rs-spb-label display needed */
.rs-spb-label{ display:none; }

/* Individual logo tile — bigger, no border */
.rs-spb-logo{
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:9px;padding:18px 24px;border-radius:12px;
  border:none;
  background:transparent;cursor:pointer;
  transition:all .25s ease;
  min-width:90px;
}

/* Logo mark wrapper — fixed 32px height, larger than before */
.rs-spb-logo__mark{
  display:flex;align-items:center;justify-content:center;
  height:32px;
  /*
    Light grey default: brightness(0) makes all paths black,
    then invert(0.55) lifts to a medium-light grey (#8c8c8c).
    On white/light surface backgrounds this reads clearly — not invisible,
    not full black. On hover we remove all filters → brand color appears.
  */
  filter:brightness(0) invert(0.62);
  transition:filter .25s ease;
}

/* Brand name label */
.rs-spb-logo__name{
  font-family:var(--rs-font-body);
  font-size:11px;font-weight:600;letter-spacing:.03em;
  color:var(--rs-color-text-muted);
  opacity:.5;
  transition:opacity .25s ease, color .25s ease;
  white-space:nowrap;
}

/* HOVER — full brand color */
.rs-spb-logo:hover{
  background:var(--rs-color-bg-alt);
  box-shadow:0 2px 14px rgba(0,0,0,.07);
  transform:translateY(-2px);
}
.rs-spb-logo:hover .rs-spb-logo__mark{
  filter:none;
}
.rs-spb-logo:hover .rs-spb-logo__name{
  opacity:.9;color:var(--rs-color-text);
}


/* ════════════════════════════════════════════════════
   BLOCK 3 — PRICE ANCHOR (optional)
════════════════════════════════════════════════════ */
.rs-price-anchor{
  background:var(--rs-color-primary);padding:20px 48px;
  display:flex;align-items:center;justify-content:center;gap:32px;flex-wrap:wrap;
}
.rs-price-anchor__item{
  display:flex;align-items:center;gap:12px;
  font-family:var(--rs-font-body);color:rgba(255,255,255,.9);font-size:14px;
}
.rs-price-anchor__from{font-size:11px;font-weight:500;opacity:.7;text-transform:uppercase;letter-spacing:.06em;}
.rs-price-anchor__price{font-size:22px;font-weight:800;color:#fff;}
.rs-price-anchor__service{font-size:13px;opacity:.8;}
.rs-price-anchor__divider{width:1px;height:32px;background:rgba(255,255,255,.2);}
.rs-price-anchor__cta{
  background:rgba(255,255,255,.15);border:1.5px solid rgba(255,255,255,.3);
  color:#fff;border-radius:var(--rs-btn-radius);padding:10px 22px;
  font-size:13px;font-weight:700;font-family:var(--rs-font-body);
  white-space:nowrap;
}

/* ════════════════════════════════════════════════════
   BLOCK 4 — SERVICES GRID / DEVICE SELECTOR (rs-services-grid)
════════════════════════════════════════════════════ */
.rs-services-grid{padding:72px 48px;background:var(--rs-color-bg-alt);}

.rs-services-grid__devices{
  display:grid;grid-template-columns:repeat(6,1fr);gap:12px;margin-bottom:48px;
}
.rs-services-grid__device{
  background:var(--rs-color-surface);border:1.5px solid var(--rs-color-border);
  border-radius:var(--rs-card-radius);
  /* taller card — render is the dominant element */
  padding:28px 12px 20px;
  text-align:center;cursor:pointer;transition:all .18s;
  display:flex;flex-direction:column;align-items:center;
}
.rs-services-grid__device:hover{
  border-color:var(--rs-color-primary);
  box-shadow:var(--rs-shadow-hover);transform:translateY(-3px);
}
/* Device render container — min 80px height, centers the SVG illustration */
.rs-services-grid__device-render{
  width:100%;
  min-height:88px;
  display:flex;align-items:flex-end;justify-content:center;
  margin-bottom:14px;
}
.rs-services-grid__device-render svg{
  /* slight drop shadow under each render for lift */
  filter:drop-shadow(0 6px 12px rgba(0,0,0,.18));
  transition:transform .18s;
}
.rs-services-grid__device:hover .rs-services-grid__device-render svg{
  transform:translateY(-4px) scale(1.04);
}
.rs-services-grid__device-name{
  font-size:13px;font-weight:700;color:var(--rs-color-text);
  line-height:1.3;
}
.rs-services-grid__see-more{margin-top:var(--rs-space-lg);text-align:center;}
.rs-services-grid__see-more-link{display:inline-block;font-size:var(--rs-font-size-sm);font-weight:600;color:var(--rs-color-primary);text-decoration:none;letter-spacing:.01em;border-bottom:1px solid currentColor;padding-bottom:2px;transition:var(--rs-transition);}
.rs-services-grid__see-more-link:hover{opacity:.75;}

/* service cards below device selector */
.rs-services-grid__cards{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;}
.rs-services-grid__card{
  background:var(--rs-color-surface);border-radius:16px;
  padding:0;border:1px solid var(--rs-color-border);
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;overflow:hidden;
  display:block;text-decoration:none;
}
.rs-services-grid__card-img{
  width:100%;aspect-ratio:16/9;background:var(--rs-color-bg-alt);
  overflow:hidden;display:flex;align-items:center;justify-content:center;
  min-height:0;
}
.rs-services-grid__card-img:not(.rs-services-grid__card-img--icon) img{
  width:100%;height:100%;object-fit:cover;display:block;
}
/* Icon tile: soft gradient, no harsh divider line, roomy so the icon isn't cramped */
.rs-services-grid__card-img--icon{display:flex;align-items:center;justify-content:center;height:132px;background:linear-gradient(160deg,var(--rs-color-bg-alt),var(--rs-color-surface));border-bottom:none;border-radius:0;}
.rs-services-grid__card-icon-img{width:60px;height:60px;object-fit:contain;display:block;opacity:1;transition:transform .18s ease;}
.rs-services-grid__card:hover .rs-services-grid__card-icon-img{transform:scale(1.08);}
.rs-services-grid__card-body{padding:18px 20px 22px;border-top:1px solid var(--rs-color-border);}
.rs-services-grid__card:hover{transform:translateY(-4px);border-color:var(--rs-color-primary);box-shadow:0 16px 32px rgba(15,23,42,.10);}
.rs-services-grid__card-icon{display:none;}
.rs-services-grid__section-h2{margin-top:64px;}
.rs-services-grid__card-name{font-size:16px;font-weight:800;color:var(--rs-color-text);margin-bottom:6px;}
.rs-services-grid__card-desc{font-size:13px;color:var(--rs-color-text-muted);line-height:1.6;}
.rs-services-grid__card-link{display:inline-flex;align-items:center;gap:4px;color:var(--rs-color-primary);font-size:13px;font-weight:600;margin-top:12px;}
/* Services-grid section headings — give them weight + breathing room from the cards */
.rs-services-grid > .rs-container > h2{font-family:var(--rs-font-heading);font-size:clamp(24px,3.4vw,32px);font-weight:800;letter-spacing:-.02em;color:var(--rs-color-text);margin-bottom:6px;}
.rs-services-grid > .rs-container > p{font-size:16px;color:var(--rs-color-text-muted);line-height:1.6;margin:0 0 30px;max-width:640px;}

/* ════════════════════════════════════════════════════
   BLOCK 5 — HOW IT WORKS (rs-how-it-works)
════════════════════════════════════════════════════ */
.rs-how-it-works{padding:72px 48px;background:var(--rs-color-bg);}
.rs-how-it-works__steps{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;margin-top:40px;}
.rs-how-it-works__step{display:flex;flex-direction:column;gap:12px;position:relative;}
.rs-how-it-works__step::after{
  content:'→';position:absolute;top:20px;right:-20px;
  font-size:20px;color:var(--rs-color-border);font-weight:300;
}
.rs-how-it-works__step:last-child::after{display:none;}
.rs-how-it-works__num{
  width:48px;height:48px;border-radius:var(--rs-card-radius);
  background:var(--rs-color-primary);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--rs-font-heading);font-size:18px;font-weight:800;flex-shrink:0;
}
.rs-how-it-works__step-title{font-size:17px;font-weight:700;color:var(--rs-color-text);}
.rs-how-it-works__step-desc{font-size:14px;color:var(--rs-color-text-muted);line-height:1.65;}

/* ════════════════════════════════════════════════════
   BLOCK 6 — REVIEWS (rs-reviews)
════════════════════════════════════════════════════ */
.rs-reviews{padding:72px 48px;background:var(--rs-color-dark);}
.rs-reviews__header{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:36px;flex-wrap:wrap;gap:16px;}
.rs-reviews__aggregate{display:flex;align-items:center;gap:12px;}
.rs-reviews__big-score{font-family:var(--rs-font-heading);font-size:56px;font-weight:800;color:#fff;line-height:1;}
.rs-reviews__stars-col{display:flex;flex-direction:column;gap:4px;}
.rs-reviews__stars-line{color:#f59e0b;font-size:18px;}
.rs-reviews__review-count{font-size:13px;color:rgba(255,255,255,.4);}
.rs-reviews__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.rs-reviews__card{
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.07);
  border-radius:var(--rs-card-radius);padding:22px;
}
.rs-reviews__card-stars{color:#f59e0b;font-size:13px;margin-bottom:10px;}
.rs-reviews__card-text{font-size:14px;color:rgba(255,255,255,.6);line-height:1.65;margin-bottom:14px;}
.rs-reviews__card-author{font-size:11px;color:rgba(255,255,255,.28);font-weight:700;letter-spacing:.05em;text-transform:uppercase;}
.rs-reviews__card-device{font-size:10px;color:rgba(255,255,255,.2);margin-top:3px;}

/* ════════════════════════════════════════════════════
   BLOCK 6.5 — BUY / SELL (rs-buy-sell)
   Dark bg, two-card layout: Buy a Device | Sell Your Device
   Sits between Reviews and Our Commitment
════════════════════════════════════════════════════ */
.rs-buy-sell{
  padding:72px 48px;
  background:var(--rs-color-bg-alt);
  border-top:1px solid var(--rs-color-border);
  border-bottom:1px solid var(--rs-color-border);
}
.rs-buy-sell__inner{
  max-width:1320px;margin:0 auto;
  display:grid;grid-template-columns:1fr 1fr;gap:24px;
}

/* Each card — Buy or Sell */
.rs-buy-sell__card{
  background:var(--rs-color-surface);
  border:1.5px solid var(--rs-color-border);
  border-radius:var(--rs-card-radius);
  padding:40px 40px 36px;
  display:grid;grid-template-columns:1fr 1fr;gap:32px;align-items:center;
  transition:box-shadow .2s, border-color .2s;
}
.rs-buy-sell__card:hover{
  border-color:var(--rs-color-primary);
  box-shadow:var(--rs-shadow-hover);
}

/* Card type label */
.rs-buy-sell__type{
  font-family:var(--rs-font-body);
  font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  color:var(--rs-color-primary);margin-bottom:10px;
  display:flex;align-items:center;gap:8px;
}
.rs-buy-sell__type::before{
  content:'';width:16px;height:2px;background:var(--rs-color-primary);flex-shrink:0;
}

/* Card headline */
.rs-buy-sell__h{
  font-family:var(--rs-font-heading);
  font-size:clamp(22px,2.8vw,28px);font-weight:800;
  color:var(--rs-color-text);letter-spacing:-.025em;line-height:1.15;
  margin-bottom:10px;
}

/* Card body copy */
.rs-buy-sell__p{
  font-family:var(--rs-font-body);
  font-size:14px;color:var(--rs-color-text-muted);line-height:1.65;
  margin-bottom:18px;
}

/* Bullet points */
.rs-buy-sell__bullets{
  display:flex;flex-direction:column;gap:8px;margin-bottom:28px;
}
.rs-buy-sell__bullet{
  font-family:var(--rs-font-body);
  font-size:14px;color:var(--rs-color-text-muted);font-weight:500;
  display:flex;align-items:center;gap:9px;
}
.rs-buy-sell__bullet::before{
  content:'';width:6px;height:6px;border-radius:50%;
  background:var(--rs-color-primary);flex-shrink:0;
}

/* CTA link */
.rs-buy-sell__cta{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--rs-color-primary);color:#fff;border:none;
  padding:12px 22px;border-radius:var(--rs-btn-radius);
  font-family:var(--rs-font-body);font-size:14px;font-weight:700;
  cursor:pointer;transition:background .18s;
}
.rs-buy-sell__cta:hover{background:var(--rs-color-primary-dark);}

/* Device illustration column */
.rs-buy-sell__visual{
  display:flex;align-items:center;justify-content:center;
  position:relative;
}
.rs-buy-sell__visual svg{
  filter:drop-shadow(0 8px 24px rgba(0,0,0,.14));
}

/* ════════════════════════════════════════════════════
   BLOCK 7 — TRUST / GUARANTEE (rs-guarantee-block)
════════════════════════════════════════════════════ */
.rs-guarantee-block{padding:72px 48px;background:var(--rs-color-bg);}
.rs-guarantee-block__inner{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;}
.rs-guarantee-block__copy-label{font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--rs-color-primary);margin-bottom:12px;}
.rs-guarantee-block__copy-h{
  font-family:var(--rs-font-heading);font-size:clamp(28px,4vw,38px);
  font-weight:800;color:var(--rs-color-text);letter-spacing:-.025em;line-height:1.15;margin-bottom:14px;
}
.rs-guarantee-block__copy-p{font-size:15px;color:var(--rs-color-text-muted);line-height:1.75;}
.rs-guarantee-block__metrics{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.rs-guarantee-block__metric{
  background:var(--rs-color-surface);border-radius:var(--rs-card-radius);padding:22px;
  border:1px solid var(--rs-color-border);
}
.rs-guarantee-block__metric-n{
  font-family:var(--rs-font-heading);font-size:36px;font-weight:800;
  color:var(--rs-color-text);letter-spacing:-.03em;
}
.rs-guarantee-block__metric-n .hi{color:var(--rs-color-primary);}
.rs-guarantee-block__metric-l{font-size:12px;color:var(--rs-color-text-muted);margin-top:5px;}

/* ════════════════════════════════════════════════════
   BLOCK 8 — FAQ (rs-faq)
════════════════════════════════════════════════════ */
.rs-faq{padding:72px 48px;background:var(--rs-color-bg-alt);}
.rs-faq__grid{display:grid;grid-template-columns:1fr 1fr;gap:0;max-width:900px;margin:36px auto 0;}
.rs-faq__item{
  padding:18px 0;border-bottom:1px solid var(--rs-color-border);
  cursor:pointer;
}
.rs-faq__q{
  font-family:var(--rs-font-body);font-size:14px;font-weight:600;
  color:var(--rs-color-text);display:flex;align-items:center;justify-content:space-between;gap:12px;
}
.rs-faq__q::after{content:'+';font-size:20px;color:var(--rs-color-primary);font-weight:300;flex-shrink:0;}
.rs-faq__a{
  font-size:13px;color:var(--rs-color-text-muted);line-height:1.65;
  display:block;max-height:0;overflow:hidden;opacity:0;margin-top:0;
  transition:max-height 250ms ease,opacity 200ms ease,margin-top 200ms ease;
}
.rs-faq__item.is-open .rs-faq__a{max-height:500px;opacity:1;margin-top:10px;}
/* Fix: links inside FAQ answers were inheriting browser-default blue (María, master fix #5) */
.rs-faq__a a{color:var(--rs-color-primary);font-weight:600;}
.rs-faq__item.is-open .rs-faq__q::after{content:'×';}
/* Service FAQ: always expanded, non-interactive */
.rs-service-faq .rs-faq__a{max-height:none!important;opacity:1!important;margin-top:10px!important;}
.rs-service-faq .rs-faq__item{cursor:default;}
.rs-service-faq .rs-faq__q::after{display:none;}
.rs-faq__grid{display:flex;flex-direction:column;}

/* ════════════════════════════════════════════════════
   BLOG GRID (rs-blog-grid) — blog index page
════════════════════════════════════════════════════ */
.rs-blog-grid{padding:32px 48px 72px;background:var(--rs-color-bg);}
.rs-blog-grid h2{font-family:var(--rs-font-heading);font-size:28px;font-weight:700;color:var(--rs-color-text);margin-bottom:32px;}
.rs-blog-grid__posts{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.rs-blog-grid__card{background:var(--rs-color-surface);border:1px solid var(--rs-color-border);border-radius:var(--rs-card-radius);padding:28px;display:flex;flex-direction:column;gap:10px;transition:var(--rs-transition);}
.rs-blog-grid__card:hover{border-color:var(--rs-color-primary);box-shadow:var(--rs-shadow-hover);}
.rs-blog-grid__card-meta{display:flex;align-items:center;gap:8px;}
.rs-blog-grid__cat{font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--rs-color-primary);background:var(--rs-color-primary-light);border-radius:999px;padding:3px 10px;}
.rs-blog-grid__card-title{font-family:var(--rs-font-heading);font-size:17px;font-weight:700;line-height:1.35;margin:0;}
.rs-blog-grid__card-title a{color:var(--rs-color-text);text-decoration:none;}
.rs-blog-grid__card-title a:hover{color:var(--rs-color-primary);}
.rs-blog-grid__card-excerpt{font-size:14px;color:var(--rs-color-text-muted);line-height:1.65;flex:1;}
.rs-blog-grid__card-link{font-size:13px;font-weight:600;color:var(--rs-color-primary);text-decoration:none;margin-top:4px;}
.rs-blog-grid__card-link:hover{text-decoration:underline;}
@media(max-width:900px){.rs-blog-grid__posts{grid-template-columns:1fr 1fr;}}
@media(max-width:600px){.rs-blog-grid__posts{grid-template-columns:1fr;}.rs-blog-grid{padding:48px 20px;}}

/* ════════════════════════════════════════════════════
   BLOCK 9 — FINAL CTA (rs-cta-block)
════════════════════════════════════════════════════ */
.rs-cta-block{
  background:var(--rs-color-primary);padding:80px 48px;
  text-align:center;
}
.rs-cta-block__h{
  font-family:var(--rs-font-heading);font-size:clamp(32px,5vw,48px);
  font-weight:800;color:#fff;letter-spacing:-.025em;margin-bottom:14px;
}
.rs-cta-block__sub{font-size:17px;color:rgba(255,255,255,.75);margin-bottom:32px;}
.rs-cta-block__actions{display:flex;align-items:center;justify-content:center;gap:14px;flex-wrap:wrap;}
.rs-cta-block__btn-main{
  background:#fff;color:var(--rs-color-primary);border:none;
  padding:15px 30px;font-size:15px;font-weight:800;
  font-family:var(--rs-font-body);border-radius:var(--rs-btn-radius);
}
.rs-cta-block__btn-ghost{
  background:none;color:rgba(255,255,255,.85);
  border:2px solid rgba(255,255,255,.4);
  padding:15px 26px;font-size:15px;font-weight:700;
  font-family:var(--rs-font-body);border-radius:var(--rs-btn-radius);
}
.rs-cta-block__trust{margin-top:20px;font-size:13px;color:rgba(255,255,255,.5);}
/* Inline CTA used inside blog posts — compact, contained card instead of the full-bleed final CTA, so it doesn't dominate the middle of an article. */
.rs-cta-block--inline{max-width:880px;margin:24px auto;padding:40px 32px;border-radius:20px;}
.rs-cta-block--inline .rs-cta-block__h{font-size:clamp(22px,3.2vw,28px);margin-bottom:10px;}
.rs-cta-block--inline .rs-cta-block__sub{font-size:15px;margin-bottom:22px;}

/* ════════════════════════════════════════════════════
   RS-FOOTER
════════════════════════════════════════════════════ */
/* ── rs-footer: layout + typography only — no color values ── */
.rs-footer{
  background:var(--rs-color-dark-alt);
  padding:80px 48px;         /* 80px top/bottom per spec */
  color:rgba(255,255,255,.5);
}
.rs-footer__inner{
  max-width:1320px;margin:0 auto;
  display:grid;
  /* logo column wider; larger gap separates it from link columns */
  grid-template-columns:2.4fr 1fr 1fr 1fr;
  gap:72px;                  /* was 48px — increases gap between logo col and links */
}

/* ── Logo column ── */
.rs-footer__brand-name{
  font-family:var(--rs-font-heading);font-size:18px;font-weight:800;
  color:#fff;
  margin-bottom:16px;        /* 16px gap between logo and tagline */
}
.rs-footer__tagline{
  font-family:var(--rs-font-body);
  font-size:14px;
  line-height:1.6;
  opacity:.6;
  margin-bottom:20px;
  max-width:240px;
}
.rs-footer__nap{
  font-family:var(--rs-font-body);
  font-size:13px;line-height:1.8;
}
.rs-footer__nap a{color:var(--rs-color-primary);}

/* ── Link columns ── */
.rs-footer__col-title{
  font-family:var(--rs-font-body);
  font-size:12px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.65);
  margin-bottom:18px;
  /* Reset <button> defaults — titles are labels on desktop */
  background:none;border:none;padding:0;
  appearance:none;-webkit-appearance:none;
  cursor:default;text-align:left;width:auto;
}
/* Chevron is mobile-only — hidden on desktop */
.rs-footer__col-chevron{display:none;}
.rs-footer__links{
  display:flex;flex-direction:column;
  gap:0;
}
.rs-footer__links a{
  font-family:var(--rs-font-body);
  font-size:15px;
  font-weight:400;
  color:rgba(255,255,255,.75);
  transition:color .15s, opacity .15s;
  line-height:2.0;
  display:block;
}
.rs-footer__links a:hover{
  color:rgba(255,255,255,1);
}

/* ── Bottom bar ── */
.rs-footer__bottom{
  max-width:1320px;margin:0 auto;
  /* full-width border above copyright row */
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:56px;
  padding-top:24px;
  padding-bottom:24px;       /* 24px top and bottom padding */
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:12px;
}
.rs-footer__copyright{
  font-family:var(--rs-font-body);
  font-size:13px;
  opacity:.5;
}
.rs-footer__legal-links{
  display:flex;gap:24px;
}
.rs-footer__legal-links a{
  font-family:var(--rs-font-body);
  font-size:13px;
  opacity:.5;
  color:inherit;
  transition:opacity .15s;
}
.rs-footer__legal-links a:hover{opacity:.85;}

/* ════════════════════════════════════════════════════
   RS-STICKY-CTA  (mobile bottom bar)
════════════════════════════════════════════════════ */
.rs-sticky-cta{
  position:fixed;bottom:0;left:0;right:0;z-index:600;
  background:var(--rs-color-dark);border-top:1px solid rgba(255,255,255,.1);
  display:grid;grid-template-columns:1fr 1fr;gap:0;
  height:58px;
}
.rs-sticky-cta__btn{
  display:flex;align-items:center;justify-content:center;gap:8px;
  font-family:var(--rs-font-body);font-size:14px;font-weight:700;
  border:none;height:58px;
}
.rs-sticky-cta__btn--call{background:rgba(255,255,255,.08);color:#fff;}
.rs-sticky-cta__btn--book{background:var(--rs-color-primary);color:#fff;}

/* ════════════════════════════════════════════════════
   SERVICE HERO VARIANTS  (rs-service-hero)
════════════════════════════════════════════════════ */
.rs-service-section{padding:40px 48px 24px;background:var(--rs-color-bg);}
.rs-service-section__label{
  font-family:var(--rs-font-body);font-size:11px;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;color:var(--rs-color-text-muted);
  margin-bottom:24px;display:flex;align-items:center;gap:8px;
}
.rs-service-section__label::before{content:'🔧 SERVICE PAGE HERO VARIANTS';display:block;}

/* SH1 — Clean headline + trust strip + breadcrumb */
.rs-service-hero--sh1{
  background:var(--rs-color-bg);
  padding:80px 48px;
  min-height:520px;
  border-bottom:1px solid var(--rs-color-border);
  display:flex;align-items:center;
}
.rs-service-hero__breadcrumb{
  font-family:var(--rs-font-body);font-size:12px;color:var(--rs-color-text-muted);
  display:flex;align-items:center;gap:6px;margin-bottom:20px;
}
.rs-service-hero__breadcrumb a{color:var(--rs-color-primary);}
.rs-service-hero__breadcrumb span{opacity:.4;}
.rs-service-hero__sh1-inner{display:grid;grid-template-columns:3fr 2fr;gap:64px;align-items:stretch;max-width:1320px;width:100%;}
.rs-service-hero__sh1-h1{
  font-family:var(--rs-font-heading);font-size:clamp(36px,5vw,52px);
  font-weight:800;color:var(--rs-color-text);letter-spacing:-.03em;line-height:1.1;
  margin-bottom:14px;
}
.rs-service-hero__icon{display:block;width:52px;height:52px;margin-bottom:var(--rs-space-sm);opacity:.92;}
.rs-service-hero__sh1-sub{font-size:16px;color:var(--rs-color-text-muted);line-height:1.7;margin-bottom:24px;}
.rs-service-hero__sh1-trust{display:flex;flex-wrap:wrap;gap:10px;}
.rs-service-hero__sh1-chip{
  display:flex;align-items:center;gap:6px;
  background:var(--rs-color-bg-alt);border:1px solid var(--rs-color-border);
  border-radius:100px;padding:6px 14px;font-size:12px;font-weight:600;color:var(--rs-color-text-muted);
}
/* right panel */
.rs-service-hero__sh1-panel{
  background:var(--rs-color-surface);border:1.5px solid var(--rs-color-border);
  border-radius:var(--rs-card-radius);padding:24px;
}
.rs-service-hero__sh1-panel-title{font-size:13px;font-weight:700;color:var(--rs-color-text);margin-bottom:16px;}
.rs-service-hero__sh1-price-row{
  display:flex;align-items:center;justify-content:space-between;
  padding:11px 0;border-bottom:1px solid var(--rs-color-border);font-size:13px;
}
.rs-service-hero__sh1-price-row:last-of-type{border-bottom:none;}
.rs-service-hero__sh1-model{color:var(--rs-color-text-muted);}
.rs-service-hero__sh1-price{font-weight:700;color:var(--rs-color-primary);}

/* SH2 — Dark + device image + price badge */
.rs-service-hero--sh2{
  background:var(--rs-color-dark);padding:72px 48px;
  position:relative;overflow:hidden;
}
.rs-service-hero--sh2::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 50% 60% at 75% 50%,rgba(var(--hero-glow-rgb),.14) 0%,transparent 70%);
}
.rs-service-hero__sh2-inner{
  max-width:1320px;position:relative;
  display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;
}
.rs-service-hero__sh2-pre{
  font-size:11px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:var(--rs-color-primary);margin-bottom:14px;
  display:flex;align-items:center;gap:8px;
}
.rs-service-hero__sh2-pre::before{content:'';width:22px;height:2px;background:var(--rs-color-primary);}
.rs-service-hero__sh2-h1{
  font-family:var(--rs-font-heading);font-size:clamp(40px,5vw,56px);
  font-weight:800;color:#fff;letter-spacing:-.035em;line-height:1.08;margin-bottom:16px;
}
.rs-service-hero__sh2-sub{font-size:16px;color:rgba(255,255,255,.5);line-height:1.7;margin-bottom:28px;}
.rs-service-hero__sh2-device{
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);
  border-radius:var(--rs-card-radius);
  padding:48px 36px;text-align:center;position:relative;
}
.rs-service-hero__sh2-device-icon{font-size:80px;margin-bottom:12px;}
.rs-service-hero__sh2-device-name{font-size:15px;color:rgba(255,255,255,.4);}
.rs-service-hero__sh2-badge{
  position:absolute;top:20px;right:20px;
  background:var(--rs-color-primary);color:#fff;
  border-radius:var(--rs-card-radius);padding:10px 16px;text-align:center;
}
.rs-service-hero__sh2-badge-from{font-size:10px;font-weight:600;opacity:.8;text-transform:uppercase;}
.rs-service-hero__sh2-badge-price{font-size:22px;font-weight:800;}
.rs-service-hero__sh2-trust{display:flex;gap:20px;margin-top:28px;flex-wrap:wrap;}
.rs-service-hero__sh2-trust-item{font-size:12px;color:rgba(255,255,255,.4);display:flex;align-items:center;gap:6px;}
.rs-service-hero__sh2-trust-item strong{color:rgba(255,255,255,.75);}

/* SH3 — Split + repair process teaser */
.rs-service-hero--sh3{
  background:var(--rs-color-bg);padding:72px 48px;
}
.rs-service-hero__sh3-inner{
  max-width:1320px;
  display:grid;grid-template-columns:3fr 2fr;gap:56px;align-items:start;
}
.rs-service-hero__sh3-h1{
  font-family:var(--rs-font-heading);font-size:clamp(36px,4.5vw,50px);
  font-weight:800;color:var(--rs-color-text);letter-spacing:-.03em;line-height:1.1;margin-bottom:14px;
}
.rs-service-hero__sh3-sub{font-size:15px;color:var(--rs-color-text-muted);line-height:1.7;margin-bottom:22px;}
.rs-service-hero__sh3-steps{display:flex;flex-direction:column;gap:0;}
.rs-service-hero__sh3-step{
  display:flex;gap:14px;align-items:flex-start;
  padding:14px 0;border-bottom:1px solid var(--rs-color-border);
}
.rs-service-hero__sh3-step:last-child{border-bottom:none;}
.rs-service-hero__sh3-step-num{
  width:28px;height:28px;border-radius:50%;
  background:var(--rs-color-primary-light);color:var(--rs-color-primary);
  display:flex;align-items:center;justify-content:center;
  font-size:12px;font-weight:800;flex-shrink:0;margin-top:2px;
}
.rs-service-hero__sh3-step-title{font-size:14px;font-weight:700;color:var(--rs-color-text);margin-bottom:2px;}
.rs-service-hero__sh3-step-desc{font-size:12px;color:var(--rs-color-text-muted);}
.rs-service-hero__sh3-time-badge{
  background:var(--rs-color-primary);color:#fff;
  border-radius:var(--rs-card-radius);padding:18px 22px;margin-bottom:12px;
  display:flex;align-items:center;justify-content:space-between;
}
.rs-service-hero__sh3-time-label{font-size:11px;font-weight:600;opacity:.8;text-transform:uppercase;letter-spacing:.06em;}
.rs-service-hero__sh3-time-val{font-size:28px;font-weight:800;}
.rs-service-hero__sh3-from-badge{
  background:var(--rs-color-bg-alt);border:1.5px solid var(--rs-color-border);
  border-radius:var(--rs-card-radius);padding:18px 22px;
  display:flex;align-items:center;justify-content:space-between;
}
.rs-service-hero__sh3-from-label{font-size:11px;font-weight:600;color:var(--rs-color-text-muted);text-transform:uppercase;letter-spacing:.06em;}
.rs-service-hero__sh3-from-val{font-size:28px;font-weight:800;color:var(--rs-color-text);}

/* SH4 — Full-bleed gradient + floating stats */
.rs-service-hero--sh4{
  background:linear-gradient(145deg,var(--rs-color-dark) 0%,var(--rs-color-dark-alt) 100%);
  padding:80px 48px;min-height:440px;position:relative;overflow:hidden;
  display:flex;flex-direction:column;justify-content:center;align-items:flex-start;
}
.rs-service-hero--sh4::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 50% 80% at 85% 50%,rgba(var(--hero-glow-rgb),.18) 0%,transparent 65%);
}
.rs-service-hero__sh4-content{position:relative;max-width:640px;}
.rs-service-hero__sh4-crumb{
  font-size:12px;color:rgba(255,255,255,.35);margin-bottom:18px;
  display:flex;align-items:center;gap:6px;
}
.rs-service-hero__sh4-crumb a{color:var(--rs-color-primary);}
.rs-service-hero__sh4-h1{
  font-family:var(--rs-font-heading);font-size:clamp(40px,5.5vw,60px);
  font-weight:800;color:#fff;letter-spacing:-.04em;line-height:1.08;margin-bottom:14px;
}
.rs-service-hero__sh4-sub{font-size:16px;color:rgba(255,255,255,.5);line-height:1.7;margin-bottom:28px;}
.rs-service-hero__sh4-stats{
  position:absolute;right:48px;top:50%;transform:translateY(-50%);
  display:flex;flex-direction:column;gap:12px;
}
.rs-service-hero__sh4-stat{
  background:rgba(255,255,255,.06);backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.1);border-radius:12px;
  padding:16px 20px;min-width:160px;
}
.rs-service-hero__sh4-stat-n{
  font-family:var(--rs-font-heading);font-size:28px;font-weight:800;color:#fff;
}
.rs-service-hero__sh4-stat-l{font-size:11px;color:rgba(255,255,255,.4);margin-top:3px;}


/* ════════════════════════════════════════════════════
   SERVICE PAGE TEMPLATE — FULL 9-BLOCK SYSTEM
════════════════════════════════════════════════════ */
.rs-service-section{display:none!important;}
.rs-service-template-meta{display:none;}
/* ════════════════════════════════════════════════════
   TRUST SIGNALS — light bg variant (rs-trust-signals)
   Used on reviews page and similar light-background sections
════════════════════════════════════════════════════ */
.rs-trust-signals{padding:56px 48px;background:var(--rs-color-bg-alt);}
.rs-trust-signals__grid{max-width:1320px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:16px;}
.rs-trust-signals__item{display:flex;align-items:flex-start;gap:14px;background:var(--rs-color-surface);border:1px solid var(--rs-color-border);border-radius:var(--rs-card-radius);padding:20px 22px;}
.rs-trust-signals__icon{font-size:22px;flex-shrink:0;margin-top:2px;}
.rs-trust-signals__title{font-size:14px;font-weight:700;color:var(--rs-color-text);margin-bottom:3px;}
.rs-trust-signals__desc{font-size:13px;color:var(--rs-color-text-muted);line-height:1.5;}
@media(max-width:900px){.rs-trust-signals__grid{grid-template-columns:1fr 1fr;}}
@media(max-width:600px){.rs-trust-signals{padding:40px 20px;}.rs-trust-signals__grid{grid-template-columns:1fr;gap:12px;}}

.rs-service-trust-signals{padding:22px 48px;background:var(--rs-color-dark);color:#fff;}
.rs-service-trust-signals__grid{max-width:1320px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:14px;}
.rs-service-trust-signals__item{display:flex;align-items:center;gap:12px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);border-radius:var(--rs-card-radius);padding:16px 18px;}
.rs-service-trust-signals__icon{font-size:20px;flex-shrink:0;}
.rs-service-trust-signals__title{font-size:13px;font-weight:800;color:#fff;margin-bottom:2px;}
.rs-service-trust-signals__desc{font-size:12px;color:rgba(255,255,255,.52);line-height:1.45;}
.rs-what-we-fix,.rs-local-seo-block,.rs-related-services{padding:72px 48px;background:var(--rs-color-bg);}
.rs-what-we-fix__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:30px;}
.rs-what-we-fix__card,.rs-related-services__card{background:var(--rs-color-surface);border:1px solid var(--rs-color-border);border-radius:var(--rs-card-radius);padding:24px;box-shadow:var(--rs-shadow-card);}
.rs-what-we-fix__icon{font-size:28px;margin-bottom:12px;}
img.rs-what-we-fix__icon{width:32px;height:32px;display:block;margin-bottom:12px;opacity:.85;}
.rs-what-we-fix__title,.rs-related-services__title{font-size:17px;font-weight:800;color:var(--rs-color-text);margin-bottom:8px;}
.rs-what-we-fix__copy,.rs-related-services__copy{font-size:14px;line-height:1.7;color:var(--rs-color-text-muted);}
.rs-service-copy{font-size:16px;line-height:1.8;color:var(--rs-color-text-muted);max-width:980px;margin-top:18px;}
.rs-service-copy a{color:var(--rs-color-primary);font-weight:700;}
.rs-local-seo-block{background:var(--rs-color-bg-alt);}
.rs-local-seo-block__inner{display:grid;grid-template-columns:1.15fr .85fr;gap:40px;align-items:start;}
.rs-local-seo-block__panel{background:var(--rs-color-surface);border:1px solid var(--rs-color-border);border-radius:var(--rs-card-radius);padding:28px;box-shadow:var(--rs-shadow-card);}
.rs-local-seo-block__areas{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px;}
.rs-local-seo-block__area{background:var(--rs-color-primary-light);color:var(--rs-color-primary);border:1px solid var(--rs-color-border-strong);border-radius:999px;padding:8px 12px;font-size:13px;font-weight:700;}
.rs-related-services{background:var(--rs-color-bg-alt);}
.rs-related-services__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:30px;}
.rs-related-services__card{display:block;transition:transform .18s,border-color .18s;}
.rs-related-services__card:hover{transform:translateY(-3px);border-color:var(--rs-color-primary);}
.rs-related-services__arrow{display:inline-flex;margin-top:16px;color:var(--rs-color-primary);font-size:13px;font-weight:800;}
.rs-service-reviews{padding:72px 48px;background:var(--rs-color-dark);}
.rs-service-reviews .rs-section-sub{color:rgba(255,255,255,.58);}
.rs-service-faq{padding:72px 48px;background:var(--rs-color-bg);}
.rs-service-faq .rs-faq__grid{max-width:960px;}
/* service-faq always-open handled in FAQ block above */
.rs-service-hero__visual-card{background:var(--rs-color-bg-alt);border:1px solid var(--rs-color-border);border-radius:var(--rs-card-radius);padding:30px;box-shadow:var(--rs-shadow-card);}
.rs-service-hero__visual-title{font-size:15px;font-weight:800;color:var(--rs-color-text);margin-bottom:12px;}
.rs-service-hero__visual-list{display:flex;flex-direction:column;gap:10px;}
.rs-service-hero__visual-list li{font-size:14px;color:var(--rs-color-text-muted);display:flex;gap:10px;align-items:flex-start;}
.rs-service-hero__visual-list li::before{content:'✓';color:var(--rs-color-primary);font-weight:900;}
.rs-service-price{display:none!important;}
@media(max-width:900px){.rs-service-trust-signals__grid,.rs-what-we-fix__grid,.rs-related-services__grid{grid-template-columns:1fr 1fr}.rs-local-seo-block__inner{grid-template-columns:1fr}}
@media(max-width:640px){.rs-service-trust-signals__grid,.rs-what-we-fix__grid,.rs-related-services__grid{grid-template-columns:1fr}}

/* ════════════════════════════════════════════════════
   MISC UTILITIES
════════════════════════════════════════════════════ */
.hidden{display:none!important;}
.flex-center{display:flex;align-items:center;justify-content:center;}


/* ════════════════════════════════════════════════════
   EDIT PATCH — superheader toggle, normalized heroes, service fixes
════════════════════════════════════════════════════ */
#page.superheader-hidden .rs-superheader{display:none!important;}
#page.superheader-hidden .rs-nav{top:0;}

/* H5 — Minimal / mostly blank hero */
.rs-hero--v6{
  min-height:560px;
  padding:0;
  background:var(--rs-color-bg);
  display:block;
  position:relative;
  overflow:hidden;
}
.rs-hero--v6 .rs-hero__v6-inner{
  max-width:1320px;margin:0 auto;
  padding:88px 40px;
  width:100%;box-sizing:border-box;
  position:relative;z-index:2;
  display:flex;align-items:center;
}
.rs-hero--v6::after{
  content:'';
  position:absolute;
  right:8%;top:50%;transform:translateY(-50%);
  width:34vw;max-width:420px;height:34vw;max-height:420px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(var(--hero-glow-rgb),.12),transparent 68%);
  pointer-events:none;
}
.rs-hero--v6 .rs-hero__left{position:relative;z-index:2;max-width:680px;}
.rs-hero--v6 .rs-hero__h1{max-width:700px;}
.rs-hero--v6 .rs-hero__sub{max-width:560px;}

/* H6 — Hyperrealistic before/after phone screen graphic */
.rs-hero--v7{
  padding:0;
  background:var(--rs-color-bg);
  overflow:hidden;
}
.rs-hero--v7 .rs-hero__v7-inner{
  max-width:1320px;margin:0 auto;
  padding:80px 40px;
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:64px;
  align-items:center;
  width:100%;box-sizing:border-box;
}
.rs-hero__ba-stage{
  position:relative;
  min-height:560px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.rs-ba-phone{
  width:226px;height:486px;border-radius:44px;
  background:linear-gradient(145deg,#3c3c3f,#161618 72%);
  position:absolute;
  box-shadow:0 26px 70px rgba(0,0,0,.38),0 0 0 1px rgba(255,255,255,.18),0 0 0 3px #0b0b0d;
  overflow:hidden;
}
.rs-ba-phone::before{
  content:'';position:absolute;top:10px;left:50%;transform:translateX(-50%);
  width:86px;height:27px;border-radius:18px;background:#000;z-index:5;
}
.rs-ba-phone--before{transform:translateX(-88px) rotate(-9deg);z-index:1;}
.rs-ba-phone--after{transform:translateX(88px) rotate(8deg);z-index:2;}
.rs-ba-phone__screen{position:absolute;inset:5px;border-radius:40px;overflow:hidden;}
.rs-ba-phone--before .rs-ba-phone__screen{background:linear-gradient(160deg,#08080c,#101018 70%,#030306);}
.rs-ba-phone--after .rs-ba-phone__screen{background:linear-gradient(160deg,#0f172a,#921d1d 58%,#020617);}
.rs-ba-cracks{position:absolute;inset:0;z-index:3;opacity:.9;}
.rs-ba-after-ui{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;color:#fff;text-align:center;font-family:var(--rs-font-body);}
.rs-ba-after-ui__check{width:64px;height:64px;border-radius:50%;background:rgba(34,197,94,.92);display:flex;align-items:center;justify-content:center;font-size:32px;font-weight:800;margin-bottom:16px;box-shadow:0 12px 30px rgba(34,197,94,.35);}
.rs-ba-after-ui__title{font-size:22px;font-weight:800;letter-spacing:-.02em;}
.rs-ba-after-ui__sub{font-size:12px;color:rgba(255,255,255,.68);margin-top:6px;}
.rs-ba-label{
  position:absolute;z-index:8;background:var(--rs-color-surface);color:var(--rs-color-text);
  border:1px solid var(--rs-color-border);box-shadow:0 12px 34px rgba(0,0,0,.16);
  border-radius:16px;padding:13px 16px;min-width:168px;
  font-family:var(--rs-font-body);
}
.rs-ba-label__k{font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.12em;color:var(--rs-color-primary);margin-bottom:4px;}
.rs-ba-label__v{font-size:15px;font-weight:800;}
.rs-ba-label__s{font-size:12px;color:var(--rs-color-text-muted);margin-top:2px;}
.rs-ba-label--time{top:70px;right:30px;}
.rs-ba-label--warranty{bottom:92px;left:18px;}
.rs-ba-label--diagnostic{bottom:42px;right:58px;}

/* Service hero alignment + pricing removal */
.rs-service-hero--sh1,
.rs-service-hero--sh2,
.rs-service-hero--sh3,
.rs-service-hero--sh4{display:flex;justify-content:center;}
.rs-service-hero__sh1-inner,
.rs-service-hero__sh2-inner,
.rs-service-hero__sh3-inner,
.rs-service-hero__sh4-content{width:100%;max-width:1320px;margin:0 auto;}
.rs-service-hero--sh4{align-items:center;}
.rs-service-hero__sh4-stats{right:max(48px,calc((100vw - 1200px)/2));}
.rs-service-price{display:none!important;}

/* H4: transparent cutout image, centered on the right, no collision with next row */
.rs-hero--v5{
  padding:72px 48px;
  min-height:580px;
  overflow:hidden;
}
.rs-hero--v5 .rs-hero__top{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(420px,.95fr);
  gap:44px;
  align-items:center;
  min-height:436px;
}
.rs-hero--v5 .rs-hero__person{
  height:470px;
  margin-bottom:0!important;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:visible;
}
.rs-hero--v5 .rs-hero__person-figure--photo{
  width:min(650px,42vw);
  height:500px;
  display:flex;
  align-items:center;
  justify-content:center;
  transform:translateX(18px) translateY(4px);
  transform-origin:center center;
  -webkit-mask-image:none!important;
  mask-image:none!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  overflow:visible;
}
.rs-hero--v5 .rs-hero__person-figure--photo img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center center;
  display:block;
  background:transparent!important;
  filter:drop-shadow(0 18px 36px rgba(15,23,42,.16));
}
@media (max-width:980px){
  .rs-hero--v5{padding:56px 24px;min-height:auto;}
  .rs-hero--v5 .rs-hero__top{grid-template-columns:1fr;gap:24px;min-height:auto;}
  .rs-hero--v5 .rs-hero__person{height:420px;}
  .rs-hero--v5 .rs-hero__person-figure--photo{width:min(560px,94vw);height:420px;transform:none;}
}


/* ════════════════════════════════════════════════════
   LOCATION + ABOUT SAMPLE PAGE TEMPLATES
════════════════════════════════════════════════════ */
.rs-service-section{display:none;} /* remove preview artifact label/breadcrumb spacer */
.rs-page-template-meta{display:none;}
.rs-template-note{font-family:var(--rs-font-body);font-size:12px;color:var(--rs-color-text-muted);background:var(--rs-color-bg-alt);border:1px solid var(--rs-color-border);border-radius:12px;padding:12px 14px;margin:0 auto;max-width:1320px;}
.rs-location-hero,.rs-about-hero{padding:72px 48px;background:var(--rs-color-bg);border-bottom:1px solid var(--rs-color-border);}
.rs-location-hero__inner,.rs-about-hero__inner{max-width:1320px;margin:0 auto;display:grid;grid-template-columns:1.08fr .92fr;gap:56px;align-items:center;}
.rs-location-hero__photo,.rs-about-hero__photo{min-height:390px;border-radius:var(--rs-card-radius);background:linear-gradient(135deg,var(--rs-color-bg-alt),var(--rs-color-primary-light));border:1px solid var(--rs-color-border);box-shadow:var(--rs-shadow-card);position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center;}
.rs-location-hero__photo::before,.rs-about-hero__photo::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 50% at 50% 40%,rgba(var(--hero-glow-rgb),.18),transparent 70%);}
.rs-real-photo-placeholder{position:relative;z-index:1;text-align:center;padding:36px;max-width:420px;}
.rs-real-photo-placeholder__icon{font-size:70px;margin-bottom:14px;}
.rs-real-photo-placeholder__title{font-family:var(--rs-font-heading);font-size:24px;font-weight:800;color:var(--rs-color-text);margin-bottom:8px;}
.rs-real-photo-placeholder__copy{font-size:14px;line-height:1.65;color:var(--rs-color-text-muted);}
.rs-trust-bar{background:var(--rs-color-dark);padding:22px 48px;}
.rs-trust-bar__inner{max-width:1320px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:18px;align-items:center;}
.rs-trust-bar__item{display:flex;align-items:center;gap:12px;color:rgba(255,255,255,.72);font-family:var(--rs-font-body);font-size:13px;font-weight:600;}
.rs-trust-bar__icon{width:36px;height:36px;border-radius:999px;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.rs-trust-bar__value{display:block;color:#fff;font-weight:800;font-size:15px;}
.rs-map-embed{padding:72px 48px;background:var(--rs-color-bg-alt);}
.rs-map-embed__inner{max-width:1320px;margin:0 auto;display:grid;grid-template-columns:.85fr 1.15fr;gap:32px;align-items:stretch;}
.rs-map-embed__card{background:var(--rs-color-surface);border:1px solid var(--rs-color-border);border-radius:var(--rs-card-radius);padding:28px;box-shadow:var(--rs-shadow-card);}
.rs-map-embed__map{min-height:360px;border-radius:var(--rs-card-radius);border:1px solid var(--rs-color-border);background:linear-gradient(135deg,#f8e9e9,#fcf4f4);position:relative;overflow:hidden;}
.rs-map-embed__map::before{content:'';position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.55) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.55) 1px,transparent 1px);background-size:48px 48px;}
.rs-map-embed__pin{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);background:var(--rs-color-primary);color:#fff;border-radius:999px;padding:12px 18px;font-weight:800;box-shadow:0 12px 32px rgba(0,0,0,.2);}
.rs-services-list{padding:72px 48px;background:var(--rs-color-bg);}
.rs-services-list__list{max-width:1000px;margin:32px auto 0;display:flex;flex-direction:column;border:1px solid var(--rs-color-border);border-radius:var(--rs-card-radius);overflow:hidden;background:var(--rs-color-surface);box-shadow:var(--rs-shadow-card);}
.rs-services-list__item{display:grid;grid-template-columns:auto 1fr auto;gap:18px;align-items:center;padding:22px 24px;border-bottom:1px solid var(--rs-color-border);}
.rs-services-list__item:last-child{border-bottom:none;}
.rs-services-list__icon{font-size:28px;}
.rs-services-list__title{font-size:17px;font-weight:800;color:var(--rs-color-text);margin-bottom:4px;}
.rs-services-list__copy{font-size:14px;line-height:1.55;color:var(--rs-color-text-muted);}
.rs-services-list__link{font-size:13px;font-weight:800;color:var(--rs-color-primary);white-space:nowrap;}
.rs-hours-contact{padding:72px 48px;background:var(--rs-color-bg);}
.rs-hours-contact__grid{max-width:1320px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:24px;}
.rs-hours-contact__card{background:var(--rs-color-surface);border:1px solid var(--rs-color-border);border-radius:var(--rs-card-radius);padding:30px;box-shadow:var(--rs-shadow-card);}
.rs-hours-contact__row{display:flex;justify-content:space-between;gap:16px;padding:11px 0;border-bottom:1px solid var(--rs-color-border);font-size:14px;color:var(--rs-color-text-muted);}
.rs-hours-contact__row:last-child{border-bottom:none;}
.rs-hours-contact__row strong{color:var(--rs-color-text);}
.rs-contact-list{display:flex;flex-direction:column;gap:13px;margin-top:18px;font-size:15px;line-height:1.55;color:var(--rs-color-text-muted);}
.rs-contact-list a{color:var(--rs-color-primary);font-weight:800;}
.rs-other-locations{padding:72px 48px;background:var(--rs-color-bg-alt);}
.rs-other-locations__grid{max-width:1320px;margin:32px auto 0;display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.rs-other-locations__card{display:block;background:var(--rs-color-surface);border:1px solid var(--rs-color-border);border-radius:var(--rs-card-radius);padding:24px;box-shadow:var(--rs-shadow-card);transition:transform .18s,border-color .18s;}
.rs-other-locations__card:hover{transform:translateY(-3px);border-color:var(--rs-color-primary);}
.rs-other-locations__city{font-size:18px;font-weight:800;color:var(--rs-color-text);margin-bottom:6px;}
.rs-other-locations__copy{font-size:14px;color:var(--rs-color-text-muted);line-height:1.6;}
.rs-story-block,.rs-community-block,.rs-team-block{padding:72px 48px;background:var(--rs-color-bg);}
.rs-community-block,.rs-team-block{background:var(--rs-color-bg-alt);}
.rs-story-block__inner,.rs-community-block__inner{max-width:1050px;margin:0 auto;display:grid;grid-template-columns:.85fr 1.15fr;gap:42px;align-items:start;}
.rs-story-block__copy p,.rs-community-block__copy p{font-size:16px;line-height:1.8;color:var(--rs-color-text-muted);margin-bottom:16px;}
/* Fix: links inside story/community copy were inheriting browser-default blue (María, master fix #1) */
.rs-story-block__copy a,.rs-community-block__copy a{color:var(--rs-color-primary);font-weight:600;}
/* Generic content list for use in About, Warranty and other content pages — restores bullets
   that the global `ul{list-style:none}` strips (María, master fix #2) */
.rs-list{list-style:disc;margin:0 0 18px;padding-left:22px;}
.rs-list li{font-size:16px;line-height:1.8;color:var(--rs-color-text-muted);margin-bottom:8px;}
.rs-list li::marker{color:var(--rs-color-primary);}
.rs-story-card{background:var(--rs-color-surface);border:1px solid var(--rs-color-border);border-radius:var(--rs-card-radius);padding:26px;box-shadow:var(--rs-shadow-card);}
.rs-story-card__stat{font-family:var(--rs-font-heading);font-size:34px;font-weight:900;color:var(--rs-color-primary);line-height:1;margin-bottom:8px;}
.rs-story-card__label{font-size:13px;color:var(--rs-color-text-muted);line-height:1.55;margin-bottom:18px;}
.rs-team-block__grid{max-width:1320px;margin:32px auto 0;display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.rs-team-card{background:var(--rs-color-surface);border:1px solid var(--rs-color-border);border-radius:var(--rs-card-radius);padding:24px;box-shadow:var(--rs-shadow-card);}
.rs-team-card__photo{height:170px;border-radius:12px;background:linear-gradient(135deg,var(--rs-color-primary-light),var(--rs-color-bg-alt));display:flex;align-items:center;justify-content:center;font-size:48px;margin-bottom:18px;}
.rs-team-card__name{font-size:17px;font-weight:800;color:var(--rs-color-text);margin-bottom:4px;}
.rs-team-card__role{font-size:13px;font-weight:800;color:var(--rs-color-primary);margin-bottom:10px;}
.rs-team-card__copy{font-size:14px;line-height:1.65;color:var(--rs-color-text-muted);}
@media(max-width:900px){.rs-location-hero__inner,.rs-about-hero__inner,.rs-map-embed__inner,.rs-hours-contact__grid,.rs-story-block__inner,.rs-community-block__inner{grid-template-columns:1fr}.rs-trust-bar__inner,.rs-other-locations__grid,.rs-team-block__grid{grid-template-columns:1fr 1fr}.rs-services-list__item{grid-template-columns:auto 1fr}}
@media(max-width:640px){.rs-trust-bar__inner,.rs-other-locations__grid,.rs-team-block__grid{grid-template-columns:1fr}.rs-services-list__link{grid-column:2}.rs-location-hero,.rs-about-hero,.rs-map-embed,.rs-services-list,.rs-hours-contact,.rs-other-locations,.rs-story-block,.rs-community-block,.rs-team-block{padding-left:24px;padding-right:24px}}


/* Clean service template preview artifacts */
.rs-service-hero__breadcrumb{display:none!important;}
.rs-service-hero__sh1-inner,.rs-service-hero__sh2-inner,.rs-service-hero__sh3-inner{margin-left:auto;margin-right:auto;}


/* BUY / SELL / QUOTE PAGE TEMPLATE PREVIEWS */
.rs-page-note{max-width:1320px;margin:0 auto 18px;font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--rs-color-text-muted);}
.rs-template-hero{padding:82px 48px;background:var(--rs-color-bg);}
.rs-template-hero__inner{max-width:1320px;margin:0 auto;display:grid;grid-template-columns:1.1fr .9fr;gap:56px;align-items:center;}
.rs-template-hero--minimal .rs-template-hero__inner{display:block;max-width:860px;text-align:center;}
.rs-template-hero__kicker{display:inline-flex;align-items:center;gap:8px;padding:7px 15px;border-radius:999px;background:var(--rs-color-primary-light);border:1px solid var(--rs-color-border-strong);color:var(--rs-color-primary);font-size:12px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;margin-bottom:18px;}
.rs-template-hero__kicker:before{content:'';width:6px;height:6px;border-radius:999px;background:var(--rs-color-primary);}
.rs-template-hero__h1{font-family:var(--rs-font-heading);font-size:clamp(42px,5.8vw,64px);line-height:1.05;letter-spacing:-.04em;color:var(--rs-color-text);font-weight:900;margin-bottom:18px;}
.rs-template-hero__h1 em{font-style:normal;color:var(--rs-color-primary);}
.rs-template-hero__sub{font-size:18px;line-height:1.75;color:var(--rs-color-text-muted);margin-bottom:28px;}
.rs-template-hero__actions{display:flex;gap:12px;flex-wrap:wrap;}
.rs-template-visual{min-height:360px;border-radius:var(--rs-card-radius);background:linear-gradient(135deg,var(--rs-color-primary-light),var(--rs-color-bg-alt));border:1px solid var(--rs-color-border);display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;}
.rs-template-visual__device{width:180px;height:310px;border-radius:34px;background:#101014;box-shadow:0 26px 60px rgba(0,0,0,.25);position:relative;border:8px solid #26262a;}
.rs-template-visual__device:before{content:'';position:absolute;top:18px;left:50%;transform:translateX(-50%);width:64px;height:16px;border-radius:999px;background:#000;}
.rs-template-visual__device:after{content:'PHONE';position:absolute;inset:56px 20px auto;display:flex;align-items:center;justify-content:center;height:140px;border-radius:18px;background:linear-gradient(135deg,var(--rs-color-primary),var(--rs-color-accent));color:#fff;font-weight:900;font-size:16px;}
.rs-template-visual__cash{position:absolute;right:54px;bottom:54px;background:var(--rs-color-surface);border:1px solid var(--rs-color-border);border-radius:16px;padding:16px 20px;box-shadow:var(--rs-shadow-hover);font-weight:900;color:var(--rs-color-text);}
.rs-what-we-buy,.rs-inventory-grid,.rs-quote-form{padding:72px 48px;background:var(--rs-color-bg-alt);}
.rs-what-we-buy__grid{max-width:1320px;margin:34px auto 0;display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.rs-what-we-buy__card,.rs-inventory-card{background:var(--rs-color-surface);border:1px solid var(--rs-color-border);border-radius:var(--rs-card-radius);padding:24px;box-shadow:var(--rs-shadow-card);}
.rs-what-we-buy__icon{font-size:34px;margin-bottom:14px;}
.rs-what-we-buy__title,.rs-inventory-card__name{font-size:18px;font-weight:900;color:var(--rs-color-text);margin-bottom:8px;}
.rs-what-we-buy__copy,.rs-inventory-card__meta{font-size:14px;line-height:1.65;color:var(--rs-color-text-muted);}
.rs-inventory-grid__items{max-width:1320px;margin:34px auto 0;display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.rs-inventory-card__photo{height:145px;border-radius:14px;background:linear-gradient(135deg,var(--rs-color-primary-light),var(--rs-color-bg));display:flex;align-items:center;justify-content:center;font-size:48px;margin-bottom:18px;}
.rs-inventory-card__grade{display:inline-flex;background:var(--rs-color-primary-light);color:var(--rs-color-primary);font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.06em;border-radius:999px;padding:5px 10px;margin-bottom:10px;}
.rs-inventory-card__price{font-size:26px;font-weight:900;color:var(--rs-color-text);margin:12px 0 16px;}
.rs-inventory-card__cta{width:100%;border:none;background:var(--rs-color-primary);color:#fff;border-radius:var(--rs-btn-radius);padding:12px 16px;font-weight:900;font-family:var(--rs-font-body);}
.rs-quote-form__wrap{max-width:920px;margin:0 auto;display:grid;grid-template-columns:1fr .85fr;gap:24px;align-items:start;}
.rs-quote-form__embed{background:var(--rs-color-surface);border:1px solid var(--rs-color-border);border-radius:var(--rs-card-radius);padding:28px;box-shadow:var(--rs-shadow-hover);}
.rs-quote-form__field{display:flex;flex-direction:column;gap:7px;margin-bottom:14px;font-size:13px;font-weight:800;color:var(--rs-color-text);}
.rs-quote-form__field input,.rs-quote-form__field select,.rs-quote-form__field textarea{border:1px solid var(--rs-color-border);border-radius:10px;padding:13px 14px;font-family:var(--rs-font-body);font-size:15px;background:var(--rs-color-bg);color:var(--rs-color-text);}
.rs-quote-form__field textarea{min-height:100px;resize:vertical;}
.rs-quote-form__sidebar{background:var(--rs-color-surface);border:1px solid var(--rs-color-border);border-radius:var(--rs-card-radius);padding:26px;}
.rs-quote-form__sidebar h3{font-size:20px;color:var(--rs-color-text);margin-bottom:10px;}
.rs-quote-form__sidebar p,.rs-quote-form__sidebar li{font-size:14px;line-height:1.7;color:var(--rs-color-text-muted);}
.rs-quote-form__sidebar ul{margin-top:14px;display:flex;flex-direction:column;gap:8px;}
.rs-quote-form__sidebar li:before{content:'✓';color:var(--rs-color-primary);font-weight:900;margin-right:8px;}
@media(max-width:900px){.rs-template-hero__inner,.rs-quote-form__wrap{grid-template-columns:1fr}.rs-what-we-buy__grid,.rs-inventory-grid__items{grid-template-columns:1fr 1fr}}
@media(max-width:640px){.rs-what-we-buy__grid,.rs-inventory-grid__items{grid-template-columns:1fr}.rs-template-hero,.rs-what-we-buy,.rs-inventory-grid,.rs-quote-form{padding-left:24px;padding-right:24px}}


/* ════════════════════════════════════════════════════
   V9 PAGE TEMPLATE REFINEMENTS
════════════════════════════════════════════════════ */
.rs-template-hero__inner,
.rs-what-we-buy__grid,
.rs-inventory-grid__items,
.rs-guarantee-block__inner,
.rs-quote-form__wrap,
.rs-page-note,
.rs-section > .rs-container,
.rs-how-it-works > .rs-container,
.rs-faq > .rs-container{
  max-width:1320px;
}
.rs-guarantee-block__inner{margin-left:auto;margin-right:auto;}
.rs-page-note--public{
  text-transform:none;
  letter-spacing:0;
  font-size:14px;
  line-height:1.55;
  font-weight:700;
  color:var(--rs-color-text-muted);
  background:var(--rs-color-bg-alt);
  border:1px solid var(--rs-color-border);
  border-radius:999px;
  padding:9px 16px;
  width:max-content;
  max-width:1320px;
}
.rs-template-visual--devices{
  background:radial-gradient(circle at 70% 35%,rgba(var(--hero-glow-rgb),.18),transparent 42%),linear-gradient(135deg,var(--rs-color-primary-light),var(--rs-color-bg-alt));
}
.rs-device-collection{position:relative;width:360px;height:300px;}
.rs-device-collection__phone,
.rs-device-collection__tablet,
.rs-device-collection__watch,
.rs-device-collection__buds{
  position:absolute;background:#111318;border:7px solid #2c2f36;box-shadow:0 22px 54px rgba(0,0,0,.22);overflow:hidden;
}
.rs-device-collection__phone{width:122px;height:232px;border-radius:28px;left:118px;top:28px;z-index:3;}
.rs-device-collection__phone:before{content:'';position:absolute;top:10px;left:50%;transform:translateX(-50%);width:46px;height:12px;background:#000;border-radius:999px;z-index:2;}
.rs-device-collection__phone:after{content:'';position:absolute;inset:28px 12px 12px;border-radius:18px;background:linear-gradient(160deg,var(--rs-color-primary),var(--rs-color-accent));opacity:.9;}
.rs-device-collection__tablet{width:164px;height:220px;border-radius:24px;left:12px;top:54px;z-index:2;transform:rotate(-8deg);}
.rs-device-collection__tablet:after{content:'';position:absolute;inset:18px;border-radius:16px;background:linear-gradient(150deg,var(--rs-color-bg),var(--rs-color-primary-light));}
.rs-device-collection__watch{width:82px;height:104px;border-radius:24px;right:26px;top:118px;z-index:4;}
.rs-device-collection__watch:before{content:'';position:absolute;left:24px;right:24px;top:-34px;height:40px;background:#2c2f36;border-radius:18px 18px 8px 8px;}
.rs-device-collection__watch:after{content:'✓';position:absolute;inset:16px;border-radius:18px;background:var(--rs-color-primary);color:#fff;display:flex;align-items:center;justify-content:center;font-size:28px;font-weight:900;}
.rs-device-collection__buds{width:90px;height:64px;border-radius:20px;right:82px;bottom:8px;z-index:5;background:var(--rs-color-surface);border:1px solid var(--rs-color-border);}
.rs-device-collection__buds:before{content:'•  •';position:absolute;inset:0;display:flex;align-items:center;justify-content:center;color:var(--rs-color-primary);font-size:28px;letter-spacing:8px;}
.rs-template-visual--sell-cash{
  background:radial-gradient(circle at 58% 42%,rgba(var(--hero-glow-rgb),.22),transparent 44%),linear-gradient(135deg,var(--rs-color-bg-alt),var(--rs-color-primary-light));
}
.rs-modern-phone{width:190px;height:336px;border-radius:42px;background:linear-gradient(165deg,#3a3d42,#111318 58%,#050507);border:8px solid #23262d;box-shadow:0 30px 70px rgba(0,0,0,.28);position:relative;overflow:hidden;transform:rotate(-6deg);}
.rs-modern-phone:before{content:'';position:absolute;top:14px;left:50%;transform:translateX(-50%);width:70px;height:20px;background:#000;border-radius:999px;z-index:3;}
.rs-modern-phone__screen{position:absolute;inset:10px;border-radius:32px;background:linear-gradient(155deg,var(--rs-color-primary),var(--rs-color-accent));display:flex;align-items:center;justify-content:center;overflow:hidden;}
.rs-modern-phone__screen:before{content:'$';font-family:var(--rs-font-heading);font-size:112px;line-height:1;font-weight:900;color:#fff;opacity:.96;text-shadow:0 10px 30px rgba(0,0,0,.18);}
.rs-modern-phone__screen:after{content:'$$$';position:absolute;bottom:46px;left:0;right:0;text-align:center;color:rgba(255,255,255,.72);font-size:28px;font-weight:900;letter-spacing:10px;}
.rs-template-visual--sell-cash .rs-template-visual__cash{right:40px;bottom:42px;}


/* V10 — Book/Quote scheduling form */
.rs-quote-form__steps{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin:0 0 22px;}
.rs-quote-form__step-pill{display:flex;align-items:center;gap:8px;background:var(--rs-color-bg-alt);border:1px solid var(--rs-color-border);border-radius:999px;padding:9px 11px;font-size:12px;font-weight:900;color:var(--rs-color-text-muted);}
.rs-quote-form__step-pill strong{width:22px;height:22px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:var(--rs-color-primary);color:#fff;font-size:11px;flex-shrink:0;}
.rs-quote-form__section{border:1px solid var(--rs-color-border);border-radius:16px;padding:18px;margin-bottom:16px;background:var(--rs-color-bg);}
.rs-quote-form__section-title{display:flex;align-items:center;justify-content:space-between;gap:12px;font-size:14px;font-weight:900;color:var(--rs-color-text);margin-bottom:14px;}
.rs-quote-form__section-title span{font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.08em;color:var(--rs-color-primary);}
.rs-quote-form__grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
.rs-quote-form__date-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:14px;}
.rs-quote-form__slots{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;}
.rs-quote-form__slot{border:1px solid var(--rs-color-border);background:var(--rs-color-surface);color:var(--rs-color-text);border-radius:10px;padding:10px 8px;font-family:var(--rs-font-body);font-size:13px;font-weight:800;transition:border-color .15s,background .15s,color .15s;}
.rs-quote-form__slot:hover,.rs-quote-form__slot.is-selected{border-color:var(--rs-color-primary);background:var(--rs-color-primary-light);color:var(--rs-color-primary);}
.rs-quote-form__hint{font-size:12px;color:var(--rs-color-text-muted);line-height:1.55;margin-top:10px;}
.rs-quote-form__steps{grid-template-columns:repeat(2,1fr);}
.rs-quote-form__step-pill{opacity:.55;transition:opacity .15s,border-color .15s,background .15s,color .15s;}
.rs-quote-form__step-pill.is-active{opacity:1;border-color:var(--rs-color-primary);background:var(--rs-color-primary-light);color:var(--rs-color-primary);}
.rs-quote-form__panel{display:none;}
.rs-quote-form__panel.is-active{display:block;}
.rs-quote-form__actions{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:16px;}
.rs-quote-form__actions .rs-btn--primary,.rs-quote-form__actions .rs-btn--secondary{min-width:160px;}
@media(max-width:520px){.rs-quote-form__actions{flex-direction:column-reverse;align-items:stretch}.rs-quote-form__actions .rs-btn--primary,.rs-quote-form__actions .rs-btn--secondary{width:100%;min-width:0}}
@media(max-width:720px){.rs-quote-form__steps,.rs-quote-form__grid,.rs-quote-form__date-row{grid-template-columns:1fr}.rs-quote-form__slots{grid-template-columns:repeat(2,1fr)}}


/* ════════════════════════════════════════════════════
   EDIT PATCH v11 — H1 hero spacing and responsive behavior
   Creates a stronger editorial split between copy and visual,
   then collapses cleanly on tablet/mobile.
════════════════════════════════════════════════════ */
#hero-v1 .rs-hero--v1{
  grid-template-columns:minmax(0,0.98fr) minmax(360px,0.82fr);
  column-gap:clamp(96px,9vw,170px);
  row-gap:40px;
  padding-left:clamp(24px,4vw,64px);
  padding-right:clamp(24px,4vw,64px);
}
#hero-v1 .rs-hero__left{
  max-width:760px;
}
#hero-v1 .rs-hero__right{
  justify-self:stretch;
  width:100%;
}
#hero-v1 .rs-hero__panel{
  width:100%;
  max-width:640px;
  margin-left:auto;
}
#hero-v1 .rs-hero__h1{
  max-width:720px;
}
#hero-v1 .rs-hero__sub{
  max-width:760px;
}
@media(max-width:1180px){
  #hero-v1 .rs-hero--v1{
    grid-template-columns:minmax(0,1fr) minmax(320px,0.72fr);
    column-gap:clamp(56px,6vw,96px);
  }
  #hero-v1 .rs-hero__h1{font-size:clamp(40px,5vw,56px);}
}
@media(max-width:900px){
  #hero-v1 .rs-hero--v1{
    grid-template-columns:1fr;
    gap:36px;
    padding-top:64px;
    padding-bottom:56px;
  }
  #hero-v1 .rs-hero__left,
  #hero-v1 .rs-hero__h1,
  #hero-v1 .rs-hero__sub{
    max-width:720px;
  }
  #hero-v1 .rs-hero__panel{
    max-width:720px;
    margin-left:0;
  }
}
@media(max-width:640px){
  #hero-v1 .rs-hero--v1{
    padding:48px 24px 44px;
    gap:28px;
  }
  #hero-v1 .rs-hero__h1{
    font-size:clamp(34px,11vw,44px);
  }
  #hero-v1 .rs-hero__sub{
    font-size:16px;
    line-height:1.6;
  }
  #hero-v1 .rs-hero__actions{
    flex-direction:column;
    align-items:stretch;
  }
  #hero-v1 .rs-btn--primary,
  #hero-v1 .rs-btn--secondary{
    width:100%;
  }
}


#page.superheader-hidden .rs-nav{top:0;}


/* EDIT PATCH — mobile nav containment
   Prevents horizontal overflow on phone-sized previews while keeping desktop nav unchanged. */
html,body{max-width:100%;overflow-x:clip;}


/* EDIT PATCH — v17 mobile nav: logo left, CTA centered, hamburger right. */
.rs-mobile-menu-toggle{display:none;background:none;border:0;color:var(--rs-nav-text);width:44px;height:44px;border-radius:12px;align-items:center;justify-content:center;flex-direction:column;gap:5px;}
.rs-mobile-menu-toggle span{display:block;width:22px;height:2px;background:currentColor;border-radius:999px;transition:transform .18s,opacity .18s;}
/* Mobile scroll-reveal: nav slides up when scrolling down, returns on scroll-up */
.rs-nav{transition:transform .25s ease;}
.rs-nav--hidden{transform:translateY(-100%);}
.rs-mobile-menu-panel{display:none;}

/* EDIT PATCH — v18 definitive mobile nav fix
   Mobile layout: logo left, hamburger right; CTA moved to superheader. */
@media(max-width:780px){
  #page{overflow-x:clip!important;}
  #page .rs-headerstack nav.rs-nav{display:none!important;}
  #page .rs-headerstack nav.rs-nav:first-of-type{
    display:grid!important;
    grid-template-columns:auto 1fr auto!important;
    align-items:center!important;
    gap:10px!important;
    height:64px!important;
    min-height:64px!important;
    padding:0 14px!important;
    overflow:visible!important;
    position:static!important;
    top:auto!important;
    z-index:auto!important;
    background:var(--rs-nav-bg)!important;
  }
  #page .rs-headerstack nav.rs-nav:first-of-type .rs-nav__links{display:none!important;}
  #page .rs-headerstack nav.rs-nav:first-of-type .rs-nav__logo{
    display:flex!important;
    grid-column:1!important;
    justify-self:start!important;
    align-items:center!important;
    max-width:100%!important;
    min-width:0!important;
    margin:0!important;
    font-size:17px!important;
    line-height:1!important;
    white-space:nowrap!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    color:var(--rs-nav-text)!important;
  }
  /* Nav CTA hidden on mobile — CTA lives in superheader */
  #page .rs-headerstack nav.rs-nav:first-of-type > .rs-nav__cta{
    display:none!important;
  }
  #page .rs-headerstack nav.rs-nav:first-of-type > .rs-mobile-menu-toggle{
    display:flex!important;
    grid-column:3!important;
    justify-self:end!important;
    align-items:center!important;
    justify-content:center!important;
    width:44px!important;
    height:44px!important;
    padding:0!important;
    border:1px solid var(--rs-color-border)!important;
    background:var(--rs-color-surface)!important;
    color:var(--rs-nav-text)!important;
    border-radius:12px!important;
    z-index:730!important;
    -webkit-tap-highlight-color:transparent;
  }
  #page .rs-headerstack nav.rs-nav:first-of-type > .rs-mobile-menu-toggle span{
    display:block!important;
    width:21px!important;
    height:2px!important;
    background:currentColor!important;
    border-radius:999px!important;
  }
  #page.mobile-menu-open .rs-headerstack nav.rs-nav:first-of-type > .rs-mobile-menu-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)!important;}
  #page.mobile-menu-open .rs-headerstack nav.rs-nav:first-of-type > .rs-mobile-menu-toggle span:nth-child(2){opacity:0!important;}
  #page.mobile-menu-open .rs-headerstack nav.rs-nav:first-of-type > .rs-mobile-menu-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)!important;}
  /* Full-screen SOLID overlay from top:0. The header (z-index 720) and demo bar
     (z-index 99999) sit ABOVE this panel (z-index 715), so they paint on top and
     the panel's solid background fills everything below them. This makes a top gap
     impossible regardless of header height, and a solid (not transparent) bg means
     no page content can ever show through the gaps between menu cards. */
  #page > .rs-mobile-menu-panel{
    display:none!important;
    position:fixed!important;
    top:0!important;
    left:0!important;right:0!important;bottom:0!important;
    z-index:715!important;
    background:var(--rs-color-bg)!important;
    box-shadow:none!important;
    overflow-y:auto!important;
    -webkit-overflow-scrolling:touch!important;
  }
  #page.mobile-menu-open > .rs-mobile-menu-panel{display:block!important;}
  /* Pad the menu items down so they start below the fixed header (which is painting
     on top of the panel). 144px = mobile header height; demo mode adds the 52px bar. */
  .rs-mobile-menu-panel__inner{padding-top:156px!important;}
  body.demo-mode #page > .rs-mobile-menu-panel .rs-mobile-menu-panel__inner,
  #page.demo-mode > .rs-mobile-menu-panel .rs-mobile-menu-panel__inner{padding-top:208px!important;}
}
@media(max-width:390px){
  #page .rs-headerstack nav.rs-nav:first-of-type{grid-template-columns:minmax(74px,1fr) 1fr minmax(44px,1fr)!important;padding:0 10px!important;gap:8px!important;}
  #page .rs-headerstack nav.rs-nav:first-of-type .rs-nav__logo{font-size:15px!important;}
}


body.hide-superheader .rs-superheader{display:none!important;}
body.hide-sticky-cta .rs-sticky-cta{display:none!important;}
body.hide-price-anchor .rs-price-anchor{display:none!important;}
body.hide-social-proof .rs-social-proof-bar{display:none!important;}
body.hide-secondary-cta .rs-hero__secondary-cta{display:none!important;}
/* The fixed 52px demo bar is cleared by the sticky superheader/nav offsets below (top:52px etc.), so body padding-top here is redundant and only created a 52px white gap under the demo bar. Keep it 0. */
body.demo-mode{padding-top:0;}
/* In demo mode: push sticky elements below the 52px fixed demo bar */
body.demo-mode .rs-superheader{top:52px!important;}
/* Desktop nav: below demo bar + 38px superheader */
body.demo-mode .rs-nav{top:calc(52px + 38px)!important;}
/* Mobile nav: below demo bar + 72px mobile superheader */
@media(max-width:780px){
  body.demo-mode .rs-superheader{top:52px!important;}
  body.demo-mode .rs-nav,
  body.demo-mode nav.rs-nav:first-of-type,
  #page.demo-mode .rs-headerstack nav.rs-nav:first-of-type{top:calc(52px + 80px)!important;}
}
.rs-hero{background:var(--rs-color-bg);}
/* Isolate all page content (every hero + section) into its own stacking layer at
   z-index:0, so nothing inside the hero can ever paint over the sticky superheader
   or nav (which sit above at z-index 700+). Fixes the hero-overlaps-superheader bug. */
.rs-template-wrapper{background:var(--rs-color-bg);position:relative;z-index:0;}
/* ── Sticky header stack ──────────────────────────────────────────────
   The superheader + nav are wrapped in .rs-headerstack and stick as ONE
   unit. Because they move together, the nav can never ride up over the
   superheader on scroll (the exact mobile bug). The children are static;
   only the wrapper is sticky, so there are no fragile per-element offsets. */
.rs-headerstack{position:fixed;top:0;left:0;right:0;z-index:720;}
body.demo-mode .rs-headerstack{top:52px;}
/* Fixed header is out of flow — reserve space so content starts below it (the reserved
   area sits behind the fixed header, so there is no visible gap). */
.rs-template-wrapper{padding-top:102px;}
body.demo-mode .rs-template-wrapper{padding-top:154px;}
@media(max-width:780px){
  .rs-template-wrapper{padding-top:144px;}
  body.demo-mode .rs-template-wrapper{padding-top:196px;}
}
.rs-headerstack > .rs-superheader{position:static!important;top:auto!important;}
.rs-headerstack > nav.rs-nav{position:static!important;top:auto!important;}
/* When the superheader is absent — front-matter superheader:false (e.g. /instant-quote/)
   OR hidden via the demo-bar toggle — the header is ~80px shorter. Shrink the reserved
   space to match so there's no empty white gap under the header. Nav alone ≈ 64px,
   plus the 52px fixed demo bar in demo mode. Higher specificity beats the defaults. */
body:not(:has(.rs-superheader)) .rs-template-wrapper,
body.hide-superheader .rs-template-wrapper{padding-top:64px;}
body:not(:has(.rs-superheader)).demo-mode .rs-template-wrapper,
body.hide-superheader.demo-mode .rs-template-wrapper{padding-top:116px;}

/* Mobile menu panel section titles and view-all link */
.rs-mobile-menu-panel__section-title{
  font-family:var(--rs-font-body);
  font-size:10px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--rs-color-text-muted);
  padding:4px 4px 0;
  margin-top:4px;
}
.rs-mobile-menu-panel__link--all{
  color:var(--rs-color-primary);
  border-color:var(--rs-color-primary);
  font-weight:700;
}
@media(min-width:768px){
  .rs-nav{top:38px!important;}
}


/* ════════════════════════════════════════════════════
   MOBILE-FIRST RESPONSIVE — Complete overhaul
   Breakpoints: 900px (tablet), 640px (phone), 420px (small phone)
════════════════════════════════════════════════════ */

/* ── Person image (hero V5) ── */
.rs-hero__person-figure--photo{
  width:100%;height:100%;border-radius:0;background:transparent;
  overflow:hidden;display:flex;align-items:flex-end;justify-content:center;
}
.rs-hero__person-figure--photo img{
  max-height:100%;width:auto;object-fit:contain;
  object-position:bottom center;display:block;
  mix-blend-mode:normal;
}

@media(max-width:900px){
  /* ── NAV ── */
  .rs-superheader__inner{padding:0 20px;}
  .rs-nav__inner{padding:0 20px;}

  /* ── HERO V1 (Price) ── */
  .rs-hero--v1 .rs-hero__grid{
    grid-template-columns:1fr;gap:32px;padding:56px 24px 48px;
  }

  /* ── HERO V2 (Cracked Phone) ── */
  .rs-hero__v3-inner{
    grid-template-columns:1fr;gap:0;padding:56px 24px 0;
  }
  .rs-hero__phone-wrap{height:420px;padding:0 24px;}

  /* ── HERO V3 (Problem/Rotating) ── */
  .rs-hero__v4-inner{
    grid-template-columns:1fr;gap:40px;padding:56px 24px;
  }

  /* ── HERO V4 (Person) ── */
  .rs-hero--v5 .rs-hero__top{
    grid-template-columns:1fr;gap:24px;padding:40px 24px 0;
  }
  .rs-hero--v5 .rs-hero__person{
    height:340px;
  }

  /* ── HERO V5 (Minimal) ── */
  .rs-hero__v6-inner{padding:72px 24px;}

  /* ── HERO V6 (Before/After) ── */
  .rs-hero__v7-inner{
    grid-template-columns:1fr;gap:40px;padding:56px 24px;
  }

  /* ── SERVICES GRID ── */
  /* Devices: 2 per row on tablet, with more breathing room */
  .rs-services-grid{padding:56px 20px;}
  .rs-services-grid__devices{
    grid-template-columns:repeat(3,1fr);gap:10px;margin-bottom:32px;
  }
  /* Service cards: 1 column */
  .rs-services-grid__cards{grid-template-columns:1fr;}
  .rs-services-grid__card-name,.rs-services-grid__card-desc{text-align:center;}

  /* ── HOW IT WORKS ── */
  .rs-how-it-works{padding:56px 24px;}
  .rs-how-it-works__steps{
    grid-template-columns:1fr;gap:0;
  }
  .rs-how-it-works__step{
    padding:28px 0;
    border-bottom:1px solid var(--rs-color-border);
    display:grid;grid-template-columns:48px 1fr;
    grid-template-rows:auto auto;
    column-gap:16px;
    row-gap:8px;
  }
  .rs-how-it-works__step:last-child{border-bottom:none;}
  /* Remove the ::after arrow connector on mobile */
  .rs-how-it-works__step::after{display:none;}
  .rs-how-it-works__num{
    grid-row:1 / 3;align-self:start;margin-bottom:0;
  }
  .rs-how-it-works__step-title{grid-column:2;margin:0;}
  .rs-how-it-works__step-desc{grid-column:2;margin:0;}

  /* ── REVIEWS ── */
  .rs-reviews{padding:56px 24px;}
  .rs-reviews__grid{grid-template-columns:1fr;}
  .rs-reviews__header{flex-direction:column;gap:20px;align-items:flex-start;}

  /* ── FAQ ── */
  .rs-faq{padding:56px 24px;}
  .rs-faq__grid{
    grid-template-columns:1fr;max-width:100%;
    display:flex;flex-direction:column;
  }

  /* ── GUARANTEE ── */
  .rs-guarantee-block{padding:56px 24px;}
  .rs-guarantee-block__inner{
    grid-template-columns:1fr;gap:40px;
  }
  .rs-guarantee-block__metrics{
    grid-template-columns:repeat(2,1fr);
  }

  /* ── CTA BLOCK ── */
  .rs-cta-block{padding:56px 24px;}
  .rs-cta-block__actions{flex-direction:column;gap:12px;}
  .rs-cta-block__btn-main,.rs-cta-block__btn-ghost{
    width:100%;text-align:center;
  }

  /* ── SOCIAL PROOF BAR ── */
  .rs-social-proof-bar{
    display:grid;grid-template-columns:repeat(3,1fr);
    gap:0;padding:20px 16px;
  }
  .rs-social-proof-bar__item{
    padding:10px 8px;font-size:11px;
  }
  .rs-social-proof-bar__icon{font-size:16px;}

  /* ── SECTION containers ── */
  .rs-section{padding:56px 24px;}
  .rs-container{padding:0;}
}

@media(max-width:640px){
  /* ── SUPERHEADER ── */
  .rs-superheader__inner{gap:12px;}
  .rs-superheader__sep{display:none;}
  .rs-superheader__hours{display:none;}

  /* ── NAV ── */
  .rs-nav__inner{padding:0 16px;}

  /* ── HERO SHARED ── */
  .rs-hero__h1{font-size:clamp(32px,9vw,48px);}
  .rs-hero__sub{font-size:16px;}
  .rs-hero__actions{flex-direction:column;gap:10px;}
  .rs-hero__actions .rs-btn--primary,
  .rs-hero__actions .rs-btn--secondary,
  .rs-hero__actions a.rs-btn--primary,
  .rs-hero__actions a.rs-btn--secondary{
    width:100%;text-align:center;
  }

  /* ── HERO V1 (Price) ── */
  .rs-hero--v1 .rs-hero__grid{padding:40px 20px 36px;}

  /* ── HERO V2 (Cracked) ── */
  .rs-hero__v3-inner{padding:40px 20px 0;}
  .rs-hero__phone-wrap{height:360px;}

  /* ── HERO V3 (Problem) ── */
  .rs-hero__v4-inner{padding:40px 20px;}
  .rs-h4-sentence{font-size:clamp(28px,8vw,42px);}
  .rs-h4-right{display:none;} /* hide stat panel on small screens */

  /* ── HERO V4 (Person) ── */
  .rs-hero--v5 .rs-hero__top{padding:36px 20px 0;}
  .rs-hero--v5 .rs-hero__person{height:280px;}

  /* ── HERO V5 (Minimal) ── */
  .rs-hero__v6-inner{padding:56px 20px;}
  .rs-hero--v6 .rs-hero__left{max-width:100%;}

  /* ── HERO V6 (Before/After) ── */
  .rs-hero__v7-inner{padding:40px 20px;}
  .rs-hero__ba-stage{display:none;} /* simplify on small screens */

  /* ── DEVICES: 2 per row on phone ── */
  .rs-services-grid{padding:48px 16px;}
  .rs-services-grid__devices{
    grid-template-columns:repeat(2,1fr);gap:10px;margin-bottom:28px;
  }
  .rs-services-grid__device{padding:20px 10px 16px;}
  .rs-services-grid__device-render svg{width:100%;max-width:56px;height:auto;}
  .rs-services-grid__device-name{font-size:12px;margin-top:8px;}
  .rs-services-grid__cards{grid-template-columns:1fr;gap:12px;}

  /* ── HOW IT WORKS ── */
  .rs-how-it-works{padding:48px 20px;}

  /* ── REVIEWS ── */
  .rs-reviews{padding:48px 20px;}

  /* ── FAQ ── */
  .rs-faq{padding:48px 20px;}

  /* ── GUARANTEE ── */
  .rs-guarantee-block{padding:48px 20px;}
  .rs-guarantee-block__metrics{grid-template-columns:repeat(2,1fr);gap:16px;}

  /* ── CTA ── */
  .rs-cta-block{padding:48px 20px;}

  /* ── SOCIAL PROOF BAR ── */
  /* 2 per row, drop less important items via nth */
  .rs-social-proof-bar{grid-template-columns:repeat(2,1fr);}
  .rs-social-proof-bar__item:nth-child(5){display:none;}
  .rs-social-proof-bar__item:nth-child(4){display:none;}

  /* ── PRICE ANCHOR ── */
  .rs-price-anchor{
    flex-direction:column;gap:0;
  }
  .rs-price-anchor__divider{width:100%;height:1px;}
  .rs-price-anchor__item{padding:14px 20px;}
  .rs-price-anchor__cta{margin:16px 20px;}

  /* ── SERVICE PAGES ── */
  .rs-service-hero--sh1{padding:40px 20px;}
  /* #3 — in demo mode the fixed demo bar adds height; clear the hero content from under the sticky nav (demo only, client sites unaffected) */
  body.demo-mode .rs-service-hero--sh1{padding-top:80px!important;}
  .rs-service-hero__sh1-inner{
    grid-template-columns:1fr;gap:28px;
  }
  .rs-service-hero__visual-card{display:none;}
  .rs-service-trust-signals{padding:20px 16px;}
  .rs-service-trust-signals__grid{grid-template-columns:1fr 1fr;gap:10px;}
  .rs-what-we-fix{padding:48px 20px;}
  .rs-what-we-fix__grid{grid-template-columns:1fr 1fr;gap:12px;}
  .rs-local-seo-block{padding:48px 20px;}
  .rs-local-seo-block__inner{grid-template-columns:1fr;}
  .rs-local-seo-block__panel{display:none;}
  .rs-related-services{padding:48px 20px;}
  .rs-related-services__grid{grid-template-columns:1fr 1fr;gap:12px;}

  /* ── LOCATION PAGE ── */
  .rs-map-embed__inner{grid-template-columns:1fr;}
  .rs-map-embed__map{height:240px;}
  .rs-services-list__item{
    grid-template-columns:auto 1fr;gap:12px;
    align-items:start;
  }
  .rs-services-list__link{grid-column:2;}

  /* ── BUY / SELL ── */
  .rs-template-hero__inner{grid-template-columns:1fr;}
  .rs-template-visual{display:none;}
  .rs-inventory-grid__items{grid-template-columns:1fr;}
  .rs-what-we-buy__grid{grid-template-columns:1fr 1fr;}
}

@media(max-width:420px){
  .rs-hero__h1{font-size:30px;}
  .rs-services-grid__devices{grid-template-columns:repeat(2,1fr);}
  .rs-social-proof-bar{grid-template-columns:1fr 1fr;}
  .rs-what-we-fix__grid,.rs-related-services__grid{grid-template-columns:1fr;}
  .rs-service-trust-signals__grid{grid-template-columns:1fr;}
  .rs-what-we-buy__grid{grid-template-columns:1fr;}
}

/* ════════════════════════════════════════════════════
   LOCATIONS INDEX PAGE
════════════════════════════════════════════════════ */

/* ── Page hero (generic simple hero used by locations index, etc.) ── */
.rs-page-hero{
  background:var(--rs-color-bg);
  border-bottom:1px solid var(--rs-color-border);
  padding:72px 0 64px;
}
.rs-page-hero__inner{
  max-width:1320px;margin:0 auto;padding:0 40px;
}
.rs-page-hero .rs-section-kicker{margin-bottom:16px;}
.rs-page-hero__h1{
  font-family:var(--rs-font-heading);font-weight:800;
  font-size:clamp(36px,4.5vw,56px);line-height:1.1;
  color:var(--rs-color-text);letter-spacing:-.03em;
  margin-bottom:18px;
}
.rs-page-hero__sub{
  font-size:18px;color:var(--rs-color-text-muted);
  line-height:1.7;margin-bottom:32px;max-width:600px;
}

/* ── Location cards index ── */
.rs-loc-index{padding:64px 0;}
.rs-loc-index .rs-container{max-width:1320px;margin:0 auto;padding:0 40px;}
.rs-loc-index__grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:24px;
}

.rs-loc-card{
  background:var(--rs-color-surface);
  border:1.5px solid var(--rs-color-border);
  border-radius:var(--rs-card-radius);
  padding:0;overflow:hidden;
  text-decoration:none;color:var(--rs-color-text);
  display:flex;flex-direction:column;
  transition:border-color .2s,box-shadow .2s,transform .18s;
}
.rs-loc-card:hover{
  border-color:var(--rs-color-primary);
  box-shadow:var(--rs-shadow-hover);
  transform:translateY(-3px);
}
.rs-loc-card--coming-soon{
  cursor:default;opacity:.6;
}
.rs-loc-card--coming-soon:hover{
  transform:none;box-shadow:none;border-color:var(--rs-color-border);
}
.rs-loc-card__header{
  padding:24px 24px 16px;
  display:flex;align-items:center;justify-content:space-between;
  border-bottom:1px solid var(--rs-color-border);
}
.rs-loc-card__city{
  font-size:22px;font-weight:800;
  font-family:var(--rs-font-heading);
  color:var(--rs-color-text);letter-spacing:-.02em;
}
.rs-loc-card__badge{
  background:rgba(34,197,94,.12);color:#16a34a;
  font-size:11px;font-weight:700;letter-spacing:.05em;
  text-transform:uppercase;border-radius:100px;
  padding:4px 10px;
}
.rs-loc-card__body{padding:20px 24px;flex:1;}
.rs-loc-card__row{
  display:flex;align-items:flex-start;gap:10px;
  font-size:14px;color:var(--rs-color-text-muted);
  margin-bottom:12px;line-height:1.5;
}
.rs-loc-card__icon{font-size:15px;flex-shrink:0;margin-top:1px;}
.rs-loc-card__services{
  display:flex;flex-wrap:wrap;gap:6px;margin-top:16px;
}
.rs-loc-card__service-tag{
  background:var(--rs-color-bg-alt);color:var(--rs-color-text-muted);
  border:1px solid var(--rs-color-border);
  font-size:11px;font-weight:600;
  border-radius:var(--rs-border-radius-sm);
  padding:3px 8px;
}
.rs-loc-card__footer{
  padding:16px 24px;
  border-top:1px solid var(--rs-color-border);
  font-size:13px;font-weight:700;
  color:var(--rs-color-primary);
}
.rs-loc-card__body--centered{
  display:flex;flex-direction:column;align-items:center;
  justify-content:center;text-align:center;padding:40px 24px;
}
.rs-loc-card__soon-icon{font-size:36px;margin-bottom:16px;}
.rs-loc-card__soon-text{font-size:14px;color:var(--rs-color-text-muted);line-height:1.6;}

/* ── Mobile ── */
@media(max-width:900px){
  .rs-page-hero{padding:56px 0 48px;}
  .rs-page-hero__inner{padding:0 24px;}
  .rs-loc-index .rs-container{padding:0 24px;}
  .rs-loc-index__grid{grid-template-columns:1fr;gap:16px;}
  .rs-loc-index{padding:48px 0;}
}
@media(max-width:640px){
  .rs-page-hero{padding:40px 0 36px;}
  .rs-page-hero__inner{padding:0 20px;}
  .rs-page-hero__sub{font-size:16px;}
  .rs-loc-index .rs-container{padding:0 20px;}
  .rs-loc-index{padding:40px 0;}
  .rs-loc-card__city{font-size:18px;}
}

/* Service hero visual card stretches full height */
.rs-service-hero__visual-card{
  display:flex;flex-direction:column;justify-content:center;
  align-self:stretch;
}
/* Left column vertically centers within stretched grid */
.rs-service-hero__sh1-inner > div:first-child{
  display:flex;flex-direction:column;justify-content:center;
}
/* Mobile: collapse min-height and revert */
@media(max-width:640px){
  .rs-service-hero--sh1{
    min-height:auto;padding:40px 20px;display:block;
  }
  .rs-service-hero__sh1-inner{align-items:start;}
}

/* ════════════════════════════════════════════════════

/* ════════════════════════════════════════════════════
   GLOBAL — mobile-only elements hidden on desktop
════════════════════════════════════════════════════ */
.rs-hero__mob-badges{display:none;}
.rs-hero__mob-phone{display:none;}
.rs-hero__h1--mob{display:none;}

/* Desktop V5 person hero: CSS mask fades right edge so
   black photo bg blends into hero. Production fix: swap
   asset for transparent-bg PNG. */
.rs-hero--v5 .rs-hero__person-figure--photo{
  -webkit-mask-image:linear-gradient(to left,transparent 2%,black 24%);
  mask-image:linear-gradient(to left,transparent 2%,black 24%);
  overflow:visible;
}

/* Services grid card: image at top */
.rs-services-grid__card-icon{display:none!important;}/* legacy emoji — replaced by img */


/* ════════════════════════════════════════════════════
   @media (max-width: 767px)
   Single consolidated mobile block.
   All mobile overrides live here — no other 767px blocks.
════════════════════════════════════════════════════ */
@media(max-width:767px){

  /* ── SUPERHEADER: full-width mobile layout with dual CTAs ── */
  .rs-superheader{
    display:flex!important;
    position:static!important;
    top:auto!important;
    height:80px!important;
    padding:8px 16px!important;
    flex-direction:column!important;
    align-items:stretch!important;
    justify-content:center!important;
    gap:4px!important;
  }
  .rs-superheader__inner{display:none!important;}
  .rs-superheader__mobile-ctas{display:flex!important;flex-direction:column!important;align-items:stretch!important;width:100%!important;gap:5px!important;}
  .rs-superheader__mobile-hours{font-size:11px!important;opacity:.7!important;text-align:center!important;white-space:nowrap!important;}
  .rs-superheader__mobile-btns{display:flex!important;gap:8px!important;width:100%!important;}
  .rs-superheader__mobile-btn{flex:1!important;font-size:13px!important;font-weight:700!important;padding:8px 0!important;min-height:38px!important;border-radius:var(--rs-btn-radius)!important;display:flex!important;align-items:center!important;justify-content:center!important;gap:5px!important;text-decoration:none!important;white-space:nowrap!important;}
  .rs-superheader__mobile-btn--call{background:rgba(255,255,255,.12)!important;color:#fff!important;border:1px solid rgba(255,255,255,.2)!important;}
  .rs-superheader__mobile-btn--cta{background:var(--rs-color-primary)!important;color:#fff!important;}
  /* In demo-mode the superheader top shifts — handled by body.demo-mode rule above */

  /* ══════════════════════════════════════
     NAV — CSS Grid: logo | spacer | hamburger (CTA moved to superheader on mobile)
     Nav sticks below 72px superheader on mobile.
  ══════════════════════════════════════ */
  .rs-nav{top:80px!important;}
  .rs-nav__inner{
    grid-column:1 / -1!important;
    display:grid!important;
    grid-template-columns:auto 1fr auto!important;
    column-gap:8px!important;
    align-items:center!important;
    padding:0 14px!important;
    height:56px!important;
    width:100%!important;
    position:static!important;
    justify-content:unset!important;
    gap:0!important;
    box-sizing:border-box!important;
  }
  .rs-nav__logo,
  #page .rs-headerstack nav.rs-nav:first-of-type .rs-nav__logo{
    grid-column:1!important;
    justify-self:start!important;
    align-self:center!important;
    display:flex!important;
    align-items:center!important;
    white-space:nowrap!important;
    overflow:visible!important;
    max-width:100%!important;
    min-width:0!important;
    flex-shrink:unset!important;
    z-index:auto!important;
    font-size:16px!important;
  }
  /* Nav CTA hidden on mobile — appears in superheader instead */
  .rs-nav__inner .rs-nav__cta,
  .rs-nav__inner > .rs-nav__cta,
  #page .rs-headerstack nav.rs-nav:first-of-type .rs-nav__cta,
  .rs-nav__cta--desktop-only{
    display:none!important;
  }
  .rs-mobile-menu-toggle{
    display:flex!important;
    justify-self:end!important;
    align-self:center!important;
    margin-left:0!important;
    grid-column:3!important;
  }
  .rs-nav__links,
  .rs-nav__inner .rs-nav__right{display:none!important;}

  /* ── Headline toggle (V3 cycling word hero) ── */
  .rs-hero__h1--desk{display:none!important;}
  .rs-hero__h1--mob{display:block!important;}

  /* ── Hero container: 20px side padding (services, location, about pages) ── */
  .rs-hero .rs-container{
    padding-left:20px!important;
    padding-right:20px!important;
  }

  /* ── Star rating: prevent word-wrap in narrow text column ── */
  .rs-hero__trust{
    font-size:11px!important;
    white-space:nowrap!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    max-width:100%!important;
  }

  /* ══════════════════════════════════════
     V1 PRICE HERO — fix double-padding
     Demo-bar adds clamp(24px) to outer element AND
     rs-hero__grid has its own padding → combined ~44px.
     Zero outer, keep 20px only on grid.
  ══════════════════════════════════════ */
  #hero-v1 .rs-hero--v1{padding-left:0!important;padding-right:0!important;}
  .rs-hero--v1 .rs-hero__grid{
    padding-left:20px!important;padding-right:20px!important;
    max-width:100%!important;width:100%!important;box-sizing:border-box!important;
  }
  .rs-hero--v1 .rs-hero__panel,
  #hero-v1 .rs-hero__panel{
    width:100%!important;max-width:none!important;
    margin:20px 0 0 0!important;box-sizing:border-box!important;border-radius:12px!important;
  }

  /* ══════════════════════════════════════
     V3 DARK CRACKED PHONE — cinematic mobile
  ══════════════════════════════════════ */
  .rs-hero--v3{
    background:#0d1117!important;min-height:0!important;
    overflow:hidden!important;position:relative!important;
  }
  /* Side-by-side on mobile — no overlay gradient/scrim needed */
  .rs-hero--v3::before{
    content:'';position:absolute;inset:0;z-index:2;pointer-events:none;
    background:none;
  }
  .rs-hero--v3::after{
    content:'';position:absolute;top:0;left:0;right:0;height:50%;z-index:2;
    pointer-events:none;
    background:none;
  }
  .rs-hero--v3 .rs-hero__v3-inner,
  .rs-hero__v3-inner{
    display:flex!important;flex-direction:row!important;align-items:flex-start!important;position:relative!important;
    min-height:0!important;padding:80px 14px 32px!important;
    grid-template-columns:unset!important;gap:10px!important;overflow:visible!important;
  }
  .rs-hero--v3 .rs-hero__left{
    position:relative!important;top:auto!important;left:auto!important;
    flex:1 1 0!important;width:auto!important;min-width:0!important;z-index:3!important;padding:0!important;
  }
  .rs-hero--v3 .rs-hero__checks{display:none!important;}
  .rs-hero--v3 .rs-hero__actions{
    flex-direction:column!important;align-items:center!important;gap:8px!important;margin-top:16px!important;
  }
  .rs-hero--v3 .rs-hero__actions .rs-btn--primary,
  .rs-hero--v3 .rs-hero__actions .rs-btn--secondary{
    width:100%!important;max-width:200px!important;text-align:center!important;
    padding:11px 16px!important;font-size:14px!important;
  }
  .rs-hero--v3 .rs-hero__phone-wrap,
  .rs-hero__phone-wrap{
    position:relative!important;right:auto!important;bottom:auto!important;
    flex:0 0 42%!important;width:42%!important;height:auto!important;min-width:0!important;
    display:flex!important;justify-content:center!important;align-items:center!important;align-self:center!important;margin-top:0!important;
    padding:0!important;overflow:visible!important;z-index:1!important;
  }
  .rs-hero--v3 .rs-hero__phone,
  .rs-hero__phone{
    transform:none!important;margin:0!important;
    width:100%!important;max-width:150px!important;
    height:auto!important;aspect-ratio:232/500!important;
  }
  .rs-hero--v3 .rs-hero__phone-screen{border-radius:40px!important;}
  .rs-hero--v3 .rs-hero__floats{display:none!important;}
  .rs-hero__mob-badges--v3{display:none!important;}/* badges removed: too cluttered at mobile */
  /* V3 text + badge colors: use variant primary token */
  .rs-hero--v3 .rs-hero__badge{
    background:var(--rs-color-primary-light,rgba(187,37,37,.1))!important;
    border-color:var(--rs-color-border-strong,rgba(187,37,37,.2))!important;
    color:var(--rs-color-primary,#bb2525)!important;
  }
  .rs-hero--v3 .rs-hero__badge::before{background:var(--rs-color-primary,#bb2525)!important;}
  .rs-hero--v3 .rs-hero__h1--mob{color:#fcf4f4!important;}
  .rs-hero__cycle-word{color:var(--rs-color-primary,#bb2525)!important;}
  .rs-hero--v3 .rs-hero__sub{color:#94a3b8!important;}
  .rs-hero--v3 .rs-hero__trust{color:#64748b!important;}
  .rs-hero--v3 .rs-hero__stars{color:#f59e0b!important;}
  .rs-hero--v3 .rs-hero__floats{display:none!important;}
  .rs-hero__mob-badges--v3{display:none!important;}/* badges removed: too cluttered at mobile */
  /* V3 text + badge colors: use variant primary token */
  .rs-hero--v3 .rs-hero__badge{
    background:var(--rs-color-primary-light,rgba(187,37,37,.1))!important;
    border-color:var(--rs-color-border-strong,rgba(187,37,37,.2))!important;
    color:var(--rs-color-primary,#bb2525)!important;
  }
  .rs-hero--v3 .rs-hero__badge::before{background:var(--rs-color-primary,#bb2525)!important;}
  .rs-hero--v3 .rs-hero__h1--mob{color:#fcf4f4!important;}
  .rs-hero__cycle-word{color:var(--rs-color-primary,#bb2525)!important;}
  .rs-hero--v3 .rs-hero__sub{color:#94a3b8!important;}
  .rs-hero--v3 .rs-hero__trust{color:#64748b!important;}
  .rs-hero--v3 .rs-hero__stars{color:#f59e0b!important;}
  /* V3 CTAs — stacked full width */
  .rs-hero--v3 .rs-hero__actions{
    flex-direction:column!important;gap:10px!important;
    align-items:stretch!important;margin-top:20px!important;
  }
  .rs-hero--v3 .rs-hero__actions .rs-btn--primary{
    width:100%!important;text-align:center!important;
    background:var(--rs-color-primary)!important;color:#fff!important;
  }
  .rs-hero--v3 .rs-hero__actions .rs-btn--secondary{
    width:100%!important;text-align:center!important;
    color:var(--rs-color-primary,#bb2525)!important;
    border-color:var(--rs-color-primary,#bb2525)!important;opacity:.85!important;
  }

  /* ══════════════════════════════════════
     V4 PROBLEM HERO — text-only dark layout
     No phone image. Bold cycling word + animated underline.
     Clear differentiation from V3 (no phone chassis).
  ══════════════════════════════════════ */
  .rs-hero__mob-phone--v4{display:none!important;}
  .rs-hero--v4{
    min-height:480px!important;display:flex!important;
    align-items:center!important;overflow:hidden!important;
  }
  .rs-hero--v4::before{background:none!important;}
  .rs-hero--v4::after{display:none!important;}
  .rs-hero--v4 .rs-hero__v4-inner,
  .rs-hero__v4-inner{
    display:flex!important;flex-direction:column!important;align-items:stretch!important;justify-content:center!important;
    min-height:0!important;padding:64px 16px 72px!important;
  }
  .rs-hero--v4 .rs-h4-left{
    position:static!important;width:100%!important;
    top:auto!important;left:auto!important;text-align:left!important;
  }
  .rs-h4-right{display:none!important;}
  .rs-h4-eyebrow{color:var(--rs-color-primary,#bb2525)!important;font-size:11px!important;margin-bottom:28px!important;}
  .rs-h4-sentence{font-size:clamp(28px,7vw,44px)!important;margin-bottom:32px!important;line-height:1.1!important;}
  .rs-h4-sentence-static{color:rgba(240,246,255,.55)!important;font-size:clamp(22px,6vw,30px)!important;}
  .rs-h4-rotating-wrap{height:clamp(40px,11vw,52px)!important;min-height:0!important;overflow:hidden!important;margin:6px 0!important;}
  .rs-h4-rotating-word{font-size:clamp(26px,8vw,36px)!important;white-space:nowrap!important;line-height:1.15!important;}
  .rs-h4-rotating-word.active{color:var(--rs-color-primary,#bb2525)!important;position:relative!important;display:inline-block!important;font-size:clamp(26px,8vw,36px)!important;line-height:1.15!important;white-space:nowrap!important;}
  .rs-h4-rotating-word.active::after{
    content:''!important;display:block!important;position:absolute!important;
    bottom:-4px!important;left:0!important;height:2px!important;width:100%!important;
    background:var(--rs-color-primary,#bb2525)!important;
    border-radius:999px!important;
    animation:v4-underline 2800ms infinite!important;
  }
  @keyframes v4-underline{
    0%{transform:scaleX(0);opacity:0;}
    15%{transform:scaleX(1);opacity:1;}
    80%{transform:scaleX(1);opacity:1;}
    100%{transform:scaleX(0);opacity:0;transform-origin:right;}
  }
  .rs-hero--v4 .rs-h4-cta{
    display:flex!important;flex-direction:column!important;align-items:center!important;
    gap:8px!important;margin-top:28px!important;
  }
  .rs-hero--v4 .rs-h4-cta .rs-btn--primary{width:100%!important;max-width:220px!important;text-align:center!important;padding:11px 16px!important;font-size:14px!important;}
  .rs-hero--v4 .rs-h4-cta .rs-h4-link{
    display:block!important;width:100%!important;max-width:220px!important;text-align:center!important;
    padding:11px 16px!important;box-sizing:border-box!important;
    border:1.5px solid var(--rs-color-primary,#bb2525)!important;
    border-radius:var(--rs-btn-radius)!important;
    color:var(--rs-color-primary,#bb2525)!important;
    font-size:15px!important;font-weight:600!important;opacity:.85!important;
  }
  .rs-hero--v4 .rs-h4-trust{color:#64748b!important;margin-top:16px!important;}
  .rs-hero--v4 .rs-h4-trust-stars{color:#f59e0b!important;}

  /* ══════════════════════════════════════
     V5 PERSON HERO — white background, top-right image
  ══════════════════════════════════════ */
  .rs-hero--v5{
    background:#ffffff!important;min-height:0!important;
    overflow:hidden!important;position:relative!important;
  }
  .rs-hero--v5 .rs-hero__top{
    display:block!important;position:relative!important;
    min-height:0!important;padding:24px 16px 0!important;overflow:visible!important;
  }
  .rs-hero--v5 .rs-hero__top::after{
    content:'';position:absolute;inset:0;z-index:2;pointer-events:none;
    background:none;
  }
  /* Person image: full-width below text, shown in full and blended into bg (not cropped) */
  .rs-hero--v5 .rs-hero__person{
    position:relative!important;top:auto!important;right:auto!important;
    bottom:auto!important;width:100%!important;height:auto!important;align-self:auto!important;
    display:block!important;z-index:1!important;margin:8px 0 0!important;padding:0!important;
  }
  .rs-hero--v5 .rs-hero__person-figure--photo{
    width:100%!important;height:auto!important;
    -webkit-mask-image:none!important;mask-image:none!important;
  }
  .rs-hero--v5 .rs-hero__person-figure--photo img{
    width:100%!important;height:auto!important;max-height:400px!important;
    object-fit:contain!important;object-position:center bottom!important;
    mix-blend-mode:normal!important;border-radius:0!important;
  }
  /* Text block */
  .rs-hero--v5 .rs-hero__left{
    position:relative!important;top:auto!important;left:auto!important;
    width:100%!important;z-index:3!important;padding:0!important;max-width:none!important;
  }
  .rs-hero--v5 .rs-hero__h1{color:#0f172a!important;}
  .rs-hero--v5 .rs-hero__sub{color:#475569!important;}
  /* CTAs */
  .rs-hero--v5 .rs-hero__actions{
    flex-direction:column!important;gap:8px!important;
    align-items:center!important;margin-top:20px!important;
  }
  .rs-hero--v5 .rs-hero__actions .rs-btn--primary,
  .rs-hero--v5 .rs-hero__actions .rs-btn--secondary{
    width:100%!important;max-width:220px!important;text-align:center!important;
    padding:11px 16px!important;font-size:14px!important;
  }
  /* #11 — drop the hero eyebrow/blurb on mobile homepages (per Matt) */
  .rs-hero__badge,
  .rs-h4-eyebrow{display:none!important;}
  /* Mobile badges */
  .rs-hero__mob-badges--v5{
    display:flex!important;flex-direction:column!important;gap:8px!important;
    position:absolute!important;right:12px!important;bottom:100px!important;z-index:4!important;
  }
  .rs-hero__mob-badge{
    display:flex!important;align-items:center!important;gap:8px!important;
    border-radius:10px!important;padding:6px 10px!important;
    white-space:nowrap!important;
    background:#ffffff!important;border:1px solid rgba(0,0,0,.06)!important;
    box-shadow:0 2px 8px rgba(0,0,0,.12)!important;
  }
  .rs-hero__mob-badge-icon{font-size:16px!important;flex-shrink:0!important;}
  .rs-hero__mob-badge-title{font-size:12px!important;font-weight:700!important;color:#0f172a!important;line-height:1.2!important;}
  .rs-hero__mob-badge-sub{font-size:10px!important;color:#64748b!important;line-height:1.2!important;}

  /* ══════════════════════════════════════
     V7 BEFORE/AFTER — show "after" phone only
  ══════════════════════════════════════ */
  .rs-hero--v7{
    min-height:0!important;overflow:hidden!important;
    position:relative!important;background:var(--rs-color-bg)!important;
  }
  /* Side-by-side: text+buttons left, phone right, no overlap (flex row) */
  .rs-hero--v7 .rs-hero__v7-inner{
    display:flex!important;flex-direction:row!important;align-items:flex-start!important;
    gap:10px!important;position:relative!important;
    min-height:0!important;padding:80px 14px 32px!important;
  }
  .rs-hero--v7 .rs-hero__left{
    position:relative!important;top:auto!important;left:auto!important;
    flex:1 1 0!important;width:auto!important;min-width:0!important;z-index:3!important;padding:0!important;
  }
  .rs-hero--v7 .rs-hero__checks{display:none!important;}
  .rs-hero--v7 .rs-hero__actions{
    flex-direction:column!important;align-items:center!important;gap:8px!important;margin-top:16px!important;
  }
  .rs-hero--v7 .rs-hero__actions .rs-btn--primary,
  .rs-hero--v7 .rs-hero__actions .rs-btn--secondary{
    width:100%!important;max-width:200px!important;text-align:center!important;
    padding:11px 16px!important;font-size:14px!important;
  }
  .rs-hero--v7::before{
    content:'';position:absolute;inset:0;z-index:2;pointer-events:none;
    background:none;
  }
  .rs-hero__ba-stage{
    display:flex!important;justify-content:center!important;align-items:center!important;align-self:center!important;position:relative!important;
    right:auto!important;bottom:auto!important;flex:0 0 42%!important;width:42%!important;margin-top:0!important;
    min-height:0!important;height:auto!important;z-index:1!important;overflow:visible!important;
  }
  .rs-ba-phone--before{display:none!important;}
  .rs-ba-phone--after{
    transform:none!important;position:relative!important;
    width:100%!important;height:auto!important;
    aspect-ratio:226/486!important;border-radius:22px!important;max-width:150px!important;
  }
  .rs-ba-phone--after .rs-ba-phone__screen{border-radius:18px!important;}
  .rs-ba-label--diagnostic{display:none!important;}
  .rs-ba-label--time{
    top:6px!important;right:2px!important;bottom:auto!important;
    left:auto!important;padding:5px 7px!important;border-radius:8px!important;
    font-size:9px!important;z-index:4!important;min-width:0!important;
  }
  .rs-ba-label--warranty{
    bottom:6px!important;right:2px!important;left:auto!important;top:auto!important;
    padding:5px 7px!important;border-radius:8px!important;
    font-size:9px!important;z-index:4!important;min-width:0!important;
  }

  /* ══════════════════════════════════════
     CYCLING WORD (V3 cycling span)
  ══════════════════════════════════════ */
  .rs-hero__cycle-wrap{display:inline-block!important;}
  .rs-hero__cycle-word{
    display:inline-block!important;
    color:var(--rs-color-primary,#bb2525)!important;
    transition:opacity 200ms ease,transform 200ms ease!important;
    font-style:italic!important;
  }

  /* ══════════════════════════════════════
     MOBILE MENU — Services accordion
  ══════════════════════════════════════ */
  .rs-mobile-menu-panel__accordion{
    display:flex;align-items:center;justify-content:space-between;
    width:100%;padding:14px 16px;
    background:var(--rs-color-surface);color:var(--rs-color-text);
    border:1px solid var(--rs-color-border);border-radius:12px;
    font-family:var(--rs-font-body);font-size:15px;font-weight:700;
    text-align:left;cursor:pointer;
  }
  .rs-mobile-menu-panel__chevron{
    display:inline-block;transition:transform 200ms ease;font-size:12px;opacity:.5;
  }
  .rs-mobile-menu-panel__accordion.is-open .rs-mobile-menu-panel__chevron{transform:rotate(90deg);}
  .rs-mobile-menu-panel__sub{
    overflow:hidden;max-height:0;
    transition:max-height 200ms ease,padding 150ms ease;
    display:flex;flex-direction:column;gap:6px;padding:0;
  }
  .rs-mobile-menu-panel__sub.is-open{max-height:480px;padding-top:6px;}
  .rs-mobile-menu-panel__sub-link{
    display:block;padding:12px 16px;
    background:var(--rs-color-bg-alt);border:1px solid var(--rs-color-border);
    border-radius:10px;font-family:var(--rs-font-body);font-size:14px;font-weight:600;
    color:var(--rs-color-text);
  }
  .rs-mobile-menu-panel__inner{
    display:flex;flex-direction:column;gap:8px;
    padding:16px;
  }
  .rs-mobile-menu-panel__link{
    display:block;padding:14px 16px;
    background:var(--rs-color-surface);border:1px solid var(--rs-color-border);
    border-radius:12px;font-family:var(--rs-font-body);font-size:15px;font-weight:600;
    color:var(--rs-color-text);text-decoration:none;
  }
  .rs-mobile-menu-panel__cta{
    display:block;padding:15px 16px;margin-top:4px;
    background:var(--rs-color-primary);border-radius:12px;
    font-family:var(--rs-font-body);font-size:15px;font-weight:700;
    color:#fff;text-decoration:none;text-align:center;
  }

  /* ══════════════════════════════════════
     FOOTER — single column + accordion columns
  ══════════════════════════════════════ */
  .rs-footer__inner{grid-template-columns:1fr!important;gap:0!important;}
  .rs-footer__col{border-bottom:1px solid rgba(255,255,255,.07);padding:16px 0;}
  .rs-footer__col--brand{padding-bottom:20px;border-bottom:1px solid rgba(255,255,255,.1);margin-bottom:4px;}
  .rs-footer__col-toggle{cursor:pointer;margin-bottom:0;font-size:13px;color:rgba(255,255,255,.5);padding:4px 0;background:none;border:none;-webkit-appearance:none;appearance:none;width:100%;text-align:left;}
  .rs-footer__col-chevron{display:inline-block;font-size:11px;transition:transform 200ms ease;opacity:.5;}
  .rs-footer__col-toggle.is-open .rs-footer__col-chevron{transform:rotate(90deg);}
  .rs-footer__links--collapsible{
    overflow:hidden;max-height:0;
    transition:max-height 200ms ease;
    display:flex!important;flex-direction:column;gap:0;margin-top:0;
  }
  .rs-footer__links--collapsible.is-open{max-height:300px;margin-top:8px;}
  .rs-footer__links--collapsible a{font-size:15px!important;line-height:2!important;padding:0!important;}
  .rs-footer__bottom{
    flex-direction:column!important;align-items:center!important;
    text-align:center!important;gap:12px!important;padding:20px 0!important;
  }
  .rs-footer__legal-links{
    display:flex!important;flex-wrap:wrap!important;
    justify-content:center!important;gap:8px!important;
  }
  .rs-footer__legal-links a{font-size:13px!important;}

  /* ══════════════════════════════════════
     SERVICES GRID — 2-across, hide descriptions
  ══════════════════════════════════════ */
  .rs-services-grid__cards{grid-template-columns:repeat(2,1fr)!important;gap:12px!important;}
  .rs-services-grid__card-desc{display:none!important;}
  .rs-services-grid__card-body{padding:10px 12px 12px!important;}
  .rs-services-grid__card-name{font-size:14px!important;}

  /* ══════════════════════════════════════
     SMALL PHONE overrides (≤420px inline)
  ══════════════════════════════════════ */
}

/* 420px inline for mobile-specific tweaks */
@media(max-width:420px){
  .rs-hero--v3 .rs-hero__left,
  .rs-hero--v4 .rs-h4-left,
  .rs-hero--v7 .rs-hero__left{left:10px!important;width:62%!important;}
  .rs-hero--v5 .rs-hero__left{left:auto!important;width:100%!important;}
  .rs-hero__phone-wrap{width:90%!important;}
  .rs-hero__phone{max-width:200px!important;}
}

