:root {
  --rs-color-primary: #2563eb;
  --rs-color-primary-dark: #1d4ed8;
  --rs-color-primary-light: #eff6ff;
  --rs-color-secondary: #f59e0b;
  --rs-color-bg: #fafafa;
  --rs-color-bg-alt: #f0f6ff;
  --rs-color-text: #0f0f0f;
  --rs-color-text-muted: #6b7280;
  --rs-color-border: #e8e8e8;
  --rs-color-white: #ffffff;
  --rs-color-black: #000000;
  --rs-font-heading: 'Plus Jakarta Sans',sans-serif;
  --rs-font-body: 'Plus Jakarta Sans',sans-serif;
  --rs-font-size-base: 16px;
  --rs-font-size-sm: 14px;
  --rs-font-size-lg: 18px;
  --rs-font-size-xl: 24px;
  --rs-font-size-2xl: 32px;
  --rs-font-size-3xl: 48px;
  --rs-font-size-4xl: 64px;
  --rs-line-height-base: 1.6;
  --rs-line-height-heading: 1.2;
  --rs-space-xs: 4px;
  --rs-space-sm: 8px;
  --rs-space-md: 16px;
  --rs-space-lg: 24px;
  --rs-space-xl: 48px;
  --rs-space-2xl: 80px;
  --rs-space-3xl: 120px;
  --rs-container-max: 1320px;
  --rs-container-narrow: 760px;
  --rs-border-radius-sm: 4px;
  --rs-border-radius-md: 8px;
  --rs-border-radius-lg: 14px;
  --rs-border-radius-pill: 999px;
  --rs-shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --rs-shadow-md: 0 2px 12px rgba(0,0,0,.06);
  --rs-shadow-lg: 0 8px 28px rgba(37,99,235,.12);
  --rs-transition: all 0.2s ease;
  --rs-color-accent: #f59e0b;
  --rs-color-surface: #ffffff;
  --rs-color-dark: #0f172a;
  --rs-color-dark-alt: #1e293b;
  --rs-color-border-strong: #bfdbfe;
  --rs-nav-bg: #ffffff;
  --rs-nav-text: #0f0f0f;
  --rs-nav-text-muted: #555555;
  --rs-superheader-bg: #0f172a;
  --rs-superheader-text: rgba(255,255,255,.6);
  --rs-btn-radius: 8px;
  --rs-card-radius: 14px;
  --rs-shadow-card: 0 2px 12px rgba(0,0,0,.06);
  --rs-shadow-hover: 0 8px 28px rgba(37,99,235,.12);
}


/* ════════════════════════════════════════════════════
   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;}
}





/* concept / variant panels */
.concept{display:none;}
.concept.active{display:block;}
.hero-variant{display:none;}
.hero-variant.active{display:block;}
.svc-hero-variant{display:none;}
.svc-hero-variant.active{display:block;}

/* ════════════════════════════════════════════════════
   DESIGN TOKEN SYSTEM
   6 theme token blocks — same variable names, diff values
════════════════════════════════════════════════════ */

/* ── A: Precision ── */
.theme-a{
  --rs-color-primary:#2563eb;
  --rs-color-primary-dark:#1d4ed8;
  --rs-color-primary-light:#eff6ff;
  --rs-color-accent:#f59e0b;
  --rs-color-bg:#fafafa;
  --rs-color-bg-alt:#f0f6ff;
  --rs-color-surface:#ffffff;
  --rs-color-dark:#0f172a;
  --rs-color-dark-alt:#1e293b;
  --rs-color-text:#0f0f0f;
  --rs-color-text-muted:#6b7280;
  --rs-color-border:#e8e8e8;
  --rs-color-border-strong:#bfdbfe;
  --rs-font-heading:'Plus Jakarta Sans',sans-serif;
  --rs-font-body:'Plus Jakarta Sans',sans-serif;
  --rs-nav-bg:#ffffff;
  --rs-nav-text:#0f0f0f;
  --rs-nav-text-muted:#555555;
  --rs-superheader-bg:#0f172a;
  --rs-superheader-text:rgba(255,255,255,.6);
  --rs-btn-radius:8px;
  --rs-card-radius:14px;
  --rs-shadow-card:0 2px 12px rgba(0,0,0,.06);
  --rs-shadow-hover:0 8px 28px rgba(37,99,235,.12);
}

/* ── B: Impact ── */
.theme-b{
  --rs-color-primary:#ff3b2f;
  --rs-color-primary-dark:#e02d22;
  --rs-color-primary-light:rgba(255,59,47,.1);
  --rs-color-accent:#ff8c00;
  --rs-color-bg:#050507;
  --rs-color-bg-alt:#0d0d10;
  --rs-color-surface:#13131a;
  --rs-color-dark:#050507;
  --rs-color-dark-alt:#0d0d10;
  --rs-color-text:#ffffff;
  --rs-color-text-muted:rgba(255,255,255,.45);
  --rs-color-border:rgba(255,255,255,.07);
  --rs-color-border-strong:rgba(255,59,47,.4);
  --rs-font-heading:'Barlow Condensed',sans-serif;
  --rs-font-body:'DM Sans',sans-serif;
  --rs-nav-bg:#050507;
  --rs-nav-text:#ffffff;
  --rs-nav-text-muted:rgba(255,255,255,.75);
  --rs-superheader-bg:#ff3b2f;
  --rs-superheader-text:rgba(255,255,255,.9);
  --rs-btn-radius:0px;
  --rs-card-radius:0px;
  --rs-shadow-card:none;
  --rs-shadow-hover:none;
}

/* ── C: Authority ── */
.theme-c{
  --rs-color-primary:#7c3aed;
  --rs-color-primary-dark:#6d28d9;
  --rs-color-primary-light:rgba(124,58,237,.1);
  --rs-color-accent:#a78bfa;
  --rs-color-bg:#f5f5f7;
  --rs-color-bg-alt:#f0eeff;
  --rs-color-surface:#ffffff;
  --rs-color-dark:#1a0a3c;
  --rs-color-dark-alt:#2d1472;
  --rs-color-text:#0f0a1e;
  --rs-color-text-muted:#6b7280;
  --rs-color-border:#eaeaea;
  --rs-color-border-strong:rgba(124,58,237,.3);
  --rs-font-heading:'Sora',sans-serif;
  --rs-font-body:'Sora',sans-serif;
  --rs-nav-bg:#1a0a3c;
  --rs-nav-text:#ffffff;
  --rs-nav-text-muted:rgba(255,255,255,.75);
  --rs-superheader-bg:#7c3aed;
  --rs-superheader-text:rgba(255,255,255,.9);
  --rs-btn-radius:6px;
  --rs-card-radius:12px;
  --rs-shadow-card:0 2px 10px rgba(0,0,0,.06);
  --rs-shadow-hover:0 8px 28px rgba(124,58,237,.12);
}

