.site-page [hidden] {
  display: none !important;
}

.top-shell {
  position: static;
  z-index: 20;
  padding-top: 10px;
  overflow-x: clip;
}

.header-stack {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.announcement-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 0 8px;
  flex-wrap: wrap;
}

.micro-copy {
  color: rgba(232, 238, 249, 0.92);
  font-size: 0.8rem;
  font-weight: 700;
}

.brand-signal {
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.location-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.micro-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(244, 247, 255, 0.96);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.main-header {
  display: grid;
  gap: 12px;
  padding: 12px 18px;
  min-width: 0;
  overflow-x: clip;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 251, 255, 0.93));
  box-shadow:
    0 20px 48px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.desktop-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
  max-width: 100%;
  scrollbar-width: none;
  padding: 4px;
  border-radius: 18px;
  background: rgba(244, 247, 252, 0.88);
  border: 1px solid rgba(17, 24, 39, 0.05);
}

.desktop-nav::-webkit-scrollbar {
  display: none;
}

.desktop-nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
  padding: 10px 14px;
  border-radius: 14px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.desktop-nav a:hover {
  background: rgba(29, 78, 216, 0.08);
  color: var(--text);
  transform: translateY(-1px);
}

.header-search {
  display: grid;
  gap: 10px;
  min-width: 0;
  overflow-x: clip;
  padding: 12px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.92));
}

.header-search-input {
  min-height: 56px;
  padding: 0 20px;
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(250, 252, 255, 0.94);
}

.page-stack {
  display: grid;
  gap: 26px;
  padding-top: 26px;
  padding-bottom: 120px;
  min-width: 0;
  overflow-x: clip;
}

.page-tools {
  display: flex;
  justify-content: flex-start;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 24, 39, 0.08);
  color: var(--text);
  font-weight: 700;
}

.main-header .brand {
  min-width: 0;
  padding: 2px 0;
  border-radius: 0;
  gap: 10px;
}

.main-header .brand > div {
  display: none;
}

.main-header .brand-name {
  letter-spacing: -0.03em;
}

.main-header .brand-note {
  font-size: 0.88rem;
}

.main-header .brand-logo {
  width: clamp(196px, 17vw, 250px);
  max-height: 68px;
}

.landing-hero,
.page-hero,
.legal-shell {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.landing-hero {
  padding: 34px;
  display: grid;
  gap: 24px;
  background:
    radial-gradient(circle at top left, rgba(255, 220, 120, 0.3), transparent 22%),
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.18), transparent 24%),
    radial-gradient(circle at bottom center, rgba(29, 78, 216, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.95));
}

.landing-copy {
  display: grid;
  gap: 10px;
  max-width: 640px;
}

.hero-copy-strong {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--text);
}

.landing-copy h1,
.page-hero h1,
.legal-shell h1 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.landing-copy h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  max-width: 8ch;
}

.landing-grid {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.landing-card {
  position: relative;
  padding: 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 249, 255, 0.93));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(29, 78, 216, 0.08);
  box-shadow: inset 0 0 0 1px rgba(29, 78, 216, 0.1);
  font-size: 1.4rem;
}

.landing-card:hover {
  transform: translateY(-4px);
}

.landing-card h2 {
  margin: 8px 0 4px;
  font-size: 1.45rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.landing-card p:last-child {
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

.landing-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.glow-one {
  width: 140px;
  height: 140px;
  top: 42px;
  right: 90px;
  background: rgba(255, 212, 103, 0.28);
}

.glow-two {
  width: 90px;
  height: 90px;
  right: 40px;
  bottom: 60px;
  background: rgba(29, 78, 216, 0.16);
}

.glow-three {
  width: 120px;
  height: 120px;
  left: 46%;
  top: 18%;
  background: rgba(20, 184, 166, 0.12);
}

.page-hero,
.legal-shell {
  padding: 22px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.94));
}

.page-hero h1,
.legal-shell h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.hero-shell,
.service-card,
.repair-section,
.sell-section,
.product-card,
.form-wrap,
.info-card {
  overflow: hidden;
}

.hero-shell {
  display: grid;
  gap: 22px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.14), transparent 30%),
    radial-gradient(circle at bottom left, rgba(29, 78, 216, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.94));
}

.hero-copy-block {
  display: grid;
  gap: 16px;
}

.hero-copy-block h1,
.section-head h2,
.service-card h2,
.service-pill-card h2,
.site-footer h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-copy-block h1 {
  font-size: clamp(2.6rem, 7vw, 5.3rem);
  max-width: 12ch;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-stats,
.services-grid,
.product-grid,
.repair-grid,
.footer-grid,
.sell-layout,
.finder-layout {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.stat-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.stat-card strong {
  display: block;
  font-size: 1.05rem;
}

.stat-card span,
.service-card p,
.product-body p,
.info-card p,
.clean-list,
.section-copy,
.text-link,
.chat-footer .form-note {
  color: var(--muted);
  line-height: 1.7;
}

.hero-side-panel,
.service-list,
.repair-side,
.sell-side {
  display: grid;
  gap: 16px;
}

.service-pill-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.94);
  color: white;
}

