:root {
  --brand: #1948bf;
  --brand-dark: #0f2f7e;
  --brand-soft: #eef3ff;
  --ink: #20242a;
  --muted: #5e6671;
  --subtle: #7b838e;
  --line: #d9dee6;
  --line-dark: #bfc6d0;
  --soft: #f4f6f8;
  --soft-2: #eceff3;
  --panel: #2d333b;
  --white: #ffffff;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
  --radius: 7px;
  --mobile-action-height: 54px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 15px;
}

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

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

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

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.99);
  border-bottom: 1px solid var(--line);
}

.top-strip {
  background: #f2f4f7;
  border-bottom: 1px solid var(--line);
  color: #3f4650;
  font-size: 0.82rem;
}

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

.top-strip a {
  color: var(--brand-dark);
  font-weight: 800;
}

.top-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.canada-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 1rem;
  line-height: 1;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: 250px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 5px;
  color: #303741;
  font-size: 0.93rem;
  font-weight: 750;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--soft);
}

.nav-links .nav-call {
  margin-left: 4px;
  color: var(--white);
  background: var(--brand);
  border: 1px solid var(--brand);
}

.nav-links .nav-call:hover,
.nav-links .nav-call:focus-visible {
  background: var(--brand-dark);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-dark);
  background: var(--white);
  border-radius: 6px;
  padding: 9px;
}

.mobile-menu-button span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.hero {
  background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 88%);
  border-bottom: 1px solid var(--line);
  padding: 46px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: 38px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--brand-dark);
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

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

h1 {
  max-width: 740px;
  margin-bottom: 16px;
  font-size: clamp(2.35rem, 5vw, 4.55rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}

.hero-text,
.section-heading p,
.quote-intro p,
.contact-main p,
.review-layout p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 0;
}

.hero-actions,
.form-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 23px 0 0;
}

.button {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 11px 17px;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 800;
  transition: background 0.14s ease, border-color 0.14s ease, color 0.14s ease;
}

.button-primary {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line-dark);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--soft);
}

.button-full {
  width: 100%;
}

.hero-quote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.shop-photo {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: #101522;
}

.quote-widget {
  padding: 18px;
}

.widget-heading {
  border-bottom: 1px solid var(--line);
  padding-bottom: 13px;
  margin-bottom: 15px;
}

.widget-title {
  margin: 0 0 4px;
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 800;
}

.widget-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.92rem;
}

label {
  display: block;
  margin-bottom: 7px;
  color: #303741;
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 5px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  padding: 11px 12px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(25, 72, 191, 0.12);
}

.widget-fields input,
.widget-fields select {
  margin-bottom: 13px;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-strip__inner div {
  min-height: 78px;
  padding: 18px 20px;
  border-left: 1px solid var(--line);
}

.trust-strip__inner div:last-child {
  border-right: 1px solid var(--line);
}

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

.trust-strip strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.95rem;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.35;
  font-size: 0.85rem;
}

.section {
  padding: 62px 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 28px;
}

.section-heading-left {
  text-align: left;
}

.compact-heading {
  margin-bottom: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  min-height: 210px;
  padding: 18px;
  background: var(--white);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:last-child {
  border-right: 0;
}

.service-card:nth-child(even) {
  background: #fbfcfd;
}

.service-card:hover {
  background: #f6f8fb;
}

.service-kicker,
.service-price-line {
  display: block;
}

.service-kicker {
  margin-bottom: 12px;
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 8px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.42;
  font-size: 0.9rem;
}

.service-price-line {
  margin-top: 14px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
}

.service-card a {
  width: fit-content;
  margin-top: 16px;
  color: var(--brand-dark);
  font-size: 0.91rem;
  font-weight: 800;
  border-bottom: 1px solid transparent;
}

.service-card a:hover {
  border-bottom-color: var(--brand-dark);
}

.pricing-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 355px;
  gap: 24px;
  align-items: start;
}

