:root {
  --bg: #f3f4f6;
  --surface: #ffffff;
  --text: #0f223f;
  --muted: #43556f;
  --line: #d2d9e3;
  --primary: #0e2b57;
  --primary-dark: #091d3d;
  --soft: #e9eef5;
  --success: #14a44d;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--soft);
}

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

.top-strip {
  background: #111318;
  color: #f1f3f7;
  font-size: 0.78rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-strip-inner {
  min-height: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.top-strip-inner span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.top-strip a {
  text-decoration: none;
}

.top-strip-inner span:last-child {
  display: inline-flex;
  align-items: center;
}

.top-strip-inner span:last-child a + a {
  margin-left: 0.55rem;
  padding-left: 0.65rem;
  position: relative;
}

.top-strip-inner span:last-child a + a::before {
  content: "|";
  position: absolute;
  left: 0;
  color: rgba(241, 243, 247, 0.7);
}

.top-strip-inner span:last-child a:last-child::after {
  content: " ->";
  margin-left: 0.2rem;
}

.top-strip a[href^="tel:"] {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1;
}

.top-strip a[href^="tel:"]::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.8 3.5 3.1 4.8 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.2.4 2.4.6 3.7.6.6 0 1 .4 1 1V21c0 .6-.4 1-1 1C10.6 22 2 13.4 2 2.8 2 2.2 2.4 1.8 3 1.8h4.8c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.7.1.4 0 .8-.3 1.1L6.6 10.8z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.8 3.5 3.1 4.8 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.2.4 2.4.6 3.7.6.6 0 1 .4 1 1V21c0 .6-.4 1-1 1C10.6 22 2 13.4 2 2.8 2 2.2 2.4 1.8 3 1.8h4.8c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.7.1.4 0 .8-.3 1.1L6.6 10.8z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  position: relative;
}

.logo {
  text-decoration: none;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-image {
  display: block;
  height: 40px;
  width: auto;
}

@media (max-width: 767px) {
  .logo-image {
    height: 32px;
  }
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: linear-gradient(145deg, #0f2b57, #1f4f98);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.logo-text {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-transform: lowercase;
}

.logo-sub {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 767px) {
  .logo-text {
    font-size: 0.92rem;
  }

  .logo-sub {
    font-size: 0.66rem;
  }
}

.top-nav {
  display: none;
  gap: 1.6rem;
}

.top-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  padding-inline: 0.25rem;
}

.top-nav a:hover,
.top-nav a.active {
  color: var(--text);
}

.menu-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid #c7d0de;
  background: #fff;
  border-radius: 0.45rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 0 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #213754;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.logo {
  grid-area: logo;
}

.menu-toggle {
  grid-area: toggle;
}

.top-nav {
  grid-area: menu;
}

.header-phone {
  grid-area: phone;
}

.header-inner > .btn {
  grid-area: cta;
}

@media (max-width: 767px) {
  .top-strip-inner {
    min-height: 28px;
    font-size: 0.74rem;
    justify-content: center;
  }

  .top-strip-inner span:last-child {
    display: none;
  }

  .hero .cta-row,
  .page-hero .cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .hero .cta-row .btn,
  .page-hero .cta-row .btn {
    width: 100%;
    min-height: 48px;
    padding: 0.65rem 0.7rem;
    justify-content: center;
  }

  .hero .cta-row .btn-call-hero,
  .page-hero .cta-row .btn-call-hero {
    min-height: 48px;
    gap: 0.45rem;
    justify-content: center;
  }

  .hero .cta-row .btn-call-hero .call-top,
  .page-hero .cta-row .btn-call-hero .call-top {
    display: none;
  }

  .hero .cta-row .btn-call-hero .call-number,
  .page-hero .cta-row .btn-call-hero .call-number {
    font-size: 1.05rem;
    line-height: 1;
  }

  .hero .cta-row .btn-call-hero .call-copy,
  .page-hero .cta-row .btn-call-hero .call-copy {
    align-items: center;
  }

  .hero,
  .page-hero,
  .hero-ref {
    box-shadow: inset 0 0 0 9999px rgba(8, 18, 34, 0.2);
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "logo toggle";
    align-items: center;
  }

  .header-inner .header-phone,
  .header-inner > .btn,
  .header-inner .top-nav {
    display: none;
  }

  body.menu-open .header-inner {
    grid-template-areas:
      "logo toggle"
      "menu menu"
      "phone phone"
      "cta cta";
    padding-bottom: 0.8rem;
  }

  body.menu-open .header-inner .top-nav {
    display: grid;
    position: static;
    background: #fff;
    border: 1px solid #ced7e4;
    border-radius: 0.7rem;
    box-shadow: 0 14px 30px rgba(16, 32, 59, 0.12);
    padding: 0.75rem;
    margin-top: 0.35rem;
  }

  body.menu-open .header-inner .header-phone {
    display: inline-flex;
    margin-top: 0.7rem;
    padding: 0.2rem 0.15rem;
  }

  body.menu-open .header-inner > .btn {
    display: inline-flex;
    margin-top: 0.35rem;
    justify-content: center;
  }

}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

body.menu-open .top-nav a {
  padding: 0.55rem 0.4rem;
  border-bottom: 1px solid #edf1f6;
}

body.menu-open .top-nav a:last-child {
  border-bottom: 0;
}

.header-phone {
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.header-phone::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.8 3.5 3.1 4.8 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.2.4 2.4.6 3.7.6.6 0 1 .4 1 1V21c0 .6-.4 1-1 1C10.6 22 2 13.4 2 2.8 2 2.2 2.4 1.8 3 1.8h4.8c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.7.1.4 0 .8-.3 1.1L6.6 10.8z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.8 3.5 3.1 4.8 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.2.4 2.4.6 3.7.6.6 0 1 .4 1 1V21c0 .6-.4 1-1 1C10.6 22 2 13.4 2 2.8 2 2.2 2.4 1.8 3 1.8h4.8c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.7.1.4 0 .8-.3 1.1L6.6 10.8z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 0.6rem;
  padding: 0.78rem 1.1rem;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-arrow {
  font-weight: 700;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-dark);
}

.btn-secondary {
  background: #fff;
  border-color: #aeb8c8;
  color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: #b8c0cc;
  background: #f8fbff;
}

.btn-full {
  width: 100%;
}

.hero {
  padding-top: 2.2rem;
  padding-bottom: 2.4rem;
  background-color: #0f1b30;
  background-image: linear-gradient(90deg, rgba(15, 27, 48, 0.9) 0%, rgba(15, 27, 48, 0.78) 34%, rgba(15, 27, 48, 0.35) 55%, rgba(15, 27, 48, 0.05) 75%), url("../assets/hero-miele-full.png");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid #223552;
}

.hero-chicago {
  background-image: linear-gradient(90deg, rgba(15, 27, 48, 0.9) 0%, rgba(15, 27, 48, 0.78) 34%, rgba(15, 27, 48, 0.35) 55%, rgba(15, 27, 48, 0.05) 75%), url("../assets/hero-chicago.png");
  background-position: center;
}

.hero-miami {
  background-image: linear-gradient(90deg, rgba(15, 27, 48, 0.9) 0%, rgba(15, 27, 48, 0.78) 34%, rgba(15, 27, 48, 0.35) 55%, rgba(15, 27, 48, 0.05) 75%), url("../assets/hero-miami.png");
  background-position: center;
}

.hero-new-york {
  background-image: linear-gradient(90deg, rgba(15, 27, 48, 0.9) 0%, rgba(15, 27, 48, 0.78) 34%, rgba(15, 27, 48, 0.35) 55%, rgba(15, 27, 48, 0.05) 75%), url("../assets/hero-new-york.png");
  background-position: center;
}

.hero-houston {
  background-image: linear-gradient(90deg, rgba(15, 27, 48, 0.9) 0%, rgba(15, 27, 48, 0.78) 34%, rgba(15, 27, 48, 0.35) 55%, rgba(15, 27, 48, 0.05) 75%), url("../assets/hero-houston.png");
  background-position: center;
}

.hero-los-angeles {
  background-image: linear-gradient(90deg, rgba(15, 27, 48, 0.9) 0%, rgba(15, 27, 48, 0.78) 34%, rgba(15, 27, 48, 0.35) 55%, rgba(15, 27, 48, 0.05) 75%), url("../assets/hero-los-angeles.png");
  background-position: center;
}

.hero-san-francisco {
  background-image: linear-gradient(90deg, rgba(15, 27, 48, 0.9) 0%, rgba(15, 27, 48, 0.78) 34%, rgba(15, 27, 48, 0.35) 55%, rgba(15, 27, 48, 0.05) 75%), url("../assets/hero-san-francisco.png");
  background-position: center;
}

.hero.service-hero,
.page-hero.service-hero {
  background-image: linear-gradient(90deg, rgba(15, 27, 48, 0.9) 0%, rgba(15, 27, 48, 0.78) 34%, rgba(15, 27, 48, 0.35) 55%, rgba(15, 27, 48, 0.05) 75%), url("../assets/hero-services.png");
  background-position: center;
}

.hero.locations-hero,
.page-hero.locations-hero {
  background-image: linear-gradient(90deg, rgba(15, 27, 48, 0.9) 0%, rgba(15, 27, 48, 0.78) 34%, rgba(15, 27, 48, 0.35) 55%, rgba(15, 27, 48, 0.05) 75%), url("../assets/hero-locations.png");
  background-position: center;
}

.page-hero {
  padding-top: 2rem;
  padding-bottom: 2.4rem;
  background-color: #0f1b30;
  background-image: linear-gradient(90deg, rgba(15, 27, 48, 0.9) 0%, rgba(15, 27, 48, 0.78) 34%, rgba(15, 27, 48, 0.35) 55%, rgba(15, 27, 48, 0.05) 75%), url("../assets/hero-miele-full.png");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid #223552;
}

.hero-grid {
  display: grid;
  gap: 1.25rem;
}

.hero .hero-grid > div:first-child {
  max-width: 620px;
  color: #fff;
}

.page-hero .copy-card {
  max-width: 620px;
  background: transparent;
  border: 0;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  text-align: center;
}

.page-hero .copy-card h1,
.page-hero .copy-card h2,
.page-hero .copy-card h3 {
  color: #ffffff;
  text-align: center;
}

.page-hero .cta-row {
  justify-content: center;
}

.hero .hero-text,
.page-hero .hero-text {
  color: #d9e3f4;
}

.hero .badge,
.page-hero .badge {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
}

.hero .cta-row .btn-primary,
.page-hero .cta-row .btn-primary {
  background: #1a4d97;
  border-color: #1a4d97;
}

.hero .cta-row .btn-primary:hover,
.hero .cta-row .btn-primary:focus-visible,
.page-hero .cta-row .btn-primary:hover,
.page-hero .cta-row .btn-primary:focus-visible {
  background: #154283;
  border-color: #154283;
}

.hero-highlight {
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1.02;
  max-width: 12ch;
  margin-top: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-highlight em {
  color: #8c1d40;
  font-style: normal;
  font-weight: 800;
}

.hero-aside-card {
  background: #10131b;
  color: #f3f7ff;
  border-radius: 0.3rem;
  padding: 1.35rem;
}

.hero-aside-card .badge {
  background: rgba(44, 171, 98, 0.2);
  border-color: rgba(44, 171, 98, 0.35);
  color: #8ce9ae;
}

.hero-aside-card h3 {
  font-size: 2rem;
  line-height: 1.03;
  margin-top: 0.7rem;
  margin-bottom: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero-aside-card p {
  color: #d3dbeb;
  margin-bottom: 0;
}

.hero-stats {
  margin-top: 1.5rem;
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.hero-stats article {
  padding: 0.95rem;
  border-bottom: 1px solid var(--line);
}

.hero-stats article:last-child {
  border-bottom: 0;
}

.hero-stats h3 {
  font-size: 1.45rem;
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero-stats p {
  margin: 0;
  color: var(--muted);
}

.copy-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  padding: 1.2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #f7f8fb;
  color: #1f2f49;
  border: 1px solid #bdc9d9;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 0.65rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-top: 1rem;
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.hero-text {
  max-width: 60ch;
  color: var(--muted);
  margin: 0 0 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
}

.trust-row {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-weight: 500;
}

.trust-row li::before {
  content: "-";
  color: var(--primary);
  margin-right: 0.5rem;
  font-weight: 700;
}

.form-card {
  background: var(--surface);
  border: 1px solid #c4cdd9;
  border-radius: 0.95rem;
  padding: 1.15rem;
  box-shadow: 0 10px 30px rgba(20, 38, 72, 0.06);
}

.form-card p {
  color: var(--muted);
  margin-top: 0;
}

form {
  display: grid;
  gap: 0.35rem;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.4rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #ccd4df;
  border-radius: 0.55rem;
  font: inherit;
  color: inherit;
  padding: 0.72rem 0.78rem;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  outline: 2px solid rgba(13, 75, 227, 0.15);
}

input.input-error,
select.input-error,
textarea.input-error {
  border-color: #d92d20;
}

.form-note {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0.55rem 0 0;
}

.form-error {
  color: #d92d20;
  font-size: 0.8rem;
  margin-top: 0.2rem;
  min-height: 1rem;
}

.urgency-strip {
  background: #0f2a52;
  color: #fff;
  font-weight: 600;
  padding: 0.9rem 0;
  text-align: center;
}

.section-head {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.step-card,
.review-card {
  background: var(--surface);
  border: none;
  border-radius: 0.9rem;
  padding: 1rem;
  box-shadow: 0 8px 18px rgba(23, 45, 78, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card p,
.step-card p {
  margin: 0.35rem 0;
  color: var(--muted);
}

.process-section {
  background: var(--soft);
}

.process-head {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 1.35rem;
}

.process-title {
  margin: 0 0 0.55rem;
}

.process-subtitle {
  margin: 0;
  color: var(--muted);
}

.muted {
  font-size: 0.92rem;
}

.text-link {
  display: inline-block;
  margin-top: 0.55rem;
  color: #1f4f98;
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: " ->";
  margin-left: 0.2rem;
}

.link-grid {
  display: grid;
  gap: 0.9rem;
}

.locations-preview {
  background: #f3f6fb;
}

.locations-neighborhoods {
  background: #f7f9fc;
}

.locations-neighborhoods-grid {
  display: grid;
  gap: 1rem;
}

.locations-neighborhoods-copy p {
  margin: 0;
  color: #3f4d64;
}

.locations-neighborhoods-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.locations-neighborhoods-list li {
  border-top: 1px solid #d8e1ef;
  padding: 0.55rem 0;
  color: #22324a;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}

.locations-neighborhoods-list li::before {
  content: "\2713";
  color: #1f9d57;
  font-weight: 700;
  flex: 0 0 auto;
}

.other-repairs {
  background: #f6f8fb;
}

.other-repairs-grid {
  border-top: 1px solid #d6deea;
  padding-top: 1rem;
  display: grid;
  gap: 0.9rem;
}

.other-repair-item p {
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #607089;
  font-weight: 700;
}

.other-repair-item h3 {
  margin: 0;
}

.other-repair-item a {
  display: inline-block;
  margin-top: 0.35rem;
  text-decoration: none;
  font-weight: 700;
}

.contact-intro {
  padding-bottom: 1.4rem;
}

.contact-breadcrumb {
  margin: 0 0 1rem;
  font-size: 0.86rem;
  color: #5b6a7f;
}

.contact-breadcrumb span {
  margin: 0 0.35rem;
}

.auto-breadcrumb-wrap {
  padding: 0.7rem 0 0.25rem;
}

.auto-breadcrumb-wrap--hero {
  padding: 0.5rem 0 0;
}

.contact-breadcrumb--hero {
  margin: 0 0 0.55rem;
  color: #dce8ff;
}

.contact-breadcrumb--hero a {
  color: #f4f8ff;
}

.contact-breadcrumb--hero span {
  color: rgba(220, 232, 255, 0.85);
}

.contact-intro-card {
  background: linear-gradient(130deg, #f8fafc 0%, #eef5f2 100%);
  border: 1px solid #e1e7f1;
  border-radius: 1rem;
  padding: 2rem 1.2rem;
  text-align: center;
}

.contact-intro-card h1 {
  margin-top: 0.6rem;
  margin-bottom: 0.65rem;
}

.contact-intro-card p {
  margin: 0 auto;
  max-width: 64ch;
  color: #4d5c73;
}

.contact-note {
  margin-top: 0.55rem !important;
  font-size: 0.86rem;
}

.contact-quick {
  padding-top: 1rem;
}

.contact-quick-grid {
  display: grid;
  gap: 0.9rem;
}

.contact-quick-card {
  background: #ffffff;
  border: 1px solid #dce4ef;
  border-radius: 1rem;
  padding: 1.15rem;
  text-align: center;
}

.contact-quick-card h3 {
  margin-bottom: 0.35rem;
}

.contact-quick-card p {
  margin: 0.25rem 0;
  color: #526278;
}

.contact-quick-main {
  font-size: 1.28rem;
  font-weight: 700;
  color: #1b3968 !important;
}

.contact-quick-main a {
  text-decoration: none;
}

.contact-quick-card-accent {
  background: linear-gradient(135deg, #f58c2d, #f06f14);
  border-color: transparent;
  color: #fff;
}

.contact-quick-card-accent p {
  color: rgba(255, 255, 255, 0.9);
}

.contact-quick-card-accent .btn {
  margin-top: 0.4rem;
}

.contact-layout {
  background: #f5f6f8;
  padding-top: 1.6rem;
}

.contact-grid {
  display: grid;
  gap: 1.2rem;
}

.contact-form-wrap h2 {
  margin-bottom: 0.25rem;
}

.contact-form-wrap > p {
  margin-top: 0;
  margin-bottom: 0.7rem;
  color: #5c687b;
}

.contact-form-grid {
  display: grid;
  gap: 0.55rem;
}

.contact-field {
  display: grid;
  gap: 0.32rem;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.55rem;
}

.contact-field.full-row {
  grid-column: 1 / -1;
}

.contact-submit-btn {
  background: linear-gradient(145deg, #1b4f98, #113a75);
  border: 0;
  min-height: 56px;
  border-radius: 0.95rem;
  padding-inline: 1.6rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(15, 45, 89, 0.25);
}

.contact-submit-btn:hover,
.contact-submit-btn:focus-visible {
  background: linear-gradient(145deg, #184789, #0f3268);
}

.contact-submit-btn svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.contact-sidecards {
  display: grid;
  gap: 0.8rem;
}

.contact-sidecard {
  background: #ffffff;
  border: 1px solid #dde4ef;
  border-radius: 0.95rem;
  padding: 1rem;
}

.contact-sidecard h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.side-icon {
  width: 1.2rem;
  height: 1.2rem;
  display: inline-flex;
  color: #2f8a5b;
}

.side-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.contact-sidecard p {
  margin: 0.35rem 0;
  color: #56657b;
}

.contact-sidecard ul {
  list-style: none;
  margin: 0.45rem 0 0;
  padding-left: 1.05rem;
  color: #2d3d56;
}

.contact-sidecard li {
  margin: 0.35rem 0;
}

.contact-sidecard li::before {
  content: ">";
  color: #2f8a5b;
  margin-right: 0.4rem;
}

.contact-sidecard-highlight {
  background: #eef2f8;
}

.contact-sidecard-highlight p {
  display: flex;
  justify-content: space-between;
  gap: 0.65rem;
}

.contact-sidecard-highlight .side-note {
  margin-top: 0.75rem;
  color: #2f8a5b;
  font-weight: 600;
  border-top: 1px solid #cfd7e3;
  padding-top: 0.75rem;
}

.locations-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1rem;
}

.locations-title {
  margin: 0;
  max-width: 20ch;
}

.locations-grid {
  display: grid;
  gap: 0.85rem;
}

.location-preview-card {
  background: #ffffff;
  border: 1px solid #d8e1ef;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 8px 18px rgba(23, 45, 78, 0.06);
}

.location-region {
  margin: 0 0 0.45rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a6472;
  font-weight: 700;
}

.location-preview-card h3 {
  margin: 0 0 0.55rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #d8e1ef;
}

.location-preview-card p {
  margin: 0 0 0.7rem;
  color: #435067;
}

.location-preview-card .text-link {
  margin-top: 0.2rem;
}

.issues-section {
  background: var(--soft);
}

.issues-kicker,
.process-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a6472;
}

.process-kicker {
  margin-left: auto;
  margin-right: auto;
}

.issues-title {
  margin-bottom: 1rem;
  max-width: 18ch;
}

.issues-section .issues-kicker,
.issues-section .issues-title,
.services-showcase .issues-kicker,
.services-showcase .issues-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.services-showcase .section-head {
  justify-content: center;
  text-align: center;
}

.issues-grid {
  display: grid;
  gap: 0.8rem;
}

.issue-card {
  background: var(--surface);
  border: none;
  border-radius: 1.15rem;
  padding: 1rem 1rem 0.95rem 4.25rem;
  position: relative;
  box-shadow: 0 8px 18px rgba(23, 45, 78, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.issue-card h3 {
  margin-bottom: 0.3rem;
  font-size: 1.06rem;
}

.issue-card p {
  margin: 0 0 0.45rem;
  color: var(--muted);
}

.issue-card .text-link {
  margin-top: 0;
}

.issue-icon {
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #ae2f48, #8e1f36);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(31, 44, 68, 0.2);
}

.issue-icon::before {
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  background: #fff;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.issue-icon-cooktop::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 5h16v14H4V5zm2 2v10h12V7H6zm6 1a4 4 0 1 1 0 8 4 4 0 0 1 0-8zm0 2a2 2 0 1 0 0 4 2 2 0 0 0 0-4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 5h16v14H4V5zm2 2v10h12V7H6zm6 1a4 4 0 1 1 0 8 4 4 0 0 1 0-8zm0 2a2 2 0 1 0 0 4 2 2 0 0 0 0-4z'/%3E%3C/svg%3E");
}

.issue-icon-fridge::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2h10v20H7V2zm2 2v7h6V4H9zm0 9v7h6v-7H9zm5 2h1v3h-1v-3zm0-8h1v3h-1V7z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2h10v20H7V2zm2 2v7h6V4H9zm0 9v7h6v-7H9zm5 2h1v3h-1v-3zm0-8h1v3h-1V7z'/%3E%3C/svg%3E");
}

.issue-icon-oven::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 4h18v16H3V4zm2 2v3h14V6H5zm2 1h2v1H7V7zm4 0h2v1h-2V7zm4 0h2v1h-2V7zM6 11h12v7H6v-7z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 4h18v16H3V4zm2 2v3h14V6H5zm2 1h2v1H7V7zm4 0h2v1h-2V7zm4 0h2v1h-2V7zM6 11h12v7H6v-7z'/%3E%3C/svg%3E");
}

.issue-icon-dishwasher::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 4h16v16H4V4zm2 2v3h12V6H6zm0 5v7h12v-7H6zm2 1h2v2H8v-2zm3 0h2v2h-2v-2zm3 0h2v2h-2v-2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 4h16v16H4V4zm2 2v3h12V6H6zm0 5v7h12v-7H6zm2 1h2v2H8v-2zm3 0h2v2h-2v-2zm3 0h2v2h-2v-2z'/%3E%3C/svg%3E");
}

.issue-icon-wine::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 2h8v8a4 4 0 0 1-3 3.87V20h4v2H7v-2h4v-6.13A4 4 0 0 1 8 10V2zm2 2v6a2 2 0 1 0 4 0V4h-4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 2h8v8a4 4 0 0 1-3 3.87V20h4v2H7v-2h4v-6.13A4 4 0 0 1 8 10V2zm2 2v6a2 2 0 1 0 4 0V4h-4z'/%3E%3C/svg%3E");
}

.issue-icon-outdoor::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c2.2 2 3 3.4 3 5a3 3 0 0 1-6 0c0-1.6.8-3 3-5zm-6 9h12v9H6v-9zm2 2v5h8v-5H8z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c2.2 2 3 3.4 3 5a3 3 0 0 1-6 0c0-1.6.8-3 3-5zm-6 9h12v9H6v-9zm2 2v5h8v-5H8z'/%3E%3C/svg%3E");
}

.issue-icon-cooktop {
  background: linear-gradient(145deg, #ad3048, #8a1d35);
}

.issue-icon-fridge {
  background: linear-gradient(145deg, #3d6fe9, #1f4ec6);
}

.issue-icon-oven {
  background: linear-gradient(145deg, #f0983c, #dc6923);
}

.issue-icon-dishwasher {
  background: linear-gradient(145deg, #238ab5, #1b6c8f);
}

.issue-icon-wine {
  background: linear-gradient(145deg, #8d4ac6, #6b2fa6);
}

.issue-icon-outdoor {
  background: linear-gradient(145deg, #25a582, #1c7f66);
}

.services-showcase {
  background: var(--soft);
}

.services-grid {
  display: grid;
  gap: 0.8rem;
}

.service-detail-card {
  background: var(--surface);
  border: none;
  border-radius: 1.15rem;
  padding: 1.25rem 1.2rem 1.15rem;
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 18px rgba(23, 45, 78, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover,
.step-card:hover,
.review-card:hover,
.issue-card:hover,
.service-detail-card:hover {
  transform: translateY(-2px);
  border-color: #cdd9ea;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9), 0 10px 26px rgba(207, 223, 244, 0.55);
}

.service-detail-card h3 {
  font-size: 1.26rem;
  margin-bottom: 0.7rem;
  padding-right: 2.4rem;
  margin-top: 0;
  line-height: 1.15;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.75rem;
  font-weight: 700;
}

.service-category {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 700;
  color: #6a7381;
}

.service-sub {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: #5f6875;
}

.service-detail-card ul {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.service-detail-card li {
  margin: 0.34rem 0;
  color: #2f3f57;
  line-height: 1.45;
  font-size: 0.97rem;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.service-detail-card li::before {
  content: "";
  display: block;
  width: 0.42rem;
  height: 0.24rem;
  border-left: 2px solid #138a43;
  border-bottom: 2px solid #138a43;
  transform: rotate(-45deg);
  margin-top: 0.35rem;
  flex: 0 0 0.42rem;
  color: #138a43;
}

.service-detail-card .text-link {
  margin-top: auto;
  padding-top: 0.45rem;
  font-size: 1.05rem;
}

.all-services-wrap {
  text-align: center;
  margin: 1rem 0 0;
}

.card-icon {
  position: absolute;
  top: 1.08rem;
  right: 0.95rem;
  width: 1.25rem;
  height: 1.25rem;
  color: #153056;
  background: currentColor;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.icon-washer {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 3h16v18H4V3zm2 2v14h12V5H6zm2 2h2v2H8V7zm4 0h2v2h-2V7zm4 0h2v2h-2V7zm-6 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8zm0 2a2 2 0 1 0 0 4 2 2 0 0 0 0-4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 3h16v18H4V3zm2 2v14h12V5H6zm2 2h2v2H8V7zm4 0h2v2h-2V7zm4 0h2v2h-2V7zm-6 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8zm0 2a2 2 0 1 0 0 4 2 2 0 0 0 0-4z'/%3E%3C/svg%3E");
}

.icon-dryer {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 3h16v18H4V3zm2 2v14h12V5H6zm2 2h8v2H8V7zm0 4h8v2H8v-2zm0 4h5v2H8v-2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 3h16v18H4V3zm2 2v14h12V5H6zm2 2h8v2H8V7zm0 4h8v2H8v-2zm0 4h5v2H8v-2z'/%3E%3C/svg%3E");
}

.icon-dishwasher {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 4h16v16H4V4zm2 2v3h12V6H6zm0 5v7h12v-7H6zm2 1h2v2H8v-2zm3 0h2v2h-2v-2zm3 0h2v2h-2v-2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 4h16v16H4V4zm2 2v3h12V6H6zm0 5v7h12v-7H6zm2 1h2v2H8v-2zm3 0h2v2h-2v-2zm3 0h2v2h-2v-2z'/%3E%3C/svg%3E");
}

.icon-fridge {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2h10v20H7V2zm2 2v7h6V4H9zm0 9v7h6v-7H9zm5 2h1v3h-1v-3zm0-8h1v3h-1V7z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2h10v20H7V2zm2 2v7h6V4H9zm0 9v7h6v-7H9zm5 2h1v3h-1v-3zm0-8h1v3h-1V7z'/%3E%3C/svg%3E");
}

.icon-oven {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 4h18v16H3V4zm2 2v3h14V6H5zm2 1h2v1H7V7zm4 0h2v1h-2V7zm4 0h2v1h-2V7zM6 11h12v7H6v-7z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 4h18v16H3V4zm2 2v3h14V6H5zm2 1h2v1H7V7zm4 0h2v1h-2V7zm4 0h2v1h-2V7zM6 11h12v7H6v-7z'/%3E%3C/svg%3E");
}

.icon-coffee {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 4h12v5a4 4 0 0 1-4 4H9a4 4 0 0 1-4-4V4zm2 2v3a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2V6H7zm10 1h2a2 2 0 0 1 0 4h-2V9h1a1 1 0 0 0 0-2h-1V7zM4 15h14v2H4v-2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 4h12v5a4 4 0 0 1-4 4H9a4 4 0 0 1-4-4V4zm2 2v3a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2V6H7zm10 1h2a2 2 0 0 1 0 4h-2V9h1a1 1 0 0 0 0-2h-1V7zM4 15h14v2H4v-2z'/%3E%3C/svg%3E");
}

.why-section {
  background:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 1.2px),
    linear-gradient(160deg, #101c33, #0d172c);
  background-size: 18px 18px, auto;
  color: #e8eef8;
}

.why-section .container {
  display: grid;
  gap: 1.25rem;
}

.why-section .issues-kicker {
  margin-inline: auto;
  color: #8ad5a7;
  background: rgba(49, 96, 71, 0.45);
  border: 0;
}

.why-title,
.why-subtitle {
  text-align: center;
}

.why-title {
  margin: 0;
  color: #fff;
  max-width: 42rem;
  margin-inline: auto;
}

.why-subtitle {
  margin: 0 auto;
  max-width: 42rem;
  color: #b9c6dd;
}

.why-grid {
  display: grid;
  gap: 0.85rem;
}

.why-card {
  background: rgba(17, 30, 55, 0.84);
  border: 1px solid rgba(106, 142, 197, 0.35);
  border-radius: 0.9rem;
  padding: 1rem;
}

.why-card h3 {
  margin: 0.65rem 0 0.35rem;
  color: #fff;
  font-size: 1.02rem;
}

.why-card p {
  margin: 0;
  color: #c0cde2;
  font-size: 0.95rem;
}

.why-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(7, 15, 31, 0.4);
}

.why-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #fff;
}

.why-icon-green {
  background: linear-gradient(145deg, #2ebf88, #1f9168);
}

.why-icon-orange {
  background: linear-gradient(145deg, #f7943d, #ea6a14);
}

.why-icon-blue {
  background: linear-gradient(145deg, #3b89ff, #205dda);
}

.why-icon-teal {
  background: linear-gradient(145deg, #1fc8b4, #169a8b);
}

.why-stats {
  margin-top: 0.3rem;
  border-top: none;
  padding-top: 1rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.why-stats article {
  text-align: center;
}

.why-stats article h3 {
  margin: 0;
  color: #79d49e;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  line-height: 1;
}

.why-stats article p {
  margin: 0.3rem 0 0;
  color: #b9c6dd;
  font-size: 0.9rem;
}

.steps-grid,
.reviews-grid {
  display: grid;
  gap: 0.95rem;
}

.steps-grid {
  margin-top: 1.35rem;
}

.step-card {
  text-align: center;
  padding: 1.1rem 0.95rem 1rem;
  position: relative;
  background: transparent;
  box-shadow: none;
}

.step-card h3 {
  margin: 0.75rem 0 0.35rem;
}

.step-card p {
  margin: 0;
}

.step-number {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.72rem;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.45rem;
  box-shadow: 0 10px 20px rgba(24, 38, 62, 0.16);
}

.step-green {
  background: linear-gradient(145deg, #2dad74, #248d5f);
}

.step-orange {
  background: linear-gradient(145deg, #f49539, #e57116);
}

.step-blue {
  background: linear-gradient(145deg, #1fc894, #16a97e);
}

@media (min-width: 768px) {
  .process-section .step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 1.55rem;
    left: calc(50% + 2.1rem);
    width: calc(100% - 4.2rem);
    border-top: 1px dashed #c7d0df;
  }
}

.review-card {
  margin: 0;
}

.review-card p {
  margin: 0;
}

.review-card cite {
  margin-top: 0.65rem;
  color: var(--muted);
  display: block;
  font-style: normal;
  font-weight: 600;
}

.final-cta {
  padding-top: 0;
  padding-bottom: 0;
}

.final-cta-inner {
  background:
    linear-gradient(100deg, rgba(10, 29, 56, 0.86) 0%, rgba(13, 37, 69, 0.8) 45%, rgba(16, 43, 80, 0.72) 100%),
    url("../assets/cta-bg.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 0;
  padding: 3rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-inner::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  top: -120px;
  right: -80px;
}

.final-cta-inner p {
  color: rgba(241, 252, 247, 0.9);
  margin: 0;
  max-width: 62ch;
}

.final-cta-inner h2 {
  margin-bottom: 0.5rem;
  max-width: 22ch;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.15;
}

.final-cta-inner .cta-row {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.final-cta-inner .btn {
  min-width: 230px;
  justify-content: center;
  border-radius: 0.8rem;
  min-height: 50px;
  padding-inline: 1.15rem;
  box-shadow: none;
}

.final-cta-inner .cta-row .btn:first-child {
  order: 2;
  background: transparent;
  color: #eef5ff;
  border: 1px solid rgba(229, 239, 255, 0.45);
  font-size: 1rem;
  font-weight: 700;
}

.final-cta-inner .cta-row .btn:last-child {
  order: 1;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #123865;
  font-weight: 800;
}

.final-cta .container {
  width: 100%;
  max-width: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: radial-gradient(1200px 500px at 20% 0%, #10203e 0%, #0a1223 60%, #080f1d 100%);
  color: #dae1ef;
  padding: 2.6rem 0 5.4rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  background: rgba(11, 23, 42, 0.97);
  color: #e8eef8;
  border: 1px solid rgba(182, 199, 224, 0.24);
  border-radius: 0.9rem;
  padding: 0.85rem 0.95rem;
  box-shadow: 0 14px 30px rgba(8, 16, 30, 0.35);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.8rem;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 360px;
  font-size: 0.92rem;
}

.cookie-banner a {
  color: #b9d3ff;
}

.cookie-banner .btn {
  min-height: 40px;
  padding: 0.45rem 0.9rem;
}

.conversion-popup {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(6, 12, 23, 0.58);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.conversion-popup__dialog {
  width: min(520px, 100%);
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #d9e1ee;
  box-shadow: 0 24px 60px rgba(14, 25, 43, 0.32);
  padding: 1.1rem 1.1rem 1rem;
  position: relative;
}

.conversion-popup__close {
  position: absolute;
  top: 0.55rem;
  right: 0.6rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: #eff4fc;
  color: #263952;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.conversion-popup__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a6472;
  font-weight: 700;
}

.conversion-popup__dialog h3 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  line-height: 1.15;
  color: #0f2039;
}

.conversion-popup__dialog p {
  margin: 0;
  color: #41506a;
}

.conversion-popup__actions {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.conversion-popup__actions .btn {
  min-height: 42px;
}

.footer-main {
  display: grid;
  gap: 1.4rem;
}

.footer-brand p {
  margin: 0.45rem 0;
  color: #c7d4ea;
}

.footer-logo-image {
  display: block;
  height: 34px;
  width: auto;
  margin-bottom: 0.35rem;
}

.footer-brand .logo-sub {
  color: #91a4c2;
}

.footer-brand .logo-mark {
  background: linear-gradient(145deg, #123865, #24589a);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.footer-col h3 {
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8ea2bf;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin: 0.4rem 0;
}

.footer-col a {
  color: #e8eefb;
  text-decoration: none;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-legal-links {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 1.4rem;
  padding-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.1rem;
  font-size: 0.86rem;
  text-align: center;
}

.footer-legal-links a {
  color: #b9c8df;
  text-decoration: none;
}

.site-footer h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.site-footer p {
  margin: 0.35rem 0;
}

.site-footer a {
  color: #f3f7ff;
}

.disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 1.1rem;
  padding-top: 1rem;
  font-size: 0.86rem;
  color: #b8c4da;
  text-align: center;
}

.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ffffff;
  border-top: 1px solid #b8c3d4;
  box-shadow: 0 -8px 20px rgba(16, 32, 59, 0.08);
}

.mobile-sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  padding: 0.85rem 0.5rem;
}

.mobile-sticky-cta a:first-child {
  color: #fff;
  background: var(--primary);
}

.mobile-sticky-cta a:last-child {
  color: var(--text);
  background: #fff;
}

.thank-you-main,
.legal-main {
  min-height: 65vh;
}

.thank-you-card,
.legal-content {
  background: var(--surface);
  border: 1px solid #c9d2df;
  border-radius: 0.95rem;
  padding: 1.5rem;
}

.legal-content h2 {
  margin-top: 1.2rem;
  font-size: 1.2rem;
}

.thank-you-next {
  margin-top: 1.1rem;
  text-align: left;
}

.thank-you-next h2 {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.thank-you-next ul {
  margin: 0;
  padding-left: 1.1rem;
}

.hero-ref {
  background-color: #0f1b30;
  background-image: linear-gradient(90deg, rgba(15, 27, 48, 0.9) 0%, rgba(15, 27, 48, 0.78) 34%, rgba(15, 27, 48, 0.35) 55%, rgba(15, 27, 48, 0.05) 75%), url("../assets/hero-miele-full.png");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid #223552;
}

.hero-ref-grid {
  display: block;
}

.hero-content {
  padding: 1.5rem 0 1.8rem;
  color: #ffffff;
}

.hero-facts {
  margin-top: 1.35rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  color: #ffffff;
  display: grid;
  gap: 0.75rem;
  width: 100%;
}

.hero-facts article {
  padding: 0.25rem 0.1rem;
}

.hero-facts h3 {
  margin: 0 0 0.15rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.fact-title {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.fact-title svg {
  width: 0.98rem;
  height: 0.98rem;
  fill: currentColor;
  opacity: 0.95;
  flex-shrink: 0;
}

.hero-facts p {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-overlay {
  max-width: 620px;
}

.hero-overlay .hero-text {
  color: #d9e3f4;
  margin-bottom: 1.35rem;
}

.hero-overlay .badge {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
}

.btn-call-hero {
  background: #1a4d97;
  border: none;
  min-height: 64px;
  padding: 0.55rem 0.85rem;
  justify-content: flex-start;
  gap: 0.85rem;
}

.btn-call-hero:hover,
.btn-call-hero:focus-visible {
  background: #154283;
}

.call-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.call-top {
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.95;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.call-number {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.call-icon {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 1rem;
    grid-template-areas: "logo menu phone cta";
    padding-bottom: 0;
  }

  .hero-content {
    padding: 3.1rem 0 3rem;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }

  .hero-facts article {
    padding: 0.3rem 0.1rem;
  }

  .top-nav {
    display: flex;
    justify-self: center;
  }

  .mobile-sticky-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 2.2rem;
  }

  .footer-main {
    grid-template-columns: 1.45fr 1fr;
    gap: 2rem;
    align-items: start;
  }

  .footer-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
  }

  .final-cta-inner {
    padding: 4.2rem 2rem;
  }

  .final-cta-inner .cta-row {
    gap: 0.9rem;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    gap: 2rem;
  }

  .cookie-banner {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(920px, calc(100% - 2rem));
  }

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

  .hero-stats article {
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .hero-stats article:last-child {
    border-right: 0;
  }

  .trust-row {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

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

  .locations-neighborhoods-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    row-gap: 0;
    grid-template-areas:
      "copy list1 list2"
      "copy list3 list3";
  }

  .locations-neighborhoods-copy {
    grid-area: copy;
  }

  .locations-neighborhoods-list:nth-of-type(1) {
    grid-area: list1;
  }

  .locations-neighborhoods-list:nth-of-type(2) {
    grid-area: list2;
  }

  .locations-neighborhoods-list:nth-of-type(3) {
    grid-area: list3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
  }

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

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

  .contact-grid {
    grid-template-columns: 1.4fr 0.65fr;
    gap: 2rem;
    align-items: start;
  }

  .contact-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0.8rem;
  }

  .contact-form-actions {
    grid-column: 1 / -1;
  }

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

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

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

}

@media (min-width: 1024px) {
  .section {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }

  .hero {
    padding-top: 3.6rem;
    padding-bottom: 3.8rem;
  }

  .final-cta {
    padding-top: 0;
    padding-bottom: 0;
  }

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

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

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

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

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

.services-showcase .services-intro {
  margin: 0 auto 1rem;
  max-width: 58ch;
  text-align: center;
  color: #435067;
}