.service-pill-card .section-kicker,
.service-pill-card a {
  color: rgba(255, 255, 255, 0.8);
}

.service-pill-card h2 {
  font-size: 1.45rem;
}

.service-pill-card a,
.text-link {
  font-weight: 800;
}

.services-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.service-card,
.repair-section,
.sell-section,
.finder-section {
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.94));
}

.service-card h2 {
  font-size: 1.7rem;
}

.section-block {
  display: grid;
  gap: 16px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.listing-toolbar {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.listing-search,
.listing-sort {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font: inherit;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.contact-list a,
.contact-list span {
  color: var(--text);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.legal-content {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.legal-content h2 {
  margin: 18px 0 0;
  font-size: 1.15rem;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.product-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  min-width: 0;
}

.product-card {
  padding: 18px;
  border-radius: 22px;
  min-width: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.94));
}

.product-art {
  height: 180px;
  border-radius: 18px;
  margin-bottom: 14px;
  background-size: cover;
  background-position: center;
}

.blue-art {
  background: linear-gradient(140deg, #cae3ff, #4f8dfd);
}

.coral-art {
  background: linear-gradient(140deg, #ffd8cd, #ff866b);
}

.dark-art {
  background: linear-gradient(140deg, #d5dbe9, #48567a);
}

.tag {
  color: var(--primary);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

.product-body h3,
.info-card h3 {
  margin: 6px 0 0;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.product-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.product-meta-chips span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.product-body strong {
  display: block;
  margin-top: 10px;
  font-size: 1.05rem;
}

.product-actions {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.product-order-button {
  width: 100%;
}

.product-enquiry-button,
.footer-subscribe-button {
  width: 100%;
  justify-content: center;
}

.product-contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.product-contact-actions .ghost-pill {
  width: 100%;
  justify-content: center;
}

.product-pickup-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.order-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.52);
  z-index: 39;
}

.order-dialog {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(calc(100vw - 24px), 520px);
  max-width: calc(100vw - 24px);
  z-index: 40;
  padding: 22px;
  display: grid;
  gap: 16px;
}

.order-dialog-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.order-dialog-head h3 {
  margin: 6px 0 0;
}

.order-dialog-copy {
  margin: 0;
  color: var(--muted);
}

.repair-grid,
.sell-layout,
.finder-layout {
  margin-top: 18px;
}

.finder-panel,
.finder-summary {
  display: grid;
  gap: 16px;
}

.finder-step {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.finder-label {
  margin: 0 0 10px;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text);
}

.finder-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.finder-option {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(29, 78, 216, 0.14);
  background: rgba(29, 78, 216, 0.05);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.finder-option.active {
  background: linear-gradient(135deg, #1d4ed8, #153aa5);
  border-color: transparent;
  color: white;
  box-shadow: 0 18px 30px rgba(29, 78, 216, 0.18);
}

.finder-result-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  min-height: 100%;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.96));
  color: white;
}

.finder-result-card .section-kicker,
.finder-result-card .section-copy,
.finder-meta {
  color: rgba(255, 255, 255, 0.74);
}

.finder-result-card h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.finder-meta {
  margin: 0;
  font-weight: 700;
}

.finder-cta {
  width: fit-content;
}

.form-wrap {
  padding: 0;
}

.repair-form {
  display: grid;
  gap: 16px;
}

.info-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.info-card-accent {
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.2), transparent 40%),
    rgba(255, 255, 255, 0.86);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill-list span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.08);
  color: var(--primary);
  font-weight: 700;
}

.clean-list {
  margin: 16px 0 0;
  padding-left: 18px;
}

.site-footer {
  margin-top: 30px;
  padding: 38px 0 42px;
  overflow-x: clip;
  background:
    radial-gradient(circle at top right, rgba(29, 78, 216, 0.18), transparent 24%),
    linear-gradient(180deg, #0f172a, #111c34);
  color: white;
}

.site-footer .section-kicker,
.site-footer .footer-text,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  align-items: start;
}

.footer-grid > div {
  padding: 20px;
  border-radius: 24px;
  min-width: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-meta {
  width: min(100% - 28px, var(--container));
  margin: 22px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.site-footer .footer-legal {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  line-height: 1.6;
}

.site-footer a {
  display: block;
  margin-top: 8px;
  overflow-wrap: anywhere;
  transition: color 0.18s ease, transform 0.18s ease;
}

.site-footer a:hover {
  color: white;
  transform: translateX(2px);
}

.footer-subscribe-button {
  margin-top: 14px;
}

.product-coupon-note {
  color: var(--primary-dark);
  font-weight: 700;
}

.footer-title {
  color: white;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.chat-widget {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 24;
  display: grid;
  justify-items: end;
  gap: 12px;
  max-width: calc(100vw - 24px);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 20px;
  z-index: 44;
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.96);
  color: white;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.28);
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-banner .ghost-pill {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(255, 255, 255, 0.14);
}

.chat-launcher {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d4ed8, #153aa5);
  color: white;
  font-weight: 800;
  box-shadow: 0 20px 45px rgba(21, 58, 165, 0.32);
  cursor: pointer;
}

.chat-launcher-badge {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.chat-panel {
  width: min(calc(100vw - 24px), 360px);
  max-width: calc(100vw - 24px);
  padding: 16px;
  display: grid;
  gap: 12px;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.chat-close,
.chat-reset {
  min-height: 40px;
}

.chat-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-quick-actions button {
  padding: 10px 12px;
  border: 1px solid rgba(29, 78, 216, 0.12);
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.06);
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
}

.chat-messages {
  max-height: 320px;
  overflow-y: auto;
  display: grid;
  gap: 10px;
  padding-right: 4px;
}

.chat-bubble {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 18px;
  line-height: 1.55;
}

.chat-bubble.bot {
  background: rgba(29, 78, 216, 0.08);
  justify-self: start;
}

.chat-bubble.user {
  background: rgba(20, 184, 166, 0.14);
  justify-self: end;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.chat-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@media (min-width: 780px) {
  .main-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
  }

  .desktop-nav {
    justify-content: center;
  }

  .header-search {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .landing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-actions {
    flex-direction: row;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.8fr 0.8fr;
  }

  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3) {
    min-height: 100%;
  }

  .listing-toolbar {
    grid-template-columns: minmax(0, 1fr) 220px;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .hero-shell {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: stretch;
  }

  .repair-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: start;
  }

  .sell-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    align-items: start;
  }

  .finder-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    align-items: start;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 779px) {
  .top-shell {
    padding-top: 0;
  }

  .announcement-bar {
    flex-direction: column;
  }

  .desktop-nav {
    display: flex;
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
    padding: 6px;
    gap: 6px;
    border-radius: 16px;
    order: 3;
  }

  .brand-note {
    display: none;
  }

  .main-header {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .main-header .brand {
    justify-content: center;
    padding: 0;
  }

  .main-header .brand-logo {
    width: min(230px, 66vw);
    max-height: 60px;
  }

  .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-actions .ghost-pill,
  .header-actions .button {
    width: 100%;
    min-width: 0;
    padding-inline: 12px;
  }

  .desktop-nav a {
    flex: 0 0 auto;
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .header-search {
    padding: 10px;
  }

  .header-search-input {
    min-height: 52px;
  }

  .landing-hero,
  .page-hero,
  .legal-shell {
    padding: 22px;
  }

  .landing-copy h1 {
    font-size: clamp(2.6rem, 15vw, 4.3rem);
  }

  .landing-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    margin-top: 24px;
    padding: 22px 0 96px;
  }

  .footer-grid {
    gap: 12px;
  }

  .footer-grid > div {
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-footer h2 {
    font-size: 1.32rem;
    line-height: 1.14;
  }

  .footer-title {
    margin-bottom: 8px;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
  }

  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3) {
    display: grid;
    gap: 8px;
    align-content: start;
  }

  .footer-grid > div:nth-child(2) a,
  .footer-grid > div:nth-child(3) a {
    margin-top: 0;
    padding: 11px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.35;
  }

  .footer-grid > div:nth-child(2) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid > div:nth-child(2) .footer-title {
    grid-column: 1 / -1;
  }

  .footer-grid > div:nth-child(3) .footer-title {
    margin-bottom: 6px;
  }

  .site-footer .section-kicker {
    font-size: 0.7rem;
  }

  .site-footer .footer-text {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .footer-meta {
    width: min(100% - 28px, var(--container));
    margin-top: 14px;
    padding-top: 12px;
    gap: 8px;
  }

  .site-footer .footer-legal {
    max-width: 34ch;
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .chat-widget {
    right: 12px;
    bottom: 18px;
  }

  .chat-launcher span:last-child {
    display: none;
  }

  .chat-footer {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (min-width: 780px) and (max-width: 1240px) {
  .main-header {
    grid-template-columns: 1fr;
  }

  .main-header .brand {
    justify-content: flex-start;
  }

  .desktop-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
    padding: 6px;
    justify-content: flex-start;
  }

  .header-actions {
    justify-content: flex-start;
  }

  .hero-shell,
  .repair-grid,
  .sell-layout,
  .finder-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