.pricing-panel,
.estimate-card,
.quote-shell,
.review-layout,
.contact-layout {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.pricing-panel {
  overflow: hidden;
}

.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px;
  background: var(--panel);
}

.category-tab {
  min-height: 38px;
  border: 1px solid #606873;
  border-radius: 4px;
  padding: 0 12px;
  background: #3e454e;
  color: var(--white);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
}

.category-tab.active {
  background: var(--brand);
  border-color: var(--brand);
}

.price-builder {
  padding: 18px;
}

.form-row {
  margin-bottom: 15px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

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

.hidden {
  display: none !important;
}

.checkbox-line {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 0;
  cursor: pointer;
}

.checkbox-line input {
  width: auto;
}

.estimate-card {
  position: sticky;
  top: 126px;
  padding: 18px;
}

.estimate-top,
.selected-services-heading,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.estimate-top h3 {
  margin-bottom: 0;
}

.link-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  padding: 6px;
}

.link-button:hover {
  color: var(--ink);
}

.quote-items {
  display: grid;
  gap: 10px;
  margin: 15px 0;
}

.quote-item {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  background: #fbfcfd;
}

.quote-item-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.quote-item strong {
  display: block;
}

.quote-item small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.35;
}

.remove-item {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 5px;
  background: var(--white);
  cursor: pointer;
  font-weight: 800;
}

.empty-state {
  padding: 14px;
  border: 1px dashed #b8c1cc;
  border-radius: 6px;
  color: var(--muted);
  text-align: center;
  background: #fbfcfd;
}

.estimate-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin: 16px 0;
}

.estimate-total-row strong {
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}

.fine-print {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
  margin-bottom: 0;
}

.why-section {
  padding-bottom: 36px;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-list div {
  padding: 18px 20px 18px 0;
  border-right: 1px solid var(--line);
  margin-right: 20px;
}

.why-list div:last-child {
  border-right: 0;
  margin-right: 0;
}

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

.why-list strong {
  margin-bottom: 6px;
  color: var(--ink);
}

.why-list span {
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.9rem;
}

.quote-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.35fr;
  gap: 22px;
  padding: 22px;
}

.quote-intro {
  border-radius: 6px;
  background: #252b34;
  color: var(--white);
  padding: 24px;
}

.quote-intro .eyebrow {
  color: #9bb5ff;
}

.quote-intro p {
  color: #d2d8e0;
}

