
:root {
  --bench-blue: #1670d2;
  --bench-blue-dark: #0f4f99;
  --bench-ink: #14243a;
  --bench-text: #35465b;
  --bench-muted: #68788d;
  --bench-line: #dbe4ee;
  --bench-soft: #f5f7fa;
  --bench-white: #ffffff;
  --bench-shadow: 0 18px 50px rgba(20, 36, 58, .08);
}

body.benchmark-theme {
  margin: 0;
  color: var(--bench-text);
  background: #fff;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.benchmark-theme *, body.benchmark-theme *::before, body.benchmark-theme *::after { box-sizing: border-box; }
body.benchmark-theme a { color: inherit; }
body.benchmark-theme .container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
body.benchmark-theme .narrow { width: min(880px, calc(100% - 40px)); }

body.benchmark-theme .site-topbar {
  background: #f7f9fb;
  color: #526177;
  border-bottom: 1px solid var(--bench-line);
}
body.benchmark-theme .topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .76rem;
  font-weight: 600;
}
body.benchmark-theme .topbar-left, body.benchmark-theme .topbar-right { display: flex; align-items: center; gap: 1.15rem; }
body.benchmark-theme .topbar-right a { color: #526177; text-decoration: none; }
body.benchmark-theme .topbar-right a:hover { color: var(--bench-blue); }

body.benchmark-theme .site-header {
  position: relative;
  top: auto;
  z-index: 200;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--bench-line);
  box-shadow: none;
}
body.benchmark-theme .header-inner { min-height: 78px; display: flex; align-items: center; gap: 1rem; }
body.benchmark-theme .brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 272px;
  width: 272px;
  min-width: 272px;
  max-width: 272px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
