:root {
  --ink: #172033;
  --muted: #5d667a;
  --line: #d9deea;
  --bg: #f3f6fa;
  --green: #11a06d;
  --red: #ff2f5f;
  --navy: #0d1b2f;
  --amber: #f6b73c;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}
a { color: inherit; }
.topbar-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(217,222,234,.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.topbar-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.topbar-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  flex: 0 1 auto;
  min-width: 0;
}
.brand-badge {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #11a06d, #0d8d5d);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 18px rgba(17,160,109,.24);
}
.brand-copy {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}
.brand-dot {
  color: var(--green);
}
.topbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px 0 10px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #dbe3ef;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}
.nav-link__icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: #edf8f2;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  flex: 0 0 30px;
}
.nav-link__text {
  line-height: 1;
}
.nav-link:hover {
  transform: translateY(-1px);
  color: var(--green);
  border-color: rgba(17,160,109,.28);
  box-shadow: 0 10px 22px rgba(17,160,109,.12);
}
.nav-link.is-active {
  color: #fff;
  background: linear-gradient(135deg, #11a06d, #0b8a59);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(17,160,109,.28);
}
.nav-link.is-active .nav-link__icon {
  background: rgba(255,255,255,.18);
  color: #fff;
}
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(17,160,109,.18);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #f7fbf9);
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
}
.menu-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 16px;
}
.menu-icon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded=true] .menu-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle[aria-expanded=true] .menu-icon span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded=true] .menu-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
@media (min-width: 761px) {
  .topbar-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
  }
  .topbar-main {
    display: contents;
  }
  .brand {
    order: 1;
  }
  .topbar-nav {
    order: 2;
    margin-left: auto;
    padding: 6px;
    border-radius: 18px;
    background: #f7f9fc;
    border: 1px solid #e4eaf3;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
  }
  .menu-toggle {
    display: none !important;
  }
}
.site-footer {
  margin-top: 18px;
  background: var(--navy);
  color: #fff;
}
.footer-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 42px 0 28px;
  display: grid;
  grid-template-columns: 1.1fr .8fr 1.1fr;
  gap: 28px;
}
.footer-brand p {
  margin: 12px 0 0;
  color: #d8e4f8;
  max-width: 320px;
}
.footer-nav h3,
.footer-regions h3 {
  margin: 0 0 14px;
  font-size: 18px;
}
.footer-links,
.footer-region-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-links a,
.footer-region-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}
.footer-links a:hover,
.footer-region-links a:hover {
  border-color: var(--green);
  color: #b8f3d8;
}
.footer-bottom {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 16px 0 24px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #d8e4f8;
  font-weight: 700;
}
.footer-bottom a {
  color: #fff;
  text-decoration: none;
}
.service-regions p {
  color: var(--muted);
  font-weight: 700;
}
.region-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.region-card {
  padding: 18px;
  border: 1px solid var(--line);
  background: #fbfcff;
}
.region-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.3;
}
.region-card h3 a {
  text-decoration: none;
}
.region-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.region-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.region-links a:hover {
  border-color: var(--green);
  color: var(--green);
}
.service-regions--compact .region-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.service-regions--compact .region-card {
  padding: 14px;
}

.hero {
  min-height: 58vh;
  display: flex;
  align-items: center;
  padding: 76px 28px 92px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8,18,36,.9), rgba(8,18,36,.66) 54%, rgba(8,18,36,.28)),
    url("shops/tv-shop-workbench.png") center/cover;
}
.hero > div,
.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 800;
  color: #b8f3d8;
}
.hero h1 {
  max-width: 860px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.04;
  margin: 8px 0 18px;
}
.hero p { max-width: 760px; font-size: 20px; }
.primary {
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  padding: 14px 20px;
  cursor: pointer;
  font-size: 16px;
}
.hero-link {
  display: inline-flex;
  align-items: center;
  margin-left: 14px;
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section {
  padding: 44px 34px;
  background: #fff;
  margin-top: 18px;
  border: 1px solid rgba(217,222,234,.9);
}
.section h2 { line-height: 1.2; margin: 0 0 14px; }
.service-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}
.quick-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-left: 5px solid var(--green);
  background: #f7fbf9;
}
.quick-panel strong { font-size: 19px; }
.quick-panel span { color: var(--muted); font-weight: 700; }

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: transparent;
  border: 0;
  padding-left: 0;
  padding-right: 0;
}
.signal-grid div {
  min-height: 220px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
}
.signal-grid b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
}
.signal-grid p { color: var(--muted); }