.quote-contact-box {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.quote-contact-box span,
.quote-contact-box a {
  display: block;
}

.quote-contact-box span {
  color: #c7d0dc;
  font-size: 0.85rem;
}

.quote-contact-box a {
  margin-top: 4px;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 850;
}

.selected-services-box {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfd;
  padding: 13px;
  margin-bottom: 15px;
}

.selected-services-heading span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.selected-services-preview {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.selected-services-preview ul {
  margin: 0;
  padding-left: 20px;
}

.form-actions-tight {
  margin-top: 0;
}

.review-section {
  background: #f8f9fb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.9fr;
  gap: 22px;
  align-items: start;
  padding: 24px;
}

.contact-main h2 {
  margin-bottom: 10px;
}

.contact-details {
  display: grid;
  gap: 10px;
}

.contact-details div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.contact-details div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-details strong,
.contact-details a {
  display: block;
}

.contact-details strong {
  margin-bottom: 4px;
  color: var(--subtle);
  font-size: 0.75rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.contact-details a {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.hours-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfd;
  padding: 16px;
}

.hours-card > strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.hours-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-card li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding: 9px 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hours-card li span:first-child {
  flex: 1;
  min-width: 0;
  color: var(--ink);
  font-weight: 700;
}

.hours-card li span:last-child {
  flex-shrink: 0;
}

.hours-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.footer {
  padding: 26px 0;
  background: #222831;
  color: #cbd5e1;
}

.footer p {
  margin: 0;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  max-width: 360px;
  padding: 13px 15px;
  border-radius: 7px;
  background: #222831;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(20, 24, 28, 0.18);
  transform: translateY(120px);
  opacity: 0;
  transition: 0.22s ease;
  z-index: 30;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 980px) {
  .hero-grid,
  .pricing-layout,
  .quote-shell,
  .review-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .estimate-card {
    position: static;
  }

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

  .service-card {
    border-bottom: 1px solid var(--line);
  }

  .trust-strip__inner,
  .why-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-logo {
    width: 220px;
  }
}

@media (max-width: 760px) {
  .top-strip__inner span:nth-child(2) {
    display: none;
  }

  .navbar {
    min-height: 68px;
  }

  .brand-logo {
    width: 190px;
  }

  .mobile-menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-links .nav-call {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    padding: 34px 0 42px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.1rem);
  }

  .service-grid,
  .trust-strip__inner,
  .why-list,
  .two-col,
  .three-col {
    grid-template-columns: 1fr;
  }

  .trust-strip__inner div,
  .trust-strip__inner div:last-child,
  .service-card {
    border-right: 0;
  }

  .trust-strip__inner div {
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .why-list div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    margin-right: 0;
    padding-right: 0;
  }

  .hero-actions,
  .form-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Finishing polish: clearer section breaks, real-shop widgets, and map embed */
body {
  background: #f6f7f9;
}

.hero,
.trust-strip,
.how-section,
#services,
.why-section,
.contact-section {
  background: var(--white);
}

.hero {
  padding-bottom: 42px;
}

.hero-mini-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 18px;
  color: #3f4650;
  font-size: 0.86rem;
  font-weight: 750;
}

.hero-mini-info span {
  position: relative;
  padding-left: 12px;
}

.hero-mini-info span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
}

.action-rail {
  background: #222831;
  border-bottom: 1px solid #151a20;
}

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

.action-rail a {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 16px 18px;
  color: var(--white);
  border-left: 1px solid rgba(255,255,255,0.12);
}

.action-rail a:last-child {
  border-right: 1px solid rgba(255,255,255,0.12);
}

.action-rail a:hover,
.action-rail a:focus-visible {
  background: #2b333e;
}

.action-rail strong {
  font-size: 0.95rem;
}

.action-rail span {
  color: #cbd5e1;
  font-size: 0.82rem;
  line-height: 1.35;
}

.how-section {
  padding-top: 48px;
  padding-bottom: 34px;
}

.steps-widget {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps-widget div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 14px;
  align-items: start;
  padding: 18px 24px 18px 0;
  margin-right: 24px;
  border-right: 1px solid var(--line);
}

.steps-widget div:last-child {
  margin-right: 0;
  border-right: 0;
}

.steps-widget span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  border: 1px solid #cbd8ff;
  color: var(--brand-dark);
  font-weight: 850;
  border-radius: 50%;
}

.steps-widget strong {
  display: block;
  margin-top: 2px;
  color: var(--ink);
}

.steps-widget p {
  grid-column: 2;
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

#services.section {
  padding-top: 44px;
}