/* ── D: Network ── */
.theme-d{
  --rs-color-primary:#e63012;
  --rs-color-primary-dark:#c42a0f;
  --rs-color-primary-light:#fff8f7;
  --rs-color-accent:#ff6b35;
  --rs-color-bg:#ffffff;
  --rs-color-bg-alt:#f9fafb;
  --rs-color-surface:#ffffff;
  --rs-color-dark:#0f0f0f;
  --rs-color-dark-alt:#1a1a1a;
  --rs-color-text:#0f0f0f;
  --rs-color-text-muted:#555555;
  --rs-color-border:#f0f0f0;
  --rs-color-border-strong:#ffd0c7;
  --rs-font-heading:'Plus Jakarta Sans',sans-serif;
  --rs-font-body:'Plus Jakarta Sans',sans-serif;
  --rs-nav-bg:#ffffff;
  --rs-nav-text:#0f0f0f;
  --rs-nav-text-muted:#555555;
  --rs-superheader-bg:#0f0f0f;
  --rs-superheader-text:rgba(255,255,255,.65);
  --rs-btn-radius:6px;
  --rs-card-radius:10px;
  --rs-shadow-card:0 1px 4px rgba(0,0,0,.06);
  --rs-shadow-hover:0 6px 20px rgba(230,48,18,.1);
}

/* ── E: Signal ── */
.theme-e{
  --rs-color-primary:#0071e3;
  --rs-color-primary-dark:#005bb5;
  --rs-color-primary-light:#e8f4ff;
  --rs-color-accent:#2997ff;
  --rs-color-bg:#ffffff;
  --rs-color-bg-alt:#f5f5f7;
  --rs-color-surface:#ffffff;
  --rs-color-dark:#000000;
  --rs-color-dark-alt:#1d1d1f;
  --rs-color-text:#1d1d1f;
  --rs-color-text-muted:#6e6e73;
  --rs-color-border:#e8e8e8;
  --rs-color-border-strong:rgba(0,113,227,.3);
  --rs-font-heading:'Manrope',sans-serif;
  --rs-font-body:'Manrope',sans-serif;
  --rs-nav-bg:rgba(255,255,255,.88);
  --rs-nav-text:#1d1d1f;
  --rs-nav-text-muted:rgba(29,29,31,.80);
  --rs-superheader-bg:#1d1d1f;
  --rs-superheader-text:rgba(255,255,255,.55);
  --rs-btn-radius:980px;
  --rs-card-radius:20px;
  --rs-shadow-card:0 2px 8px rgba(0,0,0,.05),0 0 0 1px rgba(0,0,0,.04);
  --rs-shadow-hover:0 8px 32px rgba(0,0,0,.1);
}

/* ── F: Warm Tech ── */
.theme-f{
  --rs-color-primary:#d97706;
  --rs-color-primary-dark:#b45309;
  --rs-color-primary-light:#fff8ef;
  --rs-color-accent:#f59e0b;
  --rs-color-bg:#faf8f4;
  --rs-color-bg-alt:#ffffff;
  --rs-color-surface:#ffffff;
  --rs-color-dark:#1c1814;
  --rs-color-dark-alt:#2a2420;
  --rs-color-text:#1c1814;
  --rs-color-text-muted:#7a6f60;
  --rs-color-border:#ede8df;
  --rs-color-border-strong:#fde68a;
  --rs-font-heading:'Manrope',sans-serif;
  --rs-font-body:'Manrope',sans-serif;
  --rs-nav-bg:#faf8f4;
  --rs-nav-text:#1c1814;
  --rs-nav-text-muted:#7a6f60;
  --rs-superheader-bg:#1c1814;
  --rs-superheader-text:rgba(255,255,255,.55);
  --rs-btn-radius:6px;
  --rs-card-radius:12px;
  --rs-shadow-card:0 2px 12px rgba(0,0,0,.05);
  --rs-shadow-hover:0 8px 24px rgba(217,119,6,.1);
}

/* ════════════════════════════════════════════════════
   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;}
.rs-superheader__cta{
  background:var(--rs-color-primary);color:#fff;
  border:none;padding:5px 14px;font-size:11px;font-weight:700;
  font-family:var(--rs-font-body);border-radius:4px;
}

/* B override — superheader gets clip-path */
.theme-b .rs-superheader__cta{
  clip-path:polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
  border-radius:0;
}

/* ════════════════════════════════════════════════════
   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:0;z-index:700;
  gap:0;
}
.rs-nav__inner{width:100%;max-width:1320px;display:flex;align-items:center;padding:0 40px;gap:0;}
/* B — backdrop blur for dark nav */
.theme-b .rs-nav{
  backdrop-filter:blur(12px);
  background:rgba(5,5,7,.92);
}
/* E — frosted */
.theme-e .rs-nav{
  backdrop-filter:saturate(180%) blur(20px);
}

.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);}

/* B — all-caps condensed logo */
.theme-b .rs-nav__logo{
  font-size:22px;letter-spacing:.04em;text-transform:uppercase;
}

/* 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;
}

/* B — condensed uppercase */
.theme-b .rs-nav__link{
  font-family:'Barlow Condensed',sans-serif;
  font-size:15px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;
}

/* 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;
}
/* B theme dark dropdown */
.theme-b .rs-nav__dropdown{
  background:#0d0d10;
  border-color:rgba(255,255,255,.08);
  box-shadow:0 16px 48px rgba(0,0,0,.4);
}
/* C theme */
.theme-c .rs-nav__dropdown{
  background:#1a0a3c;
  border-color:rgba(255,255,255,.1);
}
/* E theme — frosted */
.theme-e .rs-nav__dropdown{
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(20px);
}

/* 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);
}
.theme-b .rs-nav__dd-col-title{color:rgba(255,59,47,.9);border-bottom-color:rgba(255,255,255,.07);}
.theme-c .rs-nav__dd-col-title{color:#a78bfa;border-bottom-color:rgba(255,255,255,.1);}

.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);
}
.theme-b .rs-nav__dd-item{color:rgba(255,255,255,.55);}
.theme-b .rs-nav__dd-item:hover{background:rgba(255,59,47,.1);color:#ff3b2f;}
.theme-c .rs-nav__dd-item{color:rgba(255,255,255,.6);}
.theme-c .rs-nav__dd-item:hover{background:rgba(124,58,237,.2);color:#c4b5fd;}
.theme-e .rs-nav__dd-item{color:#1d1d1f;}
.theme-e .rs-nav__dd-item:hover{background:#f0f0f5;color:#0071e3;}

.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;
}
.theme-b .rs-nav__dd-item-icon{background:rgba(255,255,255,.05);}
.theme-c .rs-nav__dd-item-icon{background:rgba(255,255,255,.07);}

.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;}
.theme-b .rs-nav__dd-footer{border-top-color:rgba(255,255,255,.07);}
.theme-b .rs-nav__dd-footer-link{color:#ff3b2f;}

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

/* 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;
}
.theme-b .rs-nav__cta{
  clip-path:polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  font-family:'Barlow Condensed',sans-serif;letter-spacing:.06em;text-transform:uppercase;
}
.theme-e .rs-nav__cta{background:#0071e3;border-radius:980px;}

/* ══════════════════════════════════════════════════
   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;}
.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);}
.theme-b .rs-how-it-works .rs-section-title{color:#ffffff;}
/* 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;}

/* theme-b section titles */
.theme-b .rs-section-title{
  font-family:'Barlow Condensed',sans-serif;font-weight:900;
  text-transform:uppercase;letter-spacing:-.01em;font-size:clamp(36px,5vw,52px);
}
.theme-b .rs-section-kicker{font-family:'Barlow Condensed',sans-serif;letter-spacing:.16em;}