body.benchmark-theme .brand img {
  display: block;
  width: 258px;
  max-width: 100%;
  height: auto;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
body.benchmark-theme .header-actions { margin-left: auto; display: flex; align-items: center; }
body.benchmark-theme .menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--bench-line);
  border-radius: 10px;
  background: #fff;
  color: var(--bench-ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

body.benchmark-theme .category-bar {
  position: relative;
  z-index: 190;
  background: #fff;
  border-bottom: 1px solid var(--bench-line);
}
body.benchmark-theme .category-scroll {
  min-height: 52px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 4px;
  overflow: visible;
}
body.benchmark-theme .category-scroll > a,
body.benchmark-theme .category-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  min-height: 52px;
  padding: 0 .85rem;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #435268;
  text-decoration: none;
  font: 600 .88rem/1 "Inter", sans-serif;
  white-space: nowrap;
  cursor: pointer;
}
body.benchmark-theme .category-scroll > a:hover,
body.benchmark-theme .category-scroll > a[aria-current="page"],
body.benchmark-theme .category-group.is-current > .category-trigger,
body.benchmark-theme .category-group.open > .category-trigger,
body.benchmark-theme .category-trigger:hover {
  color: var(--bench-ink);
  border-bottom-color: var(--bench-blue);
}
body.benchmark-theme .menu-chevron { color: #8b98aa; font-size: .72rem; transition: transform .16s ease; }
body.benchmark-theme .category-group.open .menu-chevron { transform: rotate(180deg); }
body.benchmark-theme .category-group { position: relative; display: flex; align-items: stretch; }
body.benchmark-theme .category-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 245px;
  padding: 8px;
  display: grid;
  gap: 2px;
  background: #fff;
  border: 1px solid var(--bench-line);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(20,36,58,.14);
}
body.benchmark-theme .category-submenu[hidden] { display: none !important; }
body.benchmark-theme .category-submenu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: calc(50% - 6px);
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid var(--bench-line);
  border-top: 1px solid var(--bench-line);
  transform: rotate(45deg);
}
body.benchmark-theme .category-submenu a {
  position: relative;
  z-index: 1;
  display: block;
  padding: .72rem .78rem;
  border-radius: 9px;
  color: #435268;
  text-decoration: none;
  font-size: .86rem;
  font-weight: 600;
}
body.benchmark-theme .category-submenu a:hover,
body.benchmark-theme .category-submenu a[aria-current="page"] { background: #f3f6fa; color: var(--bench-ink); }

body.benchmark-theme .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .76rem 1.08rem;
  border: 1px solid var(--bench-blue);
  border-radius: 9px;
  background: var(--bench-blue);
  color: #fff;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: none;
  transition: background .16s ease, border-color .16s ease, transform .16s ease;
}
body.benchmark-theme .btn:hover { background: var(--bench-blue-dark); border-color: var(--bench-blue-dark); transform: translateY(-1px); }
body.benchmark-theme .btn.secondary, body.benchmark-theme .btn.ghost {
  background: #fff;
  border-color: #bfcddd;
  color: var(--bench-ink);
}
body.benchmark-theme .btn.secondary:hover, body.benchmark-theme .btn.ghost:hover { background: #f6f8fb; border-color: #aabbd0; }
body.benchmark-theme .btn.big { min-height: 46px; padding: .84rem 1.2rem; font-size: .92rem; }

body.benchmark-theme .hero,
body.benchmark-theme .page-hero.compact {
  position: relative;
  overflow: hidden;
  padding: 62px 0;
  background: linear-gradient(135deg, #f7f9fc 0%, #eef3f8 100%);
  border-bottom: 1px solid var(--bench-line);
}
body.benchmark-theme .hero::after, body.benchmark-theme .page-hero.compact::after { display: none; }
body.benchmark-theme .hero-grid, body.benchmark-theme .remote-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .72fr);
  align-items: center;
  gap: 54px;
}
body.benchmark-theme .hero-copy { max-width: 730px; }
body.benchmark-theme .eyebrow {
  display: block;
  width: auto;
  margin: 0 0 .65rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #607188;
  font: 600 .76rem/1.4 "Inter", sans-serif;
  letter-spacing: .035em;
  text-transform: none;
}
body.benchmark-theme .eyebrow::before { display: none; }
body.benchmark-theme h1, body.benchmark-theme h2, body.benchmark-theme h3, body.benchmark-theme h4 {
  margin-top: 0;
  color: var(--bench-ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  text-wrap: balance;
}
body.benchmark-theme .hero h1, body.benchmark-theme .page-hero.compact h1, body.benchmark-theme .remote-help-hero h1 {
  max-width: 17ch;
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 4vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}
body.benchmark-theme h2 { margin-bottom: .75rem; font-size: clamp(1.65rem, 2.4vw, 2.35rem); line-height: 1.14; letter-spacing: -.03em; }
body.benchmark-theme h3 { margin-bottom: .45rem; font-size: 1.04rem; line-height: 1.35; letter-spacing: -.012em; }
body.benchmark-theme p, body.benchmark-theme li { color: var(--bench-muted); font-size: .96rem; line-height: 1.67; }
body.benchmark-theme .lead, body.benchmark-theme .hero .lead, body.benchmark-theme .page-hero.compact p {
  max-width: 65ch;
  margin: 0;
  color: #506177;
  font-size: 1.03rem;
  line-height: 1.7;
}
body.benchmark-theme .hero-actions { display: flex; flex-wrap: wrap; gap: .65rem; margin: 1.45rem 0 0; }
body.benchmark-theme .hero-proof { display: flex; flex-wrap: wrap; gap: .65rem 1.1rem; margin-top: 1.25rem; color: #607188; }
body.benchmark-theme .hero-proof span { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; font-weight: 600; }
body.benchmark-theme .hero-proof span::before { content: "✓"; display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: #e5effa; color: var(--bench-blue); font-size: .68rem; font-weight: 800; }

body.benchmark-theme .owner-card,
body.benchmark-theme .owner-card.mascot-card.owner-card--semantic,
body.benchmark-theme .utility-mascot {
  width: min(380px, 100%);
  max-width: 380px;
  aspect-ratio: 1 / 1;
  justify-self: end;
  position: relative;
  overflow: hidden;
  border: 1px solid #d7e1ec;
  border-radius: 18px;
  background: #f6f8fb;
  box-shadow: var(--bench-shadow);
}
body.benchmark-theme .owner-card::before { display: none; }
body.benchmark-theme .owner-card img,
body.benchmark-theme .owner-card.mascot-card.owner-card--semantic img,
body.benchmark-theme .utility-mascot img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  padding: 0;
  object-fit: contain;
  object-position: center;
  background: #f6f8fb;
}
body.benchmark-theme .owner-caption { display: none !important; }

body.benchmark-theme .section { padding: 64px 0; background: #fff; }
body.benchmark-theme .section:nth-of-type(even), body.benchmark-theme .split, body.benchmark-theme .booking-section, body.benchmark-theme .remote-instructions-section { background: #f7f9fb !important; }
body.benchmark-theme .section-heading { max-width: 760px; margin: 0 0 2rem; text-align: left; }
body.benchmark-theme .section-heading p { max-width: 65ch; margin: 0; }
body.benchmark-theme .cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
body.benchmark-theme .service-card,
body.benchmark-theme .info-card,
body.benchmark-theme .panel,
body.benchmark-theme .panel.light,
body.benchmark-theme .contact-card,
body.benchmark-theme .booking-card,
body.benchmark-theme .remote-support-card,
body.benchmark-theme .review-card,
body.benchmark-theme .real-review-card,
body.benchmark-theme .config-card,
body.benchmark-theme .desktop-configurator,
body.benchmark-theme .build-selector,
body.benchmark-theme .service-area-card,
body.benchmark-theme .service-area-unified,
body.benchmark-theme .managed-mini-box,
body.benchmark-theme .phone-grid > div,
body.benchmark-theme .phone-box,
body.benchmark-theme .mailing-box,
body.benchmark-theme .parts-link-card,
body.benchmark-theme .slider-wrap,
body.benchmark-theme .spec-grid div,
body.benchmark-theme .service-phone-options a,
body.benchmark-theme .remote-call-card,
body.benchmark-theme .detected-device-box,
body.benchmark-theme .remote-safety-alert,
body.benchmark-theme .quick-step,
body.benchmark-theme .remote-os-guide,
body.benchmark-theme .download-choice,
body.benchmark-theme .instruction-figure,
body.benchmark-theme .mac-choice-box,
body.benchmark-theme .contact-simple-panel,
body.benchmark-theme .contact-mode-box > div,
body.benchmark-theme .availability-strip {
  border: 1px solid var(--bench-line);
  border-radius: 14px;
  background: #fff;
  color: var(--bench-text);
  box-shadow: none;
}
body.benchmark-theme .service-card, body.benchmark-theme .info-card, body.benchmark-theme .panel, body.benchmark-theme .contact-card, body.benchmark-theme .booking-card, body.benchmark-theme .review-card, body.benchmark-theme .real-review-card, body.benchmark-theme .config-card, body.benchmark-theme .quick-step, body.benchmark-theme .download-choice, body.benchmark-theme .contact-simple-panel { padding: 1.35rem; }
body.benchmark-theme .service-card { position: relative; min-height: 190px; display: flex; flex-direction: column; text-decoration: none; transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease; }
body.benchmark-theme .service-card::before { display: none; }
body.benchmark-theme .service-card:hover { transform: translateY(-3px); border-color: #bdd0e5; box-shadow: 0 14px 34px rgba(20,36,58,.08); }
body.benchmark-theme .service-card p { margin-bottom: 1.15rem; }
body.benchmark-theme .service-card span { margin-top: auto; color: var(--bench-blue); font-size: .84rem; font-weight: 700; }
body.benchmark-theme .split-grid, body.benchmark-theme .two-col { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(300px,.7fr); gap: 20px; align-items: stretch; }
body.benchmark-theme .panel:not(.light), body.benchmark-theme .remote-call-card { background: var(--bench-ink); border-color: var(--bench-ink); color: #fff; }
body.benchmark-theme .panel:not(.light) h2, body.benchmark-theme .panel:not(.light) h3, body.benchmark-theme .panel:not(.light) p, body.benchmark-theme .panel:not(.light) li, body.benchmark-theme .remote-call-card h2, body.benchmark-theme .remote-call-card p { color: #fff; }
body.benchmark-theme .check-list { max-width: 760px; margin-top: 1.25rem; }
body.benchmark-theme .check-list li { margin: .55rem 0; padding-left: 1.65rem; }
body.benchmark-theme .check-list li::before { color: var(--bench-blue); }
body.benchmark-theme .availability-strip { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; padding: 1.15rem 1.3rem; }
body.benchmark-theme .availability-copy { display: grid; gap: .15rem; }
body.benchmark-theme .availability-copy strong { color: var(--bench-ink); font-size: .92rem; }
body.benchmark-theme .availability-copy span { color: var(--bench-muted); font-size: .84rem; }
body.benchmark-theme .availability-actions { display: flex; gap: .7rem; }
body.benchmark-theme .availability-actions a { min-width: 145px; padding: .65rem .8rem; border: 1px solid var(--bench-line); border-radius: 9px; text-decoration: none; display: grid; gap: .1rem; }
body.benchmark-theme .availability-actions span { color: var(--bench-muted); font-size: .72rem; }
body.benchmark-theme .availability-actions strong { color: var(--bench-ink); font-size: .88rem; }
body.benchmark-theme .cta-section { padding: 0 0 64px; background: #fff; }
body.benchmark-theme .cta-box { padding: 2rem; border-radius: 16px; background: var(--bench-ink); box-shadow: none; }
body.benchmark-theme .cta-box h2, body.benchmark-theme .cta-box p { color: #fff; }
body.benchmark-theme .cta-box p { max-width: 60ch; }

body.benchmark-theme input, body.benchmark-theme textarea, body.benchmark-theme select {
  width: 100%;
  border: 1px solid #c8d5e3;
  border-radius: 9px;
  padding: .82rem .9rem;
  background: #fff;
  color: var(--bench-ink);
  font: 400 .94rem/1.45 "Inter", sans-serif;
}
body.benchmark-theme input:focus, body.benchmark-theme textarea:focus, body.benchmark-theme select:focus { outline: none; border-color: var(--bench-blue); box-shadow: 0 0 0 3px rgba(22,112,210,.12); }

body.benchmark-theme .site-footer { margin-top: 0; background: #f6f8fb; border-top: 1px solid var(--bench-line); color: var(--bench-text); }
body.benchmark-theme .footer-grid.footer-grid-nav { display: grid; grid-template-columns: minmax(230px,1.35fr) repeat(4,minmax(125px,1fr)); gap: 1.55rem; padding: 3rem 0 2rem; }
body.benchmark-theme .footer-brand { background: transparent; }
body.benchmark-theme .footer-logo { display: block; width: 230px; max-width: 100%; height: auto; margin-bottom: .85rem; background: transparent !important; border: 0 !important; filter: none !important; }
body.benchmark-theme .footer-brand p { max-width: 32ch; margin: 0 0 .85rem; }
body.benchmark-theme .footer-contact-list { display: grid; gap: .38rem; }
body.benchmark-theme .footer-link-group { display: grid; align-content: start; gap: .38rem; }
body.benchmark-theme .footer-link-group h3 { margin-bottom: .25rem; color: var(--bench-ink); font: 700 .88rem/1.35 "Manrope", sans-serif; }
body.benchmark-theme .footer-link-group a, body.benchmark-theme .footer-contact-list a, body.benchmark-theme .site-footer p, body.benchmark-theme .site-footer .small { color: var(--bench-muted); font-size: .82rem; line-height: 1.55; text-decoration: none; }
body.benchmark-theme .footer-link-group a:hover, body.benchmark-theme .footer-contact-list a:hover { color: var(--bench-blue); }
body.benchmark-theme .footer-bottom { padding: 1rem 0 1.25rem; border-top: 1px solid var(--bench-line); color: #8996a6; font-size: .76rem; }
body.benchmark-theme .cookie-notice { border: 1px solid var(--bench-line); border-radius: 12px; box-shadow: 0 12px 36px rgba(20,36,58,.14); }

@media (max-width: 1040px) {
  body.benchmark-theme .category-scroll > a, body.benchmark-theme .category-trigger { padding-inline: .62rem; font-size: .82rem; }
  body.benchmark-theme .footer-grid.footer-grid-nav { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media (max-width: 820px) {
  body.benchmark-theme .topbar-left { display: none; }
  body.benchmark-theme .topbar-inner { justify-content: flex-end; }
  body.benchmark-theme .header-actions { display: none; }
  body.benchmark-theme .menu-toggle { display: grid; place-items: center; }
  body.benchmark-theme .category-bar { display: none; }
  body.benchmark-theme .category-bar.open { display: block; }
  body.benchmark-theme .category-scroll { min-height: 0; display: grid; justify-content: stretch; gap: 0; padding: .5rem 20px 1rem; }
  body.benchmark-theme .category-scroll > a, body.benchmark-theme .category-trigger { width: 100%; min-height: 46px; justify-content: space-between; padding: 0 .25rem; border-bottom: 1px solid var(--bench-line); font-size: .92rem; }
  body.benchmark-theme .category-scroll > a[aria-current="page"], body.benchmark-theme .category-group.is-current > .category-trigger, body.benchmark-theme .category-group.open > .category-trigger { border-bottom-color: var(--bench-line); color: var(--bench-blue); }
  body.benchmark-theme .category-group { display: grid; }
  body.benchmark-theme .category-submenu { position: static; transform: none; min-width: 0; padding: .25rem 0 .55rem .65rem; border: 0; border-bottom: 1px solid var(--bench-line); border-radius: 0; box-shadow: none; }
  body.benchmark-theme .category-submenu::before { display: none; }
  body.benchmark-theme .category-submenu a { padding: .62rem .5rem; }
  body.benchmark-theme .hero-grid, body.benchmark-theme .remote-hero-grid, body.benchmark-theme .split-grid, body.benchmark-theme .two-col { grid-template-columns: 1fr; }
  body.benchmark-theme .owner-card, body.benchmark-theme .owner-card.mascot-card.owner-card--semantic, body.benchmark-theme .utility-mascot { justify-self: start; width: min(340px, 100%); max-width: 340px; }
  body.benchmark-theme .cards-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  body.benchmark-theme .availability-strip { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  body.benchmark-theme .container, body.benchmark-theme .narrow { width: min(100% - 28px, 1180px); }
  body.benchmark-theme .site-topbar { display: none; }
  body.benchmark-theme .header-inner { min-height: 66px; }
  body.benchmark-theme .brand { flex-basis: 220px; width: 220px; min-width: 220px; max-width: 220px; }
  body.benchmark-theme .brand img { width: 212px; }
  body.benchmark-theme .hero, body.benchmark-theme .page-hero.compact { padding: 42px 0; }
  body.benchmark-theme .hero h1, body.benchmark-theme .page-hero.compact h1, body.benchmark-theme .remote-help-hero h1 { font-size: clamp(2rem, 11vw, 2.65rem); }
  body.benchmark-theme .hero .lead, body.benchmark-theme .page-hero.compact p { font-size: .98rem; }
  body.benchmark-theme .hero-actions .btn { width: 100%; }
  body.benchmark-theme .hero-proof { display: grid; }
  body.benchmark-theme .owner-card, body.benchmark-theme .owner-card.mascot-card.owner-card--semantic, body.benchmark-theme .utility-mascot { width: min(310px, 100%); max-width: 310px; }
  body.benchmark-theme .section { padding: 48px 0; }
  body.benchmark-theme .cards-grid { grid-template-columns: 1fr; }
  body.benchmark-theme .availability-actions { width: 100%; display: grid; grid-template-columns: 1fr; }
  body.benchmark-theme .footer-grid.footer-grid-nav { grid-template-columns: 1fr; gap: 1.25rem; }
}


/* Global text-overlap correction */
body.benchmark-theme {
  overflow-x: hidden;
}

body.benchmark-theme :where(
  .container,
  .header-inner,
  .category-scroll,
  .hero-grid,
  .remote-hero-grid,
  .split-grid,
  .two-col,
  .hero-copy,
  .section-heading,
  .cards-grid,
  .review-grid,
  .real-review-grid,
  .service-card,
  .info-card,
  .panel,
  .contact-card,
  .booking-card,
  .review-card,
  .real-review-card,
  .config-card,
  .availability-copy,
  .availability-actions,
  .footer-grid,
  .footer-brand,
  .footer-link-group
) {
  min-width: 0;
}

body.benchmark-theme :where(h1, h2, h3, h4, p, li, a, span, strong, button, label) {
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
}

body.benchmark-theme .hero h1,
body.benchmark-theme .page-hero.compact h1,
body.benchmark-theme .remote-help-hero h1,
body.benchmark-theme .hero h1.title-single-line,
body.benchmark-theme .hero h1.title-medium,
body.benchmark-theme .hero h1.title-long {
  width: auto;
  max-width: 100%;
  white-space: normal !important;
  overflow: visible;
  font-size: clamp(2.15rem, 3.7vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -.04em;
}

body.benchmark-theme h2 {
  line-height: 1.2;
}

body.benchmark-theme h3 {
  line-height: 1.4;
}

body.benchmark-theme p,
body.benchmark-theme li {
  line-height: 1.68;
}

body.benchmark-theme :where(h1, h2, h3, h4, p) {
  margin-top: 0;
}

body.benchmark-theme :where(.service-card, .info-card, .panel, .contact-card, .booking-card, .review-card, .real-review-card, .config-card) > :last-child {
  margin-bottom: 0;
}

body.benchmark-theme .hero-grid,
body.benchmark-theme .remote-hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .72fr);
}

body.benchmark-theme .owner-card,
body.benchmark-theme .owner-card.mascot-card.owner-card--semantic,
body.benchmark-theme .utility-mascot {
  flex: none;
  min-width: 0;
}

body.benchmark-theme .category-trigger,
body.benchmark-theme .category-scroll > a {
  line-height: 1.25;
}

body.benchmark-theme .category-submenu a {
  line-height: 1.35;
}

body.benchmark-theme .footer-grid.footer-grid-nav {
  grid-template-columns: minmax(220px, 1.35fr) repeat(4, minmax(0, 1fr));
}

@media (max-width: 1040px) {
  body.benchmark-theme .hero-grid,
  body.benchmark-theme .remote-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr);
    gap: 34px;
  }

  body.benchmark-theme .footer-grid.footer-grid-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body.benchmark-theme .hero-grid,
  body.benchmark-theme .remote-hero-grid {
    grid-template-columns: 1fr;
  }

  body.benchmark-theme .hero h1,
  body.benchmark-theme .page-hero.compact h1,
  body.benchmark-theme .remote-help-hero h1 {
    font-size: clamp(2rem, 7vw, 2.75rem);
    line-height: 1.14;
  }
}

@media (max-width: 560px) {
  body.benchmark-theme .hero h1,
  body.benchmark-theme .page-hero.compact h1,
  body.benchmark-theme .remote-help-hero h1 {
    font-size: clamp(1.85rem, 9vw, 2.4rem);
    line-height: 1.16;
  }

  body.benchmark-theme .topbar-right,
  body.benchmark-theme .availability-actions {
    min-width: 0;
    width: 100%;
  }
}


/* Footer mailing address */
.footer-mailing-address {
  display: grid;
  gap: .16rem;
  margin: .42rem 0 0;
  color: inherit;
  font-style: normal;
  line-height: 1.48;
}

.footer-mailing-address .footer-address-label {
  margin-bottom: .08rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .72;
}

.footer-mailing-address strong {
  color: inherit;
  font-size: .92rem;
}

.footer-mailing-address span:not(.footer-address-label) {
  font-size: .88rem;
}