.pricing-section,
.review-section {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.contact-section {
  padding-bottom: 70px;
}

.contact-layout {
  grid-template-columns: 1fr 0.92fr 0.86fr;
}

.map-card {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
}

.map-card__top {
  min-height: 58px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfd;
}

.map-card__top strong,
.map-card__top span {
  display: block;
}

.map-card__top strong {
  font-size: 0.98rem;
}

.map-card__top span {
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 2px;
}

.map-card__top a {
  color: var(--brand-dark);
  font-weight: 850;
  font-size: 0.88rem;
  white-space: nowrap;
}

.map-card iframe {
  width: 100%;
  height: 340px;
  display: block;
  border: 0;
  filter: saturate(0.95) contrast(0.98);
}

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

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .action-rail__inner,
  .steps-widget {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-widget div:nth-child(2) {
    border-right: 0;
    margin-right: 0;
  }

  .steps-widget div:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-right: 0;
    margin-right: 0;
  }
}

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

  html {
    scroll-padding-bottom: calc(var(--mobile-action-height) + env(safe-area-inset-bottom, 0px) + 12px);
  }

  .action-rail__inner,
  .steps-widget {
    grid-template-columns: 1fr;
  }

  .action-rail a,
  .action-rail a:last-child {
    min-height: 64px;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .steps-widget div,
  .steps-widget div:nth-child(2),
  .steps-widget div:nth-child(3) {
    grid-column: auto;
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps-widget div:last-child {
    border-bottom: 0;
  }

  .map-card__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-card iframe {
    height: 280px;
  }

  .mobile-action-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 40;
    display: grid;
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0 env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
    background: var(--white);
    border-top: 1px solid var(--line-dark);
    box-shadow: 0 -2px 10px rgba(20, 24, 28, 0.12);
  }

  .mobile-action-bar a {
    min-width: 0;
    min-height: var(--mobile-action-height);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border-right: 1px solid var(--line);
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 850;
    line-height: 1.2;
    text-align: center;
    touch-action: manipulation;
  }

  .mobile-action-bar a:first-child {
    background: var(--brand);
    color: var(--white);
  }

  .mobile-action-bar a:last-child {
    border-right: 0;
  }

  .toast {
    left: 12px;
    right: 12px;
    bottom: calc(var(--mobile-action-height) + env(safe-area-inset-bottom, 0px) + 12px);
    max-width: none;
  }
}


/* Final visual pass: soften hard grid cuts and make widgets feel more like a real service site */
.trust-strip {
  border-bottom: 0;
  background: #f6f7f9;
  padding: 14px 0 0;
}

.trust-strip__inner {
  gap: 10px;
}

.trust-strip__inner div,
.trust-strip__inner div:last-child {
  min-height: auto;
  padding: 15px 16px 15px 18px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: 8px;
  background: var(--white);
}

.trust-strip strong {
  margin-bottom: 3px;
  font-size: 0.9rem;
}

.trust-strip span {
  font-size: 0.82rem;
}

.action-rail {
  background: #f6f7f9;
  border-bottom: 0;
  padding: 14px 0 18px;
}

.action-rail__inner {
  gap: 10px;
}

.action-rail a,
.action-rail a:last-child {
  min-height: 74px;
  padding: 14px 17px;
  border: 1px solid #303844;
  border-radius: 8px;
  background: #222831;
}

.action-rail a:hover,
.action-rail a:focus-visible {
  background: #2a313b;
  transform: translateY(-1px);
}

.steps-widget {
  gap: 14px;
  border-top: 0;
  border-bottom: 0;
}