.article {
  column-count: 2;
  column-gap: 42px;
}
.article h2 {
  column-span: all;
  margin-bottom: 22px;
}
.article p {
  margin: 0 0 18px;
  break-inside: avoid;
}
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--navy);
  color: #fff;
}
.cta-band p { margin: 0; color: #d8e4f8; }
.faq details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
summary { font-weight: 900; cursor: pointer; }
.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
}
.link-grid a {
  display: block;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  font-weight: 800;
}
.link-grid a:hover { border-color: var(--green); color: var(--green); }
.home-actions .link-grid { margin-top: 22px; }
.action-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 4px;
}
.primary-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}
.image-feature {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
  align-items: center;
  padding: 0;
  overflow: hidden;
}
.image-feature img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}
.image-feature > div {
  padding: 36px 34px 36px 0;
}
.section-kicker {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}
.mini-stats {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 14px;
  background: #f7fbf9;
  border-left: 5px solid var(--green);
}
.mini-stats strong { font-size: 26px; }
.mini-stats span { color: var(--muted); font-weight: 800; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: var(--navy);
  color: #fff;
}
.trust-strip div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
}
.trust-strip strong {
  display: block;
  font-size: 25px;
  line-height: 1.1;
}
.trust-strip span { color: #d8e4f8; }
.brand-section p { color: var(--muted); max-width: 860px; }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.brand-grid span {
  display: grid;
  place-items: center;
  min-height: 58px;
  border: 1px solid var(--line);
  background: #fbfcff;
  font-weight: 900;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price-grid h2 {
  grid-column: 1 / -1;
}
.price-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
}
.price-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.reviews h2 {
  grid-column: 1 / -1;
}
.reviews article {
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
}
.reviews b {
  display: block;
  color: var(--amber);
  margin-bottom: 10px;
}
.reviews span {
  color: var(--muted);
  font-weight: 900;
}
.review-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.review-avatar--inline {
  width: 40px;
  height: 40px;
  font-size: 13px;
  flex: 0 0 40px;
}
.context-links .link-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.reviews-marquee {
  overflow: hidden;
}
.marquee-lead {
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 20px;
}
.marquee-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-rtl 42s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 340px;
  flex: 0 0 340px;
  padding: 20px;
  border: 1px solid var(--line);
  background: #fff;
}
.review-avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  flex: 0 0 52px;
}
.review-body b {
  display: block;
  color: var(--amber);
  margin-bottom: 8px;
}
.review-body p {
  margin: 0 0 10px;
  color: var(--ink);
}
.review-body span {
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
}
@keyframes marquee-rtl {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }
  .marquee-viewport {
    mask-image: none;
    overflow: visible;
  }
}
.context-links h3 {
  margin: 0 0 12px;
}
.street-shop {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
  background: #fbfcff;
}
.street-photo {
  min-height: 360px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}
.local-tags,
.term-grid,
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.local-tags span,
.term-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 900;
}
.search-terms p {
  color: var(--muted);
  font-weight: 700;
}
.inline-links {
  margin-top: 18px;
}
.inline-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 13px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.blog-grid h2 {
  grid-column: 1 / -1;
}
.blog-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
}
.blog-grid article span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--green);
  font-weight: 900;
}
.blog-grid h3 {
  margin: 0 0 10px;
  line-height: 1.25;
}
.blog-grid h3 a,
.read-more {
  text-decoration: none;
}
.read-more {
  font-weight: 900;
  color: var(--navy);
}
.blog-post .lead {
  max-width: 880px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 700;
}
.blog-post p {
  max-width: 920px;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  padding: 16px 22px;
  box-shadow: 0 0 0 0 rgba(255,47,95,.65);
  animation: pulse 1.5s infinite;
  cursor: pointer;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(9,18,38,.68);
  padding: 18px;
}
.modal[aria-hidden=false] { display: flex; }
.modal-panel {
  position: relative;
  width: min(560px, 100%);
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 20px 70px rgba(0,0,0,.25);
}
.close {
  position: absolute;
  right: 14px;
  top: 10px;
  border: 0;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
}
form { display: grid; gap: 12px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  font: inherit;
}
textarea { min-height: 120px; resize: vertical; }
.form-status { margin: 0; color: var(--muted); font-weight: 700; }
.human-check label {
  display: grid;
  gap: 6px;
  font-weight: 900;
}
.human-check span {
  color: var(--ink);
}
.submit-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 11000;
  display: block;
  width: min(330px, calc(100vw - 28px));
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .22s ease, transform .22s ease;
}
.submit-toast[aria-hidden=false] {
  opacity: 1;
  transform: translateY(0);
}
.submit-toast > div {
  min-height: 132px;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(0,0,0,.24);
  border: 1px solid rgba(12,24,47,.12);
  border-left: 8px solid var(--navy);
  text-align: left;
  display: grid;
  align-content: center;
  gap: 8px;
}
.submit-toast strong {
  display: block;
  font-size: 20px;
}
.submit-toast p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}
.submit-toast[data-state=success] > div { border-left-color: var(--green); }
.submit-toast[data-state=error] > div { border-left-color: var(--red); }

@media (max-width: 640px) {
  .submit-toast {
    right: 14px;
    bottom: 14px;
    width: calc(100vw - 28px);
  }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,47,95,.65); }
  70% { box-shadow: 0 0 0 18px rgba(255,47,95,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,47,95,0); }
}

@media (max-width: 900px) {
  .service-overview,
  .signal-grid,
  .blog-grid,
  .image-feature,
  .trust-strip,
  .brand-grid,
  .price-grid,
  .reviews,
  .context-links .link-columns,
  .street-shop,
  .footer-inner,
  .region-grid,
  .service-regions--compact .region-grid {
    grid-template-columns: 1fr;
  }
  .marquee-card {
    width: 300px;
    flex-basis: 300px;
  }
  .street-photo { min-height: 260px; }
  .image-feature > div { padding: 28px; }
  .image-feature img { height: 300px; }
  .article { column-count: 1; }
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .topbar-shell {
    width: calc(100% - 24px);
  }
  .topbar-main {
    padding: 10px 0;
  }
  .brand-copy {
    font-size: 18px;
  }
  .brand-badge {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .topbar-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 0 0 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .topbar-nav.is-open {
    display: flex;
  }
  .nav-link {
    min-height: 52px;
    justify-content: flex-start;
    padding: 0 16px 0 12px;
    border-radius: 16px;
  }
  .nav-link__icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    font-size: 13px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero { padding: 54px 18px 74px; }
  .hero p { font-size: 17px; }
  .hero-link { display: flex; margin: 14px 0 0; }
  .section { width: calc(100% - 24px); padding: 30px 18px; }
  .floating-cta { left: 14px; right: 14px; bottom: 14px; width: calc(100% - 28px); }
}