/* ════════════════════════════════════════════════════
   BLOCK 1 — HERO INCLUDES
   hero-variant panels inside .rs-hero-slot
════════════════════════════════════════════════════ */
.rs-hero-slot{position:relative;}
.hero-variant{display:none;}
.hero-variant.active{display:block;}
.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;
}
.theme-b .rs-btn--primary{
  clip-path:polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
  font-family:'Barlow Condensed',sans-serif;letter-spacing:.08em;text-transform:uppercase;
  font-size:14px;
}
.theme-b .rs-btn--secondary{
  clip-path:polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  font-family:'Barlow Condensed',sans-serif;letter-spacing:.06em;text-transform:uppercase;
  border:1px solid rgba(255,255,255,.2);color:rgba(255,255,255,.6);font-size:14px;
}
.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;}

/* B hero override — full dark hero */
.theme-b .rs-hero--v1{
  background:var(--rs-color-bg);
  display:block;padding:96px 48px 80px;position:relative;overflow:hidden;
}
.theme-b .rs-hero--v1::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 60% 50% at 70% 50%,rgba(255,59,47,.12) 0%,transparent 70%),
             radial-gradient(ellipse 40% 60% at 20% 80%,rgba(255,120,0,.06) 0%,transparent 60%);
}
.theme-b .rs-hero--v1::after{
  content:'';position:absolute;inset:0;opacity:.04;
  background-image:linear-gradient(rgba(255,255,255,.3) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(255,255,255,.3) 1px,transparent 1px);
  background-size:60px 60px;
}
.theme-b .rs-hero__left{position:relative;z-index:2;max-width:800px;}
.theme-b .rs-hero__h1{
  font-family:'Barlow Condensed',sans-serif;font-weight:900;
  font-size:clamp(72px,10vw,96px);line-height:.92;text-transform:uppercase;
}
.theme-b .rs-hero__h1 .outline{-webkit-text-stroke:2px #fff;color:transparent;}
.theme-b .rs-hero__h1 .accent{color:var(--rs-color-primary);}
.theme-b .rs-hero__badge{
  background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.7);
}
.theme-b .rs-hero__badge::before{background:var(--rs-color-primary);}
.theme-b .rs-hero__sub{color:rgba(255,255,255,.5);font-family:'DM Sans',sans-serif;}
.theme-b .rs-hero__trust{color:rgba(255,255,255,.4);}
.theme-b .rs-hero__stats-row{
  display:flex;gap:44px;margin-top:48px;
  border-top:1px solid rgba(255,255,255,.07);padding-top:36px;
}
.theme-b .rs-hero__stat-big{line-height:1;}
.theme-b .rs-hero__stat-big-n{font-size:48px;font-weight:900;color:#fff;}
.theme-b .rs-hero__stat-big-l{font-size:11px;color:rgba(255,255,255,.35);letter-spacing:.1em;text-transform:uppercase;margin-top:4px;}

/* E hero override — black + glow */
.theme-e .rs-hero--v1{
  background:#000;display:block;padding:88px 48px 72px;
  position:relative;overflow:hidden;min-height:580px;
}
.theme-e .rs-hero--v1::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 50% 70% at 72% 50%,rgba(0,113,227,.16) 0%,transparent 65%);
}
.theme-e .rs-hero__left{position:relative;z-index:2;max-width:560px;}
.theme-e .rs-hero__h1{
  color:#f5f5f7;font-size:clamp(44px,6vw,58px);letter-spacing:-.04em;
}
.theme-e .rs-hero__h1 .blue{color:#2997ff;}
.theme-e .rs-hero__badge{
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);
  color:rgba(255,255,255,.6);
}
.theme-e .rs-hero__badge::before{background:#2997ff;}
.theme-e .rs-hero__sub{color:rgba(255,255,255,.5);}
.theme-e .rs-hero__trust{color:rgba(255,255,255,.38);}
/* floating phone card */
.theme-e .rs-hero__e-phone-card{
  position:absolute;right:8%;top:50%;transform:translateY(-50%);
  width:290px;height:390px;
  background:linear-gradient(160deg,#1a1a2e,#16213e,#0f3460);
  border-radius:38px;
  box-shadow:0 0 0 1px rgba(255,255,255,.06),0 0 60px rgba(0,113,227,.25),0 0 120px rgba(0,113,227,.1);
  display:flex;align-items:center;justify-content:center;z-index:2;
}
.theme-e .rs-hero__e-phone-inner{
  width:230px;height:300px;border-radius:24px;
  background:linear-gradient(145deg,#0a0a1a,#111128);
  border:1px solid rgba(255,255,255,.06);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;padding:20px;
}
.theme-e .rs-hero__e-icon{font-size:42px;}
.theme-e .rs-hero__e-label{font-size:11px;color:rgba(255,255,255,.35);text-align:center;}
.theme-e .rs-hero__e-price{font-size:26px;font-weight:700;color:#fff;text-align:center;}
.theme-e .rs-hero__e-sub{font-size:10px;color:rgba(255,255,255,.28);}
.theme-e .rs-hero__e-btn{
  background:#0071e3;color:#fff;border:none;border-radius:980px;
  padding:8px 20px;font-size:12px;font-weight:600;margin-top:4px;
  font-family:'Manrope',sans-serif;
}

/* ── 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;
}

/* Theme glow */
.theme-a .rs-hero__phone{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),0 0 110px rgba(37,99,235,.2);}
.theme-c .rs-hero__phone{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),0 0 110px rgba(124,58,237,.24);}
.theme-d .rs-hero__phone{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),0 0 110px rgba(230,48,18,.16);}
.theme-e .rs-hero__phone{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),0 0 110px rgba(0,113,227,.22);}
.theme-f .rs-hero__phone{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,.52),0 8px 20px rgba(0,0,0,.32),0 0 80px rgba(0,0,0,.18);}