.steps-widget div,
.steps-widget div:last-child,
.steps-widget div:nth-child(2),
.steps-widget div:nth-child(3) {
  margin-right: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.steps-widget div:nth-child(2) {
  background: var(--white);
}

.steps-widget span {
  border-radius: 7px;
}

.service-grid {
  gap: 12px;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.service-card,
.service-card:last-child {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
}

.service-card:nth-child(even) {
  background: #fbfcfd;
}

.service-card:hover {
  background: #f8faff;
  border-color: #cbd5e1;
}

.why-section {
  padding-top: 52px;
  padding-bottom: 58px;
}

.why-section .section-heading {
  max-width: 620px;
  margin-bottom: 24px;
}

.why-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  border-top: 0;
  border-bottom: 0;
}

.why-list div,
.why-list div:last-child {
  position: relative;
  min-height: 150px;
  margin-right: 0;
  padding: 24px 22px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.why-list div:nth-child(even) {
  background: #fbfcfd;
}

.why-list div::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 16px;
  border-radius: 2px;
  background: var(--brand);
}

.why-list strong {
  margin-bottom: 8px;
  font-size: 0.97rem;
}

.why-list span {
  font-size: 0.9rem;
  line-height: 1.5;
}

.pricing-panel,
.estimate-card,
.quote-shell,
.review-layout,
.contact-layout,
.map-card {
  border-color: #dfe4eb;
}

.quote-shell,
.contact-layout,
.review-layout {
  padding: 24px;
}

.map-card__top {
  padding: 15px 18px;
}

@media (max-width: 980px) {
  .trust-strip__inner,
  .why-list,
  .action-rail__inner,
  .steps-widget {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-widget div:nth-child(3) {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .trust-strip__inner,
  .why-list,
  .action-rail__inner,
  .steps-widget {
    grid-template-columns: 1fr;
  }

  .trust-strip__inner div,
  .trust-strip__inner div:last-child,
  .why-list div,
  .why-list div:last-child,
  .steps-widget div,
  .steps-widget div:nth-child(2),
  .steps-widget div:nth-child(3),
  .action-rail a,
  .action-rail a:last-child {
    margin-right: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .trust-strip__inner div,
  .trust-strip__inner div:last-child {
    border-left: 3px solid var(--brand);
  }

  .action-rail a,
  .action-rail a:last-child {
    border-color: #303844;
  }

  .why-list div {
    min-height: auto;
  }

  .quote-shell,
  .contact-layout,
  .review-layout {
    padding: 18px;
  }
}

/* Final gutter fix: give white content sections real breathing room against the grey page */
.section.container.how-section,
.section.container#services,
.section.container.why-section,
.section.container#quote,
.section.container.contact-section {
  width: min(1360px, calc(100% - 72px));
  margin-left: auto;
  margin-right: auto;
  margin-top: 22px;
  margin-bottom: 22px;
  padding-left: clamp(32px, 4vw, 64px);
  padding-right: clamp(32px, 4vw, 64px);
  border: 1px solid #e5e9f0;
  background: var(--white);
}

.section.container.how-section {
  margin-top: 0;
}

.section.container#services {
  padding-top: 54px;
  padding-bottom: 64px;
}

.section.container.why-section,
.section.container#quote,
.section.container.contact-section {
  padding-top: 56px;
  padding-bottom: 64px;
}

/* Softer internal cards so the sections read like a real shop page, not a boxed dashboard */
.steps-widget div,
.service-card,
.why-list div,
.trust-strip__inner div {
  border-color: #e1e6ee;
  box-shadow: none;
}

.steps-widget div {
  padding: 22px 24px;
}

.service-card {
  padding: 22px 22px 20px;
}

.why-list div,
.why-list div:last-child {
  padding: 26px 24px 24px;
}

/* Keep full-width grey/blue sections visually separate from the inset white sections */
.pricing-section,
.review-section {
  margin-top: 22px;
  margin-bottom: 22px;
}

@media (max-width: 980px) {
  .section.container.how-section,
  .section.container#services,
  .section.container.why-section,
  .section.container#quote,
  .section.container.contact-section {
    width: calc(100% - 40px);
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 760px) {
  .section.container.how-section,
  .section.container#services,
  .section.container.why-section,
  .section.container#quote,
  .section.container.contact-section {
    width: calc(100% - 24px);
    margin-top: 12px;
    margin-bottom: 12px;
    padding-left: 18px;
    padding-right: 18px;
    border: 1px solid #e5e9f0;
    border-radius: 8px;
  }

  .steps-widget div,
  .service-card,
  .why-list div,
  .why-list div:last-child {
    padding: 18px;
  }
}

/* Google review gallery */
.review-layout.review-gallery {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.review-gallery__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 22px;
}

.review-gallery__intro h2 {
  max-width: 720px;
}

.review-gallery__intro p {
  max-width: 760px;
  margin-bottom: 0;
}

.review-carousel {
  display: grid;
  grid-template-columns: 46px minmax(0, 1.1fr) minmax(280px, 0.72fr) 46px;
  gap: 12px;
  align-items: center;
}

#previousReview {
  grid-column: 1;
  grid-row: 1;
}

#nextReview {
  grid-column: 4;
  grid-row: 1;
}

.review-spotlight,
.review-preview-card {
  border: 1px solid #dfe4eb;
  border-radius: 7px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.review-spotlight {
  grid-column: 2;
  grid-row: 1;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-top: 4px solid var(--brand);
}

.review-preview-stack {
  grid-column: 3;
  grid-row: 1;
  position: relative;
  display: grid;
  gap: 10px;
  padding-right: 36px;
}

.review-preview-card {
  min-height: 112px;
  padding: 14px;
  opacity: 0.92;
  transform: translateX(0);
}

.review-preview-card:nth-child(2) {
  opacity: 0.76;
  transform: translateX(18px);
}

.review-preview-card:nth-child(3) {
  opacity: 0.6;
  transform: translateX(36px);
}

.review-preview-card p {
  margin: 8px 0 0;
  color: #303741;
  font-size: 0.86rem;
  line-height: 1.42;
}

.review-card__top {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.review-preview-card .review-card__top {
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  margin-bottom: 8px;
}

.review-card__top strong,
.review-card__top div > span {
  display: block;
}

.review-card__top strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.2;
}

.review-preview-card .review-card__top strong {
  font-size: 0.9rem;
}

.review-card__top div > span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.3;
}

.review-preview-card .review-card__top div > span {
  font-size: 0.76rem;
}

.review-card__top .review-avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.03rem;
  font-weight: 850;
  line-height: 1;
  text-align: center;
}

.review-preview-card .review-card__top .review-avatar {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
  font-size: 0.84rem;
}

.review-avatar-red { background: #ba3b12; }
.review-avatar-green { background: #477465; }
.review-avatar-pink { background: #c77173; }
.review-avatar-blue { background: #8096a2; }
.review-avatar-dark { background: #303741; }
.review-avatar-slate { background: #667985; }
.review-avatar-teal { background: #237c8a; }
.review-avatar-purple { background: #5631b8; }
.review-avatar-rose { background: #d777b6; }

.review-stars {
  margin-bottom: 13px;
  color: #f5a400;
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: 0;
}

.review-stars span {
  margin-left: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.review-preview-card .review-stars {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.review-preview-card .review-stars span {
  font-size: 0.74rem;
}

.review-spotlight p {
  margin: 0;
  color: #303741;
  font-size: 1.04rem;
  line-height: 1.58;
}

.review-arrow {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: var(--white);
  color: var(--brand-dark);
  cursor: pointer;
  font-size: 2rem;
  font-weight: 650;
  line-height: 1;
  box-shadow: var(--shadow);
}

.review-arrow:hover,
.review-arrow:focus-visible {
  border-color: var(--brand);
  color: var(--white);
  background: var(--brand);
}

.review-dots {
  grid-column: 2 / 4;
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 8px;
}

.review-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: #b8c1cc;
  cursor: pointer;
  padding: 0;
}

.review-dot.active {
  width: 24px;
  border-radius: 999px;
  background: var(--brand);
}

.review-carousel.animate-review .review-spotlight {
  animation: reviewSpotlightIn 180ms ease-out both;
}

.review-carousel.animate-review .review-preview-card {
  animation: reviewPreviewIn 200ms ease-out both;
}

.review-carousel.animate-review .review-preview-card:nth-child(2) {
  animation-delay: 30ms;
}

.review-carousel.animate-review .review-preview-card:nth-child(3) {
  animation-delay: 55ms;
}

@keyframes reviewSpotlightIn {
  from {
    opacity: 0;
    transform: translateX(14px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes reviewPreviewIn {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
}

@media (max-width: 980px) {
  .review-carousel {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  #nextReview {
    grid-column: 3;
  }

  .review-spotlight {
    grid-column: 2;
  }

  .review-preview-stack {
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-right: 0;
  }

  .review-preview-card,
  .review-preview-card:nth-child(2),
  .review-preview-card:nth-child(3) {
    transform: none;
  }

  .review-dots {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .review-gallery__intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .review-carousel {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }

  .review-spotlight {
    min-height: auto;
    padding: 20px;
  }

  .review-spotlight p {
    font-size: 0.95rem;
  }

  .review-preview-stack {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .review-preview-card:nth-child(n+2) {
    display: none;
  }
}
