:root {
  --ink: #151c24;
  --muted: #5f6f7e;
  --line: #dce3ea;
  --paper: #ffffff;
  --soft: #f4f7f8;
  --soft-2: #eaf0f3;
  --yellow: #ffc72c;
  --yellow-dark: #d99600;
  --green: #168f5a;
  --blue: #2869bf;
  --red: #e24c40;
  --shadow: 0 18px 44px rgba(21, 28, 36, 0.12);
  --radius: 8px;
  --container: 1160px;
  --mobile-action-height: 58px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 118px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.top-bar {
  background: var(--ink);
  color: #fff;
  font-size: 0.9rem;
}

.top-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar a {
  color: var(--yellow);
  font-weight: 700;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__mark {
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  color: #344151;
  font-weight: 700;
}

.nav__links > a:not(.button):hover,
.nav-parent-link:hover,
.nav-dropdown-toggle:hover {
  color: var(--green);
}

.nav-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
  min-height: 76px;
}

.nav-parent-link {
  padding: 26px 0;
}

.nav-dropdown-toggle {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #344151;
  cursor: pointer;
  padding: 0;
}

.nav-dropdown-icon {
  display: block;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
  transition: transform 150ms ease;
}

.nav-dropdown-toggle[aria-expanded="true"] .nav-dropdown-icon {
  transform: translateY(2px) rotate(225deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 230px;
  transform: translateX(-50%) translateY(8px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease, transform 150ms ease;
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu,
.nav-group.is-open .nav-submenu {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-submenu a {
  border-radius: 6px;
  padding: 10px 12px;
  color: #344151;
  font-size: 0.94rem;
  white-space: nowrap;
}

.nav-submenu a:hover {
  background: var(--soft);
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 9px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  padding: 13px 18px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(217, 150, 0, 0.22);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #ffd85f;
  box-shadow: 0 12px 24px rgba(217, 150, 0, 0.26);
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button--secondary {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.button--secondary:hover {
  background: var(--soft);
  box-shadow: none;
}

.button--small {
  min-height: 40px;
  padding: 9px 13px;
  font-size: 0.92rem;
}

@media (max-width: 1120px) {
  .nav-toggle {
    display: block;
  }

  .nav__links {
    position: absolute;
    top: 106px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 8px;
    box-shadow: var(--shadow);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 13px 14px;
  }

  .nav-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    gap: 0;
    min-height: 0;
  }

  .nav-parent-link {
    min-width: 0;
  }

  .nav-dropdown-toggle {
    width: 44px;
    height: 44px;
  }

  .nav-submenu {
    grid-column: 1 / -1;
    position: static;
    display: none;
    min-width: 0;
    transform: none;
    border: 0;
    border-left: 3px solid var(--yellow);
    border-radius: 0;
    background: var(--soft);
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    padding: 6px 8px;
  }

  .nav-group.is-open .nav-submenu,
  .nav-dropdown-toggle[aria-expanded="true"] + .nav-submenu {
    display: grid;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-submenu a {
    padding: 10px 12px;
    white-space: normal;
  }

  .nav__links .button {
    margin-top: 6px;
  }
}

.hero {
  background:
    linear-gradient(180deg, rgba(244, 247, 248, 0.98), rgba(255, 255, 255, 1)),
    radial-gradient(circle at 20% 10%, rgba(255, 199, 44, 0.22), transparent 24%);
}

.hero__grid {
  min-height: calc(100vh - 170px);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 46px;
  padding: 46px 0 28px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 15ch;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.2;
}

.hero__lead {
  max-width: 660px;
  color: #445365;
  font-size: 1.18rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.hero-quick-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
}

.hero-quick-links span,
.hero-quick-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 8px 11px;
  font-size: 0.88rem;
  font-weight: 900;
}

.hero-quick-links span {
  border-color: transparent;
  background: transparent;
  color: var(--muted);
  padding-left: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-quick-links a {
  color: var(--ink);
}

.hero-quick-links a:hover {
  border-color: var(--yellow-dark);
  background: #fff8df;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero__badges li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #354252;
  padding: 8px 12px;
  font-size: 0.92rem;
  font-weight: 800;
}

.hero__media {
  position: relative;
}

.hero__media picture {
  display: block;
}

.hero__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 6;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.hero__media--proof img {
  aspect-ratio: 10 / 7;
  object-fit: cover;
}

.status-card {
  position: absolute;
  right: 24px;
  top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px 16px;
  box-shadow: 0 16px 32px rgba(21, 28, 36, 0.14);
}

.status-card__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(22, 143, 90, 0.12);
}

.status-card strong,
.status-card span {
  display: block;
}

.status-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.quick-contact {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.quick-contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.quick-contact__grid a {
  display: block;
  padding: 22px 26px;
  border-right: 1px solid var(--line);
}

.quick-contact__grid a:first-child {
  border-left: 1px solid var(--line);
}

.quick-contact__grid span,
.contact-cards span,
.site-footer span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.quick-contact__grid strong {
  display: block;
  margin-top: 3px;
  font-size: 1.05rem;
}

.section {
  padding: 86px 0;
}

.section--compact {
  padding: 42px 0;
}

.section--tint {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.fast-quote {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
}

.fast-quote h2 {
  max-width: 720px;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.fast-quote p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.fast-quote .hero__actions {
  justify-content: flex-end;
  margin: 0;
}

.local-proof {
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.local-proof__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: start;
}

.local-proof h2 {
  max-width: 560px;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.local-proof p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
}

.local-proof__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.local-proof__items article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 20px;
}

.local-proof__items strong,
.local-proof__items span {
  display: block;
}

.proof-feed {
  display: none;
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  padding: 48px 0;
}

.proof-feed:has(.proof-grid) {
  display: block;
}

.proof-feed__slot {
  display: contents;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card,
.case-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(21, 28, 36, 0.08);
}

.review-card p:last-child,
.case-card p:last-child {
  margin-bottom: 0;
}

.local-proof__items span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section__heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section__heading p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.section__heading--compact {
  max-width: 680px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.service-card__body {
  padding: 20px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.service-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  color: #344151;
  font-size: 0.92rem;
  font-weight: 700;
}

.service-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--green);
  font-weight: 900;
}

.service-card__link::after {
  content: "->";
  margin-left: 8px;
}

.popular-repairs-strip {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.popular-repairs-strip .hero-quick-links {
  margin-bottom: 0;
}

.page-hero {
  background: linear-gradient(180deg, var(--soft), #fff);
  border-bottom: 1px solid var(--line);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 46px;
  align-items: center;
  padding: 54px 0;
}

.breadcrumb {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--green);
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
}

.page-hero--service .page-hero__grid {
  padding: 42px 0;
}

.page-hero--service h1 {
  max-width: 15ch;
  font-size: clamp(2.2rem, 4.6vw, 4.35rem);
}

.page-hero--service .hero__actions {
  margin-bottom: 14px;
}

.page-hero__copy > p:not(.eyebrow) {
  max-width: 680px;
  color: #445365;
  font-size: 1.12rem;
}

.page-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.repair-list,
.device-list,
.spec-card,
.timeline article,
.related-services a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.repair-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  overflow: hidden;
}

.repair-list article {
  min-height: 136px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.repair-list article:nth-child(2n) {
  border-right: 0;
}

.repair-list article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.repair-list h3 {
  margin-bottom: 8px;
}

.repair-list p,
.device-list p,
.spec-card p,
.timeline p,
.related-services span {
  color: var(--muted);
}

.device-list {
  padding: 24px;
}

.device-list ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.device-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 800;
}

.device-list li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 0.55em;
  border-radius: 999px;
  background: var(--yellow);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.spec-card {
  padding: 22px;
}

.spec-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.section--ad-quote {
  background: #fff;
}

.ad-quote {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.ad-quote > div:first-child {
  padding-top: 8px;
}

.ad-quote h2 {
  max-width: 12ch;
}

.ad-quote p {
  max-width: 660px;
  color: var(--muted);
}

.quote-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.quote-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 900;
}

.quote-points li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 0.55em;
  border-radius: 999px;
  background: var(--green);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timeline article {
  padding: 22px;
}

.timeline span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--yellow);
  font-weight: 900;
}

.mini-cta {
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  padding: 34px;
}

.mini-cta p {
  max-width: 720px;
  color: #c5ced8;
}

.mini-cta .hero__actions {
  margin-bottom: 0;
}

.related-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.related-services--popular {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.related-services a {
  display: block;
  padding: 18px;
}

.related-services strong,
.related-services span {
  display: block;
}

.related-services span {
  margin-top: 4px;
  font-size: 0.92rem;
}

.related-services--compact a {
  padding: 14px 16px;
}

.related-services--compact span {
  display: none;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process__grid article,
.trust-list article,
.faq details,
.quote-form,
.contact-cards a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.process__grid article {
  padding: 24px;
}

.process__grid span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--yellow);
  font-weight: 900;
}

.process__grid p {
  color: var(--muted);
}

.trust__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.trust__grid p {
  color: var(--muted);
  font-size: 1.06rem;
}

.trust__proof {
  display: grid;
  gap: 16px;
}

.trust-media {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 14px;
}

.trust-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.trust-photo img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
}

.trust-photo:first-child img {
  object-position: center top;
}

.trust-photo figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.trust-list article {
  padding: 22px;
}

.trust-list__wide {
  grid-column: 1 / -1;
}

.trust-list strong,
.trust-list span {
  display: block;
}

.trust-list span {
  margin-top: 8px;
  color: var(--muted);
}

.faq {
  padding-top: 0;
}

.faq__list {
  display: grid;
  gap: 12px;
}

.faq summary {
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 900;
}

.faq details p {
  max-width: 820px;
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.section--contact {
  background: var(--ink);
  color: #fff;
}

.section--contact .eyebrow {
  color: var(--yellow);
}

.section--contact p {
  color: #c5ced8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-areas:
    "details form"
    "map map";
  gap: 28px 46px;
  align-items: start;
}

.contact-details {
  grid-area: details;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-cards a {
  display: block;
  padding: 18px 20px;
  color: var(--ink);
}

.contact-cards strong {
  display: block;
  margin-top: 4px;
}

.contact-map {
  grid-area: map;
  min-height: 260px;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #d9dee3;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
}

.contact-grid > .quote-form {
  grid-area: form;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.quote-form--compact {
  gap: 12px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.quote-form__head {
  display: grid;
  gap: 4px;
  padding-bottom: 4px;
}

.quote-form__head strong {
  font-size: 1.15rem;
}

.quote-form__head span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.quote-form__quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.quote-form__quick a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 9px 10px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 900;
}

.quote-form__quick a:hover {
  border-color: var(--yellow-dark);
  background: #fff8df;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #344151;
  font-weight: 900;
}

.quote-form__optional {
  color: #566474;
}

.quote-form__optional span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  padding: 12px 13px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(255, 199, 44, 0.35);
  border-color: var(--yellow-dark);
}

.quote-form .button {
  width: 100%;
}

.quote-form--compact textarea {
  min-height: 92px;
}

.form-note {
  min-height: 1.4em;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  padding: 32px 0 92px;
  background: #101720;
  color: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
}

.footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer__legal p {
  max-width: 780px;
  margin: 0;
  font-size: 0.88rem;
}

.footer__legal div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
  justify-content: flex-end;
  font-weight: 900;
}

.site-footer p {
  margin: 7px 0 0;
  color: #c5ced8;
}

.site-footer a {
  color: var(--yellow);
}

.legal-page__content {
  max-width: 860px;
}

.legal-page__content h2 {
  margin-top: 28px;
  font-size: 1.35rem;
}

.legal-page__content h2:first-child {
  margin-top: 0;
}

.legal-page__content p {
  color: var(--muted);
}

.mobile-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: calc(var(--mobile-action-height) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--ink);
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.18);
}

.mobile-action-bar a {
  display: grid;
  min-width: 0;
  min-height: var(--mobile-action-height);
  place-items: center;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.mobile-action-bar a:nth-child(3) {
  background: #168f5a;
  color: #fff;
}

@media (max-width: 1080px) {
  .hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 42px;
  }

  h1 {
    max-width: 13ch;
  }

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

  .process__grid,
  .local-proof__grid,
  .trust__grid,
  .contact-grid,
  .page-hero__grid,
  .detail-grid,
  .ad-quote {
    grid-template-columns: 1fr 1fr;
  }

  .timeline,
  .related-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .fast-quote {
    grid-template-columns: 1fr;
  }

  .fast-quote .hero__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  body {
    padding-bottom: calc(var(--mobile-action-height) + env(safe-area-inset-bottom));
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .top-bar__inner {
    justify-content: center;
    text-align: center;
  }

  .top-bar__inner span {
    display: none;
  }

  .nav {
    min-height: 68px;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand small {
    display: none;
  }

  .hero__grid {
    gap: 28px;
    padding: 38px 0 26px;
  }

  h1 {
    font-size: clamp(2.18rem, 12vw, 3.35rem);
    line-height: 1.04;
  }

  .hero__lead {
    font-size: 1.04rem;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__media img {
    aspect-ratio: 5 / 6;
    min-height: 0;
    object-fit: cover;
    object-position: center 54%;
  }

  .hero__media--proof img {
    aspect-ratio: 10 / 7;
    object-position: center;
  }

  .status-card {
    position: static;
    margin-top: 12px;
    width: 100%;
  }

  .quick-contact__grid,
  .service-grid,
  .process__grid,
  .local-proof__grid,
  .local-proof__items,
  .trust__grid,
  .trust-media,
  .trust-list,
  .contact-grid,
  .page-hero__grid,
  .detail-grid,
  .ad-quote,
  .repair-list,
  .spec-grid,
  .timeline,
  .related-services,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-areas:
      "details"
      "map"
      "form";
  }

  .contact-map,
  .contact-map iframe {
    min-height: 240px;
  }

  .page-hero__grid {
    gap: 26px;
    padding: 42px 0;
  }

  .page-hero h1 {
    max-width: 13ch;
  }

  .repair-list article,
  .repair-list article:nth-child(2n),
  .repair-list article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .repair-list article:last-child {
    border-bottom: 0;
  }

  .quick-contact__grid a,
  .quick-contact__grid a:first-child {
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 18px;
  }

  .section {
    padding: 62px 0;
  }

  .section--compact {
    padding: 36px 0;
  }

  .fast-quote {
    padding: 20px;
  }

  .fast-quote .hero__actions {
    justify-content: stretch;
  }

  .page-hero--service .page-hero__grid {
    padding: 34px 0;
  }

  .page-hero--service h1 {
    max-width: 14ch;
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .quote-form__quick {
    grid-template-columns: 1fr;
  }

  .faq {
    padding-top: 0;
  }

  .site-footer {
    padding-bottom: 86px;
  }

  .footer__legal {
    display: grid;
  }

  .footer__legal div {
    justify-content: flex-start;
  }

  .mobile-action-bar {
    display: grid;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(var(--mobile-action-height) + env(safe-area-inset-bottom));
  }

  .proof-feed {
    width: min(100% - 24px, var(--container));
    padding: 36px 0;
  }

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

  .mobile-action-bar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .brand strong {
    max-width: 145px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero__badges li {
    width: 100%;
  }

  .hero-quick-links {
    gap: 7px;
  }

  .hero-quick-links span {
    width: 100%;
    padding-bottom: 0;
  }

  .hero-quick-links a {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }

  .quote-form {
    padding: 18px;
  }

  .quote-form--compact {
    gap: 10px;
    padding: 16px;
  }

  .quote-form--compact .quote-form__head {
    gap: 2px;
  }

  .quote-form--compact input,
  .quote-form--compact select,
  .quote-form--compact textarea {
    padding: 10px 11px;
  }
}

/* ── Repair pricing ── */
.pricing-overview {
  margin-top: 48px;
}

.pricing-overview__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pricing-overview__card {
  display: grid;
  min-width: 0;
  min-height: 150px;
  align-content: center;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.pricing-overview__card:hover,
.pricing-overview__card:focus-visible {
  border-color: var(--green);
  transform: translateY(-2px);
}

.pricing-overview__card span {
  font-weight: 800;
}

.pricing-overview__card strong,
.repair-price-row strong {
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 900;
}

.pricing-overview__card small {
  color: var(--muted);
  font-size: 0.9rem;
}

.repair-pricing {
  background: var(--soft);
}

.repair-price-layout,
.repair-price-columns,
.repair-price-pair {
  display: grid;
  gap: 18px;
}

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

.repair-price-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.repair-price-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  background: var(--ink);
  color: #fff;
}

.repair-price-panel__head strong {
  font-size: 1.05rem;
}

.repair-price-panel__head span {
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 800;
}

.repair-price-column + .repair-price-column {
  border-left: 1px solid var(--line);
}

.repair-price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 48px;
  padding: 10px 20px;
  border-top: 1px solid var(--line);
}

.repair-price-row span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 700;
}

.repair-price-row strong {
  white-space: nowrap;
  text-align: right;
}

@media (max-width: 900px) {
  .pricing-overview__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pricing-overview__grid,
  .repair-price-columns,
  .repair-price-pair {
    grid-template-columns: 1fr;
  }

  .pricing-overview__card {
    min-height: 0;
  }

  .repair-price-column + .repair-price-column {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .repair-price-row {
    grid-template-columns: 1fr;
    padding: 11px 15px;
    gap: 4px;
  }

  .repair-price-row strong {
    white-space: normal;
    text-align: left;
    font-size: 1.05rem;
  }
}

/* ── Price table ── */
.price-table-wrap {
  overflow-x: auto;
  margin-top: 8px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  font-size: 0.95rem;
}

.price-table th {
  background: var(--ink);
  color: #fff;
  padding: 13px 16px;
  text-align: left;
  font-weight: 900;
  white-space: nowrap;
}

.price-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table tr:nth-child(even) td {
  background: var(--soft);
}

.price-table .price-cell {
  font-weight: 900;
  color: var(--green);
  white-space: nowrap;
}

.price-table .note-cell {
  color: var(--muted);
  font-size: 0.88rem;
}

.price-disclaimer {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ── WhatsApp floating button ── */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 11;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@media (max-width: 780px) {
  .whatsapp-float {
    bottom: 72px;
    right: 16px;
    width: 48px;
    height: 48px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ── Language switch ── */
.lang-switch {
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--muted) !important;
  white-space: nowrap;
}

.lang-switch:hover {
  background: var(--soft);
  color: var(--ink) !important;
}

/* Keep the sticky shop header below the WordPress admin bar. */
body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}