/* ── 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;}

/* B — glass dark floats */
.theme-b .rs-hero__float{
  background:rgba(18,18,24,.88);border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(16px);
  box-shadow:0 8px 28px rgba(0,0,0,.35),0 0 0 1px rgba(255,255,255,.07);
}
.theme-b .rs-hero__float-title{color:#fff;}
.theme-b .rs-hero__float-sub{color:rgba(255,255,255,.5);}
.theme-b .rs-hero__float--1 .rs-hero__float-dot{background:rgba(255,200,0,.15);}
.theme-b .rs-hero__float--2 .rs-hero__float-dot{background:rgba(255,59,47,.15);}
.theme-b .rs-hero__float--3 .rs-hero__float-dot{background:rgba(34,197,94,.15);}

/* E — bright white with shadow for dark hero */
.theme-e .rs-hero__float{
  background:rgba(255,255,255,.96);
  box-shadow:0 4px 20px rgba(0,0,0,.2),0 0 0 1px rgba(0,0,0,.06);
}

/* 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;
}
.theme-b .rs-hero__check{color:rgba(255,255,255,.6);}
.theme-b .rs-hero__check-mark{background:rgba(255,59,47,.15);color:#ff3b2f;}
.theme-e .rs-hero__check{color:rgba(255,255,255,.55);}
.theme-e .rs-hero__check-mark{background:rgba(0,113,227,.15);color:#2997ff;}

/* ══════════════════════════════════════════════════════════
   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;
}
/* theme-b: condensed all-caps for static lines too */
.theme-b .rs-h4-sentence-static{
  font-family:'Barlow Condensed',sans-serif;
  font-weight:300;letter-spacing:.01em;
  font-size:clamp(32px,4vw,44px);
}

/* 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);
}

/* theme-b condensed variant */
.theme-b .rs-h4-rotating-word{
  font-family:'Barlow Condensed',sans-serif;
  font-weight:900;text-transform:uppercase;
  font-size:clamp(72px,10vw,104px);
  letter-spacing:-.01em;
}

/* 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;
}
.theme-b .rs-h4-stat-number{
  font-family:'Barlow Condensed',sans-serif;font-weight:900;
}

/* 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;
}
.theme-b .rs-h4-mini-stat-n{font-family:'Barlow Condensed',sans-serif;font-weight:900;font-size:26px;}
.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%;}

/* Theme-specific uniform tints */
.theme-a .rs-hero__person-uniform{fill:#1e3a6e;}
.theme-b .rs-hero__person-uniform{fill:#2a0a0a;}
.theme-c .rs-hero__person-uniform{fill:#1a0a3c;}
.theme-d .rs-hero__person-uniform{fill:#1a0a08;}
.theme-e .rs-hero__person-uniform{fill:#001830;}
.theme-f .rs-hero__person-uniform{fill:#1c1208;}



/* ════════════════════════════════════════════════════
   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;
}
.theme-a .rs-social-proof-bar,.theme-c .rs-social-proof-bar,
.theme-d .rs-social-proof-bar,.theme-f .rs-social-proof-bar{
  background:var(--rs-color-dark);
}
.theme-b .rs-social-proof-bar{background:#ff3b2f;}
.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);}
/* theme-b override */
.theme-b .rs-services-grid{background:var(--rs-color-bg-alt);border-top:1px solid rgba(255,255,255,.06);}

.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;
}
/* theme-b device tiles */
.theme-b .rs-services-grid__device{
  background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06);border-radius:0;
}
.theme-b .rs-services-grid__device:hover{
  background:rgba(255,59,47,.08);border-color:rgba(255,59,47,.3);
  transform:none;box-shadow:none;
}
.theme-b .rs-services-grid__device:hover .rs-services-grid__device-render svg{
  transform:none;
}
.theme-b .rs-services-grid__device-name{
  color:#fff;font-family:'Barlow Condensed',sans-serif;
  font-size:14px;letter-spacing:.04em;text-transform:uppercase;
}

/* service cards below device selector */
.rs-services-grid__cards{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.rs-services-grid__card{
  background:var(--rs-color-surface);border-radius:var(--rs-card-radius);
  padding:26px;border:1px solid var(--rs-color-border);
  transition:all .2s;
}
.rs-services-grid__card:hover{border-color:var(--rs-color-primary);box-shadow:var(--rs-shadow-hover);}
.theme-b .rs-services-grid__card{
  background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06);border-radius:0;
  position:relative;overflow:hidden;
}
.theme-b .rs-services-grid__card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:2px;
  background:var(--rs-color-primary);transform:scaleX(0);transition:transform .2s;transform-origin:left;
}
.theme-b .rs-services-grid__card:hover::before{transform:scaleX(1);}
.theme-b .rs-services-grid__card:hover{background:#111118;border-color:transparent;box-shadow:none;}
.rs-services-grid__card-icon{font-size:28px;margin-bottom:14px;display:block;}
.rs-services-grid__card-name{font-size:16px;font-weight:700;color:var(--rs-color-text);margin-bottom:8px;}
.theme-b .rs-services-grid__card-name{font-family:'Barlow Condensed',sans-serif;font-size:20px;text-transform:uppercase;letter-spacing:.02em;color:#fff;}
.rs-services-grid__card-desc{font-size:13px;color:var(--rs-color-text-muted);line-height:1.65;}
.theme-b .rs-services-grid__card-desc{font-family:'DM Sans',sans-serif;color:rgba(255,255,255,.38);}
.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;}

/* ════════════════════════════════════════════════════
   BLOCK 5 — HOW IT WORKS (rs-how-it-works)
════════════════════════════════════════════════════ */
.rs-how-it-works{padding:72px 48px;background:var(--rs-color-bg);}
.theme-b .rs-how-it-works{background:#0d0d10;}
.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;}
.theme-b .rs-how-it-works__step::after{color:rgba(255,255,255,.1);}
.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;
}
.theme-b .rs-how-it-works__num{border-radius:0;clip-path:polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);}
.theme-e .rs-how-it-works__num{border-radius:980px;}
.rs-how-it-works__step-title{font-size:17px;font-weight:700;color:var(--rs-color-text);}
.theme-b .rs-how-it-works__step-title{color:#fff;font-family:'Barlow Condensed',sans-serif;font-size:20px;text-transform:uppercase;letter-spacing:.04em;}
.rs-how-it-works__step-desc{font-size:14px;color:var(--rs-color-text-muted);line-height:1.65;}
.theme-b .rs-how-it-works__step-desc{color:rgba(255,255,255,.38);font-family:'DM Sans',sans-serif;}

/* ════════════════════════════════════════════════════
   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;
}
.theme-b .rs-reviews__card{border-radius:0;border-color:rgba(255,255,255,.06);}
.theme-e .rs-reviews__card{border-radius:16px;}
.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);
}
.theme-b .rs-buy-sell,.theme-e .rs-buy-sell{
  background:var(--rs-color-dark-alt);
  border-color:rgba(255,255,255,.06);
}
.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);
}
.theme-b .rs-buy-sell__card{
  background:rgba(255,255,255,.03);
  border-color:rgba(255,255,255,.07);
}
.theme-b .rs-buy-sell__card:hover{
  border-color:rgba(255,59,47,.35);
  box-shadow:none;
}
.theme-e .rs-buy-sell__card{
  background:var(--rs-color-surface);
  border-radius:20px;
}

/* 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;
}
.theme-b .rs-buy-sell__h,.theme-e .rs-buy-sell__h{color:#fff;}
.theme-b .rs-buy-sell__h{
  font-family:'Barlow Condensed',sans-serif;font-weight:900;
  text-transform:uppercase;font-size:clamp(28px,3.5vw,36px);
}

/* 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;
}
.theme-b .rs-buy-sell__p,.theme-e .rs-buy-sell__p{color:rgba(255,255,255,.45);}

/* 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;
}
.theme-b .rs-buy-sell__bullet,.theme-e .rs-buy-sell__bullet{color:rgba(255,255,255,.6);}

/* 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);}
.theme-b .rs-buy-sell__cta{
  clip-path:polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  font-family:'Barlow Condensed',sans-serif;letter-spacing:.06em;text-transform:uppercase;
}
.theme-e .rs-buy-sell__cta{border-radius:980px;}

/* 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);}
.theme-b .rs-guarantee-block{background:#050507;}
.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;
}
.theme-b .rs-guarantee-block__copy-h{color:#fff;font-family:'Barlow Condensed',sans-serif;font-size:clamp(40px,6vw,56px);text-transform:uppercase;}
.rs-guarantee-block__copy-p{font-size:15px;color:var(--rs-color-text-muted);line-height:1.75;}
.theme-b .rs-guarantee-block__copy-p{color:rgba(255,255,255,.4);font-family:'DM Sans',sans-serif;}
.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);
}
.theme-b .rs-guarantee-block__metric{
  background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06);border-radius:0;
}
.theme-e .rs-guarantee-block__metric{
  background:#1d1d1f;border-color:rgba(255,255,255,.05);border-radius:16px;
}
.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;
}
.theme-b .rs-guarantee-block__metric-n,.theme-e .rs-guarantee-block__metric-n{color:#fff;}
.rs-guarantee-block__metric-n .hi{color:var(--rs-color-primary);}
.theme-e .rs-guarantee-block__metric-n .hi{color:#2997ff;}
.rs-guarantee-block__metric-l{font-size:12px;color:var(--rs-color-text-muted);margin-top:5px;}
.theme-b .rs-guarantee-block__metric-l,.theme-e .rs-guarantee-block__metric-l{color:rgba(255,255,255,.35);}

/* ════════════════════════════════════════════════════
   BLOCK 8 — FAQ (rs-faq)
════════════════════════════════════════════════════ */
.rs-faq{padding:72px 48px;background:var(--rs-color-bg-alt);}
.theme-b .rs-faq{background:#0d0d10;}
.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;
}
.theme-b .rs-faq__item{border-bottom-color:rgba(255,255,255,.07);}
.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;
}
.theme-b .rs-faq__q{color:#fff;}
.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;margin-top:10px;display:none;}
.rs-faq__item--open .rs-faq__a{display:block;}
.rs-faq__item--open .rs-faq__q::after{content:'−';}
.rs-faq__grid{display:flex;flex-direction:column;}

/* ════════════════════════════════════════════════════
   BLOCK 9 — FINAL CTA (rs-cta-block)
════════════════════════════════════════════════════ */
.rs-cta-block{
  background:var(--rs-color-primary);padding:80px 48px;
  text-align:center;
}
.theme-b .rs-cta-block{background:var(--rs-color-surface);}
.theme-e .rs-cta-block{background:var(--rs-color-dark);}
.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;
}
.theme-b .rs-cta-block__h{
  color:#fff;font-family:'Barlow Condensed',sans-serif;font-size:clamp(48px,7vw,72px);
  text-transform:uppercase;
}
.theme-e .rs-cta-block__h{color:#f5f5f7;}
.rs-cta-block__sub{font-size:17px;color:rgba(255,255,255,.75);margin-bottom:32px;}
.theme-e .rs-cta-block__sub{color:rgba(255,255,255,.5);}
.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);
}
.theme-b .rs-cta-block__btn-main{
  clip-path:polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
  font-family:'Barlow Condensed',sans-serif;letter-spacing:.06em;text-transform:uppercase;
  background:var(--rs-color-primary);color:#fff;
}
.theme-e .rs-cta-block__btn-main{background:#0071e3;color:#fff;border-radius:980px;}
.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);
}
.theme-b .rs-cta-block__btn-ghost{
  clip-path:polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  font-family:'Barlow Condensed',sans-serif;
}
.theme-e .rs-cta-block__btn-ghost{border-radius:980px;color:#2997ff;border-color:rgba(41,151,255,.4);}
.rs-cta-block__trust{margin-top:20px;font-size:13px;color:rgba(255,255,255,.5);}

/* ════════════════════════════════════════════════════
   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,.4);
  margin-bottom:18px;
}
.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;
}
.theme-b .rs-service-hero__sh1-h1{
  font-family:'Barlow Condensed',sans-serif;font-weight:900;
  text-transform:uppercase;font-size:clamp(52px,7vw,72px);color:#fff;
}
.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);
}
.theme-b .rs-service-hero__sh1-chip{
  background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.1);color:rgba(255,255,255,.6);
}
/* 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;
}
.theme-b .rs-service-hero__sh1-panel{background:rgba(255,255,255,.04);border-color:rgba(255,255,255,.08);}
.rs-service-hero__sh1-panel-title{font-size:13px;font-weight:700;color:var(--rs-color-text);margin-bottom:16px;}
.theme-b .rs-service-hero__sh1-panel-title{color:#fff;}
.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;
}
.theme-b .rs-service-hero__sh1-price-row{border-bottom-color:rgba(255,255,255,.07);}
.rs-service-hero__sh1-price-row:last-of-type{border-bottom:none;}
.rs-service-hero__sh1-model{color:var(--rs-color-text-muted);}
.theme-b .rs-service-hero__sh1-model{color:rgba(255,255,255,.4);}
.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;
}
.theme-b .rs-service-hero__sh2-h1{font-family:'Barlow Condensed',sans-serif;font-weight:900;text-transform:uppercase;font-size:clamp(56px,8vw,80px);}
.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;
}
.theme-b .rs-service-hero__sh3-h1{font-family:'Barlow Condensed',sans-serif;font-weight:900;text-transform:uppercase;color:#fff;font-size:clamp(52px,7vw,72px);}
.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);
}
.theme-b .rs-service-hero__sh3-step{border-bottom-color:rgba(255,255,255,.08);}
.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;
}
.theme-b .rs-service-hero__sh3-step-num{background:rgba(255,59,47,.15);color:#ff3b2f;}
.rs-service-hero__sh3-step-title{font-size:14px;font-weight:700;color:var(--rs-color-text);margin-bottom:2px;}
.theme-b .rs-service-hero__sh3-step-title{color:#fff;}
.rs-service-hero__sh3-step-desc{font-size:12px;color:var(--rs-color-text-muted);}
.theme-b .rs-service-hero__sh3-step-desc{color:rgba(255,255,255,.35);}
.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;
}
.theme-b .rs-service-hero__sh3-from-badge{background:rgba(255,255,255,.04);border-color:rgba(255,255,255,.08);}
.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);}
.theme-b .rs-service-hero__sh3-from-val{color:#fff;}

/* 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;
}
.theme-b .rs-service-hero__sh4-h1{font-family:'Barlow Condensed',sans-serif;font-weight:900;text-transform:uppercase;font-size:clamp(56px,8vw,88px);}
.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;}
.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;}
.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;}
.rs-service-faq .rs-faq__a{display:block;}
.rs-service-faq .rs-faq__item{cursor:default;}
.rs-service-faq .rs-faq__q::after{display:none;}
.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;}
.theme-b .rs-what-we-fix,.theme-b .rs-local-seo-block,.theme-b .rs-related-services,.theme-b .rs-service-faq{background:var(--rs-color-bg);}
.theme-b .rs-what-we-fix__card,.theme-b .rs-related-services__card,.theme-b .rs-local-seo-block__panel,.theme-b .rs-service-hero__visual-card{background:rgba(255,255,255,.035);border-color:rgba(255,255,255,.08);box-shadow:none;}
.theme-b .rs-what-we-fix__title,.theme-b .rs-related-services__title,.theme-b .rs-service-hero__visual-title{color:#fff;font-family:'Barlow Condensed',sans-serif;text-transform:uppercase;font-size:22px;}
.theme-b .rs-service-copy,.theme-b .rs-what-we-fix__copy,.theme-b .rs-related-services__copy,.theme-b .rs-service-hero__visual-list li{color:rgba(255,255,255,.5);}
.theme-c .rs-service-hero--sh3 .rs-section-title,.theme-c .rs-service-hero--sh3 .rs-service-copy{color:var(--rs-color-text)!important;}
.theme-e .rs-buy-sell__card .rs-buy-sell__h{color:var(--rs-color-text);}
.theme-e .rs-buy-sell__card .rs-buy-sell__p,.theme-e .rs-buy-sell__card .rs-buy-sell__bullet{color:var(--rs-color-text-muted);}
@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;}

/* Normalize H1 hero layout across all concepts so B/E no longer use alternate H1 structures. */
.theme-b .rs-hero--v1,
.theme-e .rs-hero--v1{
  background:var(--rs-color-bg);
  padding:88px 48px 72px;
  display:grid!important;
  grid-template-columns:3fr 2fr;
  gap:72px;
  align-items:center;
  min-height:auto!important;
  overflow:visible;
}
.theme-b .rs-hero--v1::before,
.theme-b .rs-hero--v1::after,
.theme-e .rs-hero--v1::before{display:none!important;}
.theme-b .rs-hero__left,
.theme-e .rs-hero__left{max-width:none;}
.theme-b .rs-hero__h1,
.theme-e .rs-hero__h1{
  font-family:var(--rs-font-heading);
  font-size:clamp(42px,5.5vw,62px);
  line-height:1.07;
  letter-spacing:-.035em;
  text-transform:none;
  color:var(--rs-color-text);
}
.theme-b .rs-hero__h1 em,
.theme-e .rs-hero__h1 em{color:var(--rs-color-primary);}
.theme-b .rs-hero__sub,
.theme-e .rs-hero__sub{color:var(--rs-color-text-muted);}
.theme-b .rs-hero__trust,
.theme-e .rs-hero__trust{color:var(--rs-color-text-muted);}
.theme-b .rs-btn--secondary{color:var(--rs-color-text);border-color:var(--rs-color-border);}

/* 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,#1d4ed8 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;}
.theme-b .rs-ba-label{background:rgba(18,18,24,.94);border-color:rgba(255,255,255,.1);color:#fff;}
.theme-b .rs-ba-label__s{color:rgba(255,255,255,.45);}

/* 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));}
.theme-c .rs-service-hero--sh3 .rs-service-hero__sh3-step-title,
.theme-c .rs-service-hero--sh3 .rs-service-hero__sh3-step-desc,
.theme-c .rs-service-hero--sh3 .rs-service-hero__sh3-from-val{color:var(--rs-color-text)!important;}
.rs-service-price{display:none!important;}


/* ════════════════════════════════════════════════════
   FINAL CLIENT PREVIEW POLISH — v4
   - Move RepairOps back link to far-left control position
   - Repair Concept E contrast on light heroes + Buy/Sell cards
   - Re-center H4 cutout image with no overlap into following row
════════════════════════════════════════════════════ */


/* Concept E: readable hero pills on light hero variants */
.theme-e .rs-hero__badge{
  background:#e8f4ff;
  color:#0071e3;
  border-color:rgba(0,113,227,.28);
  box-shadow:0 1px 0 rgba(0,113,227,.08);
}
.theme-e .rs-hero__badge::before{background:#0071e3;}
/* Keep dark/problem-first variant readable without white-on-white issues */
.theme-e .rs-hero--v4 .rs-hero__badge{
  background:rgba(255,255,255,.08);
  color:rgba(255,255,255,.72);
  border-color:rgba(255,255,255,.14);
  box-shadow:none;
}

/* Concept E: Buy/Sell cards are light, so text must be dark */
.theme-e .rs-buy-sell{background:var(--rs-color-bg-alt);border-color:var(--rs-color-border);}
.theme-e .rs-buy-sell__card{background:#fff;border-color:var(--rs-color-border);}
.theme-e .rs-buy-sell__h{color:#1d1d1f;}
.theme-e .rs-buy-sell__p,
.theme-e .rs-buy-sell__bullet{color:#6e6e73;}

/* 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,#dbeafe,#eef2ff);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;}
.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);}
.theme-b .rs-location-hero,.theme-b .rs-about-hero,.theme-b .rs-services-list,.theme-b .rs-hours-contact,.theme-b .rs-story-block{background:var(--rs-color-bg);}
.theme-b .rs-map-embed,.theme-b .rs-other-locations,.theme-b .rs-community-block,.theme-b .rs-team-block{background:var(--rs-color-bg-alt);}
.theme-b .rs-location-hero__photo,.theme-b .rs-about-hero__photo,.theme-b .rs-map-embed__card,.theme-b .rs-services-list__list,.theme-b .rs-hours-contact__card,.theme-b .rs-other-locations__card,.theme-b .rs-story-card,.theme-b .rs-team-card{background:rgba(255,255,255,.035);border-color:rgba(255,255,255,.08);box-shadow:none;}
.theme-b .rs-real-photo-placeholder__title,.theme-b .rs-services-list__title,.theme-b .rs-hours-contact__row strong,.theme-b .rs-other-locations__city,.theme-b .rs-team-card__name{color:#fff;}
@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;}
.theme-b .rs-template-hero,.theme-b .rs-hours-contact{background:var(--rs-color-bg);}
.theme-b .rs-what-we-buy,.theme-b .rs-inventory-grid,.theme-b .rs-quote-form{background:var(--rs-color-bg-alt);}
.theme-b .rs-template-hero__h1,.theme-b .rs-what-we-buy__title,.theme-b .rs-inventory-card__name,.theme-b .rs-inventory-card__price,.theme-b .rs-quote-form__sidebar h3,.theme-b .rs-quote-form__field{color:#fff;}
.theme-b .rs-what-we-buy__card,.theme-b .rs-inventory-card,.theme-b .rs-quote-form__embed,.theme-b .rs-quote-form__sidebar{background:rgba(255,255,255,.035);border-color:rgba(255,255,255,.08);box-shadow:none;}
@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;}
.theme-b .rs-page-note--public{background:rgba(255,255,255,.04);border-color:rgba(255,255,255,.08);color:rgba(255,255,255,.65);}


/* 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;}
.theme-b .rs-quote-form__step-pill.is-active{background:rgba(255,59,47,.12);border-color:rgba(255,59,47,.45);color:#fff;}
@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}}
.theme-b .rs-quote-form__step-pill,.theme-b .rs-quote-form__section{background:rgba(255,255,255,.035);border-color:rgba(255,255,255,.08);}
.theme-b .rs-quote-form__section-title{color:#fff;}
.theme-b .rs-quote-form__slot{background:rgba(255,255,255,.04);border-color:rgba(255,255,255,.1);color:rgba(255,255,255,.8);}
.theme-b .rs-quote-form__slot:hover,.theme-b .rs-quote-form__slot.is-selected{background:rgba(255,59,47,.12);border-color:rgba(255,59,47,.45);color:#fff;}
@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%;
  }
}



/* EDIT PATCH — sticky nav gap fix
   The superheader scrolls away, but the nav should pin to the viewport top with no see-through gap. */
.rs-nav{top:0!important;z-index:700;background:var(--rs-nav-bg);}
#page.superheader-hidden .rs-nav{top:0!important;}


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


@media(max-width:780px){
    
  /* Client-site nav: compact mobile layout instead of forcing every link into one row. */
  .rs-superheader{height:auto;min-height:36px;padding:7px 16px;gap:10px;flex-wrap:wrap;font-size:11px;}
  .rs-superheader__hours,.rs-superheader__sep{display:none;}
  .rs-superheader__badge{font-size:10px;padding:3px 8px;}
  .rs-superheader__right{margin-left:0;}
  .rs-superheader__cta{display:none;}

  .rs-nav,
  .rs-nav--center,
  .rs-nav--wide{
    height:60px!important;
    min-height:60px;
    padding:0 16px!important;
    display:flex!important;
    align-items:center;
    gap:12px;
    overflow:hidden;
    top:var(--rs-sticky-top,82px);
  }
  .rs-nav__logo{font-size:18px!important;min-width:0;flex:1 1 auto;margin-right:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
  .rs-nav__links{display:none!important;}
  .rs-nav__right{margin-left:auto!important;display:flex!important;flex:0 0 auto;}
  .rs-nav__cta{flex:0 0 auto;padding:10px 14px;font-size:13px;max-width:46vw;overflow:hidden;text-overflow:ellipsis;}

}
@media(max-width:420px){
  .rs-nav__cta{max-width:42vw;padding:10px 12px;font-size:12px;}
  .rs-nav__logo{font-size:17px!important;}
}



/* EDIT PATCH — v16 mobile nav fix
   Keep only the active nav visible on mobile and collapse the client nav to logo + CTA.
   This prevents the three duplicate nav variants from stacking as separate rows. */
.rs-nav[style*="display:none"],
.rs-nav[style*="display: none"]{display:none!important;}
@media(max-width:780px){
  .rs-nav[style*="display:none"],
  .rs-nav[style*="display: none"],
  #nav-center[style*="display:none"],
  #nav-center[style*="display: none"],
  #nav-wide[style*="display:none"],
  #nav-wide[style*="display: none"]{display:none!important;}

  .rs-nav:not([style*="display:none"]):not([style*="display: none"]),
  .rs-nav--center:not([style*="display:none"]):not([style*="display: none"]),
  .rs-nav--wide:not([style*="display:none"]):not([style*="display: none"]){
    display:flex!important;
    height:64px!important;
    min-height:64px!important;
    padding:0 18px!important;
    align-items:center!important;
    justify-content:space-between!important;
    gap:14px!important;
    overflow:hidden!important;
    border-bottom:1px solid var(--rs-color-border)!important;
  }

  .rs-nav__links{display:none!important;}
  .rs-nav__logo,
  .rs-nav--center .rs-nav__logo,
  .rs-nav--wide .rs-nav__logo{
    display:flex!important;
    flex:1 1 auto!important;
    min-width:0!important;
    max-width:calc(100vw - 190px)!important;
    margin:0!important;
    white-space:nowrap!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    font-size:18px!important;
  }
  .rs-nav__right{display:flex!important;margin-left:auto!important;flex:0 0 auto!important;}
  .rs-nav__cta{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    flex:0 0 auto!important;
    width:auto!important;
    max-width:150px!important;
    height:42px!important;
    padding:0 16px!important;
    font-size:13px!important;
    white-space:nowrap!important;
  }

}
@media(max-width:420px){
  .rs-nav__logo{max-width:calc(100vw - 170px)!important;font-size:16px!important;}
  .rs-nav__cta{max-width:136px!important;padding:0 13px!important;font-size:12px!important;}
}


/* 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;}
.rs-mobile-menu-panel{display:none;}
@media(max-width:780px){
  .rs-nav[style*="display:none"],
  .rs-nav[style*="display: none"],
  #nav-center[style*="display:none"],
  #nav-center[style*="display: none"],
  #nav-wide[style*="display:none"],
  #nav-wide[style*="display: none"]{display:none!important;}

  .rs-nav:not([style*="display:none"]):not([style*="display: none"]),
  .rs-nav--center:not([style*="display:none"]):not([style*="display: none"]),
  .rs-nav--wide:not([style*="display:none"]):not([style*="display: none"]){
    display:grid!important;
    grid-template-columns:minmax(0,1fr) auto minmax(44px,1fr)!important;
    align-items:center!important;
    gap:10px!important;
    height:64px!important;
    min-height:64px!important;
    padding:0 16px!important;
    overflow:visible!important;
    position:sticky!important;
    top:0!important;
    z-index:710!important;
  }

  .rs-nav__links{display:none!important;}
  .rs-nav__logo,
  .rs-nav--center .rs-nav__logo,
  .rs-nav--wide .rs-nav__logo{
    grid-column:1!important;
    justify-self:start!important;
    max-width:100%!important;
    min-width:0!important;
    margin:0!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    white-space:nowrap!important;
    font-size:17px!important;
  }

  .rs-nav > .rs-nav__cta{
    grid-column:2!important;
    justify-self:center!important;
  }
  .rs-nav__right{
    grid-column:2!important;
    justify-self:center!important;
    margin:0!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
  }
  .rs-nav__cta{
    height:42px!important;
    max-width:148px!important;
    padding:0 16px!important;
    font-size:13px!important;
    white-space:nowrap!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
  }

  .rs-mobile-menu-toggle{
    display:flex!important;
    grid-column:3!important;
    justify-self:end!important;
  }
  #page.mobile-menu-open .rs-mobile-menu-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg);}
  #page.mobile-menu-open .rs-mobile-menu-toggle span:nth-child(2){opacity:0;}
  #page.mobile-menu-open .rs-mobile-menu-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

  .rs-mobile-menu-panel{
    display:none;
    position:sticky;
    top:64px;
    z-index:705;
    background:var(--rs-nav-bg);
    border-bottom:1px solid var(--rs-color-border);
    box-shadow:0 18px 32px rgba(15,23,42,.12);
  }
  #page.mobile-menu-open .rs-mobile-menu-panel{display:block;}
  .rs-mobile-menu-panel__inner{padding:10px 16px 18px;display:grid;gap:8px;}
  .rs-mobile-menu-panel__link,
  .rs-mobile-menu-panel__cta{
    width:100%;
    border:1px solid var(--rs-color-border);
    background:var(--rs-color-surface);
    color:var(--rs-color-text);
    border-radius:12px;
    padding:14px 16px;
    font-family:var(--rs-font-body);
    font-size:15px;
    font-weight:700;
    text-align:left;
  }
  .rs-mobile-menu-panel__cta{background:var(--rs-color-primary);color:#fff;border-color:var(--rs-color-primary);text-align:center;}
}
@media(max-width:390px){
  .rs-nav:not([style*="display:none"]):not([style*="display: none"]),
  .rs-nav--center:not([style*="display:none"]):not([style*="display: none"]),
  .rs-nav--wide:not([style*="display:none"]):not([style*="display: none"]){grid-template-columns:minmax(0,.9fr) auto minmax(44px,.9fr)!important;padding:0 12px!important;gap:8px!important;}
  .rs-nav__logo{font-size:15px!important;}
  .rs-nav__cta{height:40px!important;max-width:132px!important;padding:0 12px!important;font-size:12px!important;}
}



/* EDIT PATCH — v18 definitive mobile nav fix
   Mobile layout: logo left, CTA centered, hamburger right; menu opens reliably. */
@media(max-width:780px){
  #page{overflow-x:hidden!important;}
  #page > nav.rs-nav{display:none!important;}
  #page > nav.rs-nav:first-of-type{
    display:grid!important;
    grid-template-columns:minmax(86px,1fr) auto minmax(44px,1fr)!important;
    align-items:center!important;
    gap:10px!important;
    height:64px!important;
    min-height:64px!important;
    padding:0 14px!important;
    overflow:visible!important;
    position:sticky!important;
    top:0!important;
    z-index:720!important;
    background:var(--rs-nav-bg)!important;
  }
  #page > nav.rs-nav:first-of-type .rs-nav__links{display:none!important;}
  #page > 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;
  }
  #page > nav.rs-nav:first-of-type > .rs-nav__cta{
    display:inline-flex!important;
    grid-column:2!important;
    justify-self:center!important;
    align-items:center!important;
    justify-content:center!important;
    width:auto!important;
    min-width:118px!important;
    max-width:148px!important;
    height:42px!important;
    padding:0 15px!important;
    font-size:13px!important;
    white-space:nowrap!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
  }
  #page > 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 > 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 > nav.rs-nav:first-of-type > .rs-mobile-menu-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)!important;}
  #page.mobile-menu-open > nav.rs-nav:first-of-type > .rs-mobile-menu-toggle span:nth-child(2){opacity:0!important;}
  #page.mobile-menu-open > nav.rs-nav:first-of-type > .rs-mobile-menu-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)!important;}
  #page > .rs-mobile-menu-panel{
    display:none!important;
    position:sticky!important;
    top:64px!important;
    z-index:715!important;
    background:var(--rs-nav-bg)!important;
    border-bottom:1px solid var(--rs-color-border)!important;
    box-shadow:0 18px 32px rgba(15,23,42,.14)!important;
  }
  #page.mobile-menu-open > .rs-mobile-menu-panel{display:block!important;}
}
@media(max-width:390px){
  #page > nav.rs-nav:first-of-type{grid-template-columns:minmax(74px,1fr) auto minmax(44px,1fr)!important;padding:0 10px!important;gap:8px!important;}
  #page > nav.rs-nav:first-of-type .rs-nav__logo{font-size:15px!important;}
  #page > nav.rs-nav:first-of-type > .rs-nav__cta{min-width:106px!important;max-width:128px!important;padding:0 11px!important;font-size:12px!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;}
body.demo-mode{padding-top:52px;}
.rs-hero{background:var(--rs-color-bg);}
.rs-template-wrapper{background:var(--rs-color-bg);}

/* 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;
}


/* ════════════════════════════════════════════════════
   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:multiply;
}

@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;}

  /* ── 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;}
  .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;}
}

/* ════════════════════════════════════════════════════
   MOBILE FIX — Navbar + Hero V3  (≤768px)
   Superheader hidden · Logo left, hamburger right ·
   Hero V3 stacks cleanly with phone below CTAs
════════════════════════════════════════════════════ */
@media(max-width:768px){

  /* ── SUPERHEADER: hide entirely on mobile ── */
  .rs-superheader{display:none!important;}

  /* ── NAV: logo left · hamburger right · no CTA ──
     rs-nav__inner is the flex container. Hide the CTA,
     use space-between to push logo left and toggle right.
     Padding 12px 20px keeps both off the screen edges. */
  .rs-nav__inner{
    padding:12px 20px!important;
    justify-content:space-between!important;
    align-items:center!important;
    flex-wrap:nowrap!important;
  }
  /* Remove the fixed height so the nav sizes to padding+content */
  .rs-nav,
  #page > nav.rs-nav:first-of-type{
    height:auto!important;
    min-height:0!important;
  }
  /* Hide the Instant Quote CTA button on mobile */
  .rs-nav__inner > .rs-nav__cta,
  .rs-nav__inner .rs-nav__cta,
  .rs-nav__inner > .rs-nav__right{
    display:none!important;
  }
  /* Ensure hamburger is visible and sits in the rightmost position */
  .rs-mobile-menu-toggle{
    display:flex!important;
    flex-shrink:0!important;
  }
  /* Links already hidden at ≤780px — reinforce */
  .rs-nav__links{display:none!important;}
  /* Mobile menu panel: offset below the auto-height nav (≈ 12+40+12 = 64px) */
  #page > .rs-mobile-menu-panel{
    top:64px!important;
  }

  /* ── HERO V3 (Cracked Phone) — single-column stacked layout ──
     Order in DOM is already correct: left content → phone-wrap.
     Fixes: remove tilt transform, auto-height wrap, 80% centered phone,
     hide floating badges, allow phone to bleed to bottom edge. */

  /* No clipping on the section */
  .rs-hero--v3{overflow:visible!important;}

  /* Full-width padding, phone bleeds to bottom edge */
  .rs-hero--v3 .rs-hero__v3-inner,
  .rs-hero__v3-inner{
    padding:48px 20px 0!important;
    grid-template-columns:1fr!important;
    gap:0!important;
    overflow:visible!important;
  }

  /* Phone wrap: auto height, 80% width, centered, no clipping */
  .rs-hero__phone-wrap{
    height:auto!important;
    padding:36px 0 0!important;
    width:80%!important;
    min-width:200px!important;
    margin:0 auto!important;
    overflow:visible!important;
    position:relative!important;
  }

  /* Remove the 14° tilt — it causes the phone to bleed into the text
     column above it on narrow viewports */
  .rs-hero__phone{
    transform:none!important;
    margin:0 auto!important;
  }

  /* Hide the absolutely-positioned floating badges (Ready in 45 min,
     90-day warranty, From $89) on mobile — they clip/overflow the wrap */
  .rs-hero__floats{display:none!important;}
}

/* ── Small phone: slightly shrink the phone chassis ── */
@media(max-width:420px){
  .rs-hero__phone-wrap{width:90%!important;}
  .rs-hero__phone{
    width:200px!important;
    height:430px!important;
    border-radius:38px!important;
  }
  .rs-hero__phone-screen{border-radius:35px!important;}
}
