:root {
  --ink: #111827;
  --muted: #637184;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --line: #dce5ee;
  --navy: #071428;
  --steel: #26384f;
  --blue: #0d5a9c;
  --ice: #dceff9;
  --gold: #f3ad2f;
  --green: #14735b;
  --red: #c94435;
  --shadow-sm: 0 12px 28px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 24px 64px rgba(15, 23, 42, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0, #f7f9fc 100%);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(13, 90, 156, 0.28);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
p,
dl,
dd,
ul {
  margin: 0;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 14px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  min-height: 66px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
  padding: 10px 12px 10px 18px;
  color: #fff;
  background: rgba(7, 20, 40, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(7, 20, 40, 0.28);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-grid;
  gap: 3px;
  justify-items: start;
  color: #fff;
  text-decoration: none;
}

.brand img {
  width: clamp(136px, 12vw, 172px);
  height: auto;
}

.brand strong {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 4px;
  padding: 5px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 6px;
  transition: background 0.18s ease, color 0.18s ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.11);
}

.site-nav a,
.header-call {
  text-decoration: none;
}

.site-nav a:hover,
.header-call:hover,
.site-footer a:hover {
  color: var(--gold);
}

.header-call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(243, 173, 47, 0.74);
  border-radius: var(--radius);
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(0deg, rgba(244, 247, 251, 1), rgba(244, 247, 251, 0));
  pointer-events: none;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 40, 0.97), rgba(7, 20, 40, 0.78) 45%, rgba(7, 20, 40, 0.2)),
    linear-gradient(0deg, rgba(7, 20, 40, 0.66), rgba(7, 20, 40, 0.04) 46%),
    url("./assets/refrigerator.jpg") center / cover no-repeat;
  transform: scale(1.01);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  gap: 42px;
  margin: 0 auto;
  padding: 146px 0 86px;
}

.hero__copy {
  display: grid;
  align-content: end;
  gap: 24px;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  font-size: clamp(46px, 6.2vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

.hero__actions,
.hero__proof,
.request-form,
.section-cta,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: #171100;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 16px 34px rgba(243, 173, 47, 0.26);
}

.button--primary:hover {
  background: #ffc85d;
  border-color: #ffc85d;
}

.button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
}

.button--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.button--dark {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 14px 30px rgba(7, 20, 40, 0.18);
}

.hero__micro {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.5;
}

.diagnostic-card {
  align-self: end;
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.diagnostic-card__tag {
  width: fit-content;
  padding: 7px 10px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.diagnostic-card strong {
  font-size: 28px;
  line-height: 1.12;
}

.diagnostic-card ul,
.section--split ul {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.diagnostic-card li {
  color: rgba(255, 255, 255, 0.83);
  line-height: 1.45;
}

.diagnostic-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.hero__proof {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.hero__proof div {
  flex: 1 1 240px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero__proof dt {
  margin-bottom: 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__proof dd {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.request-panel,
.section,
.final-cta,
.site-footer {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
}

.request-panel {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: 34px;
  align-items: start;
  padding: 30px;
  margin-top: -50px;
  border: 1px solid rgba(220, 229, 238, 0.9);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.request-panel h2,
.section h2,
.final-cta h2 {
  margin-top: 8px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.request-panel p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  justify-content: stretch;
}

.request-form label {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.request-form span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--soft);
  font: inherit;
}

.request-form input,
.request-form select {
  height: 54px;
}

.request-form textarea {
  min-height: 96px;
  padding-top: 13px;
  padding-bottom: 13px;
  line-height: 1.45;
  resize: vertical;
}

.request-form__wide {
  grid-column: 1 / -1;
}

.request-form button {
  grid-column: 1 / -1;
  align-self: end;
  width: 100%;
}

.request-form select {
  appearance: none;
  padding-right: 38px;
  background:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%),
    var(--soft);
  background-position: calc(100% - 20px) 24px, calc(100% - 14px) 24px, 0 0;
  background-size: 6px 6px, 6px 6px, 100%;
  background-repeat: no-repeat;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: 3px solid rgba(13, 90, 156, 0.18);
  border-color: var(--blue);
  background: #fff;
}

.form-note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  text-align: right;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(13, 90, 156, 0.18);
  border-radius: var(--radius);
  color: var(--navy);
  background: rgba(220, 239, 249, 0.68);
  font-size: 14px;
  font-weight: 800;
}

.form-status--error {
  border-color: rgba(220, 38, 38, 0.24);
  color: #8b1e1e;
  background: rgba(255, 235, 235, 0.86);
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.section {
  padding: 86px 0;
}

.section__head {
  max-width: 850px;
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.section__head p:not(.eyebrow),
.seo-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 42px;
  padding-bottom: 56px;
}

.trust-strip div,
.process-grid div,
.reputation-grid div {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.trust-strip div,
.process-grid div,
.service-card {
  min-height: 100%;
}

.trust-strip strong,
.process-grid strong,
.service-card strong {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
}

.trust-strip span,
.process-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.reputation-block {
  padding-top: 44px;
  padding-bottom: 58px;
}

.reputation-block .section__head {
  max-width: 760px;
}

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

.reputation-card {
  position: relative;
  min-height: 214px;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(220, 229, 238, 0.92);
  border-radius: var(--radius);
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(220, 239, 249, 0.72)),
    #fff;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.reputation-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: rgba(243, 173, 47, 0.18);
}

.reputation-card:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 90, 156, 0.28);
  box-shadow: var(--shadow-md);
}

.reputation-card__platform {
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(13, 90, 156, 0.08);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.reputation-card__stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 1;
}

.reputation-card strong {
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: 0;
}

.reputation-card em {
  color: var(--muted);
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
}

.reputation-card small {
  margin-top: auto;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.company-block {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 36px;
  padding: 42px;
  border: 1px solid rgba(220, 229, 238, 0.95);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 251, 0.94)),
    #fff;
  box-shadow: var(--shadow-md);
}

.company-block.section {
  padding-top: 42px;
  padding-bottom: 42px;
}

.company-block__media {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: 230px 230px;
  gap: 14px;
}

.company-photo {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow-sm);
}

.company-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 20, 40, 0), rgba(7, 20, 40, 0.18));
  pointer-events: none;
}

.company-photo--wide {
  grid-row: 1 / span 2;
}

.company-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-block__copy {
  display: grid;
  gap: 15px;
}

.company-block__copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.company-block__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.company-block__points span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--steel);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.company-block__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding-top: 8px;
}

.company-block__stats div {
  padding: 18px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--navy);
}

.company-block__stats dt {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.company-block__stats dd {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.section--services {
  padding-top: 54px;
}

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

.service-card {
  display: grid;
  grid-template-rows: 260px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.service-card div {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.58;
}

.section-cta {
  margin-top: 28px;
}

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

.process-grid div {
  align-content: start;
}

.process-grid span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--gold);
  font-weight: 800;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 34px;
  align-items: center;
  padding: 38px;
  border: 1px solid rgba(220, 229, 238, 0.95);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(220, 239, 249, 0.92), rgba(255, 255, 255, 0.96)),
    #fff;
  box-shadow: var(--shadow-md);
}

.section--split p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.section--split li {
  position: relative;
  padding: 15px 16px 15px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  line-height: 1.5;
}

.section--split li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 17px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.seo-resource-block {
  padding-top: 34px;
  padding-bottom: 66px;
}

.seo-resource-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.6fr);
  gap: 20px;
  align-items: start;
  padding: 26px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 246, 252, 0.88)),
    #fff;
  box-shadow: var(--shadow-sm);
}

.seo-resource-intro {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

.seo-resource-intro h2 {
  max-width: 460px;
}

.seo-resource-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.seo-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.seo-resource-grid div {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.seo-resource-grid strong {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 18px;
}

.seo-resource-grid strong::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.seo-resource-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: var(--steel);
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.seo-resource-grid a::after {
  content: "›";
  color: var(--blue);
  font-size: 18px;
}

.seo-resource-grid a:hover {
  color: var(--blue);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.area-grid a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--steel);
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.area-grid a:hover {
  transform: translateY(-1px);
  border-color: rgba(13, 90, 156, 0.32);
  box-shadow: var(--shadow-sm);
}

.section--seo {
  width: 100%;
  padding-left: max(18px, calc((100vw - 1220px) / 2));
  padding-right: max(18px, calc((100vw - 1220px) / 2));
  background: #eef4f9;
}

.seo-copy {
  max-width: 970px;
  display: grid;
  gap: 14px;
}

.seo-disclaimer {
  max-width: 860px;
  font-size: 15px !important;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

summary {
  padding: 19px 21px;
  font-weight: 800;
  cursor: pointer;
}

details p {
  padding: 0 21px 21px;
  color: var(--muted);
  line-height: 1.65;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 72px;
  padding: 36px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 20, 40, 0.95), rgba(38, 56, 79, 0.84)),
    url("./assets/kitchen-appliance.jpg") center / cover no-repeat;
  box-shadow: var(--shadow-md);
}

.final-cta .eyebrow {
  color: var(--gold);
}

.final-cta p:not(.eyebrow) {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.55;
}

.site-footer {
  display: grid;
  gap: 24px;
  padding: 42px 0 26px;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(160px, 0.7fr) minmax(220px, 0.95fr) minmax(210px, 0.8fr);
  gap: 30px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 8px;
  max-width: 430px;
}

.footer-brand img {
  width: 220px;
  max-width: 100%;
  height: auto;
  margin-bottom: 4px;
}

.footer-links,
.footer-contact,
.footer-action {
  display: grid;
  gap: 9px;
}

.footer-links strong,
.footer-contact strong,
.footer-action strong,
.footer-brand strong {
  color: var(--navy);
}

.footer-links a,
.footer-contact a {
  color: var(--steel);
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--blue);
}

.footer-action {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.footer-action p {
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-bottom span {
  font-size: 14px;
}

.site-footer p,
.site-footer address,
.site-footer span {
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}

.mobile-cta {
  display: none;
}

.breadcrumb {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 110px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.city-hero {
  min-height: auto;
  align-items: start;
}

.city-hero .hero__inner {
  grid-template-columns: minmax(0, 1fr);
  padding-top: 64px;
  padding-bottom: 72px;
}

.city-hero h1 {
  max-width: 980px;
}

.city-hero .hero__copy {
  max-width: 980px;
}

.city-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.city-proof div {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.city-proof div::after {
  content: "";
  position: absolute;
  right: -26px;
  top: -26px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(243, 173, 47, 0.16);
}

.city-proof__icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--navy) !important;
  background: var(--gold);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.city-proof__icon--urgent {
  color: #fff !important;
  background: var(--red);
}

.city-proof strong {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.15;
}

.city-proof span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.35;
}

.city-page .request-panel {
  margin-top: -34px;
}

.city-review-strip {
  width: min(1220px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px auto 0;
}

.city-review-strip a {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 18px 20px;
  border: 1px solid rgba(220, 229, 238, 0.95);
  border-radius: var(--radius);
  color: var(--navy);
  background: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.city-review-strip span {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1;
}

.city-review-strip strong {
  font-size: 16px;
}

.city-content {
  width: min(1220px, calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 28px;
  margin: 0 auto;
  padding: 72px 0;
}

.city-main,
.city-sidebar {
  display: grid;
  gap: 18px;
}

.city-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.city-card h2,
.city-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  line-height: 1.12;
}

.city-card p,
.city-card li {
  color: var(--muted);
  line-height: 1.68;
}

.city-card ul {
  display: grid;
  gap: 9px;
  padding-left: 19px;
}

.city-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.city-service-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.city-service-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 17px;
}

.city-service-grid p {
  font-size: 15px;
}

.related-pages-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(13, 90, 156, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 246, 252, 0.92)),
    #fff;
}

.related-pages-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.related-pages-card h2,
.related-pages-card h3 {
  position: relative;
  padding-top: 3px;
}

.related-pages-card > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.city-service-grid--links div {
  display: grid;
  align-content: start;
  gap: 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.74);
}

.city-service-grid--links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 10px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  color: var(--steel);
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.city-service-grid--links a::after {
  content: "›";
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(13, 90, 156, 0.08);
  font-size: 18px;
  line-height: 1;
}

.city-service-grid--links a:hover {
  color: var(--blue);
}

.city-local-card {
  border-color: rgba(13, 90, 156, 0.18);
  background:
    linear-gradient(135deg, rgba(220, 239, 249, 0.72), rgba(255, 255, 255, 0.98)),
    #fff;
}

.city-sidebar .city-card {
  background:
    linear-gradient(135deg, rgba(220, 239, 249, 0.86), rgba(255, 255, 255, 0.96)),
    #fff;
}

.city-nearby {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 9px;
}

.city-nearby a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: var(--radius);
  color: var(--steel);
  background: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.city-nearby a::after {
  content: "›";
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 18px;
  line-height: 1;
}

.city-nearby a:hover {
  transform: translateY(-1px);
  border-color: rgba(13, 90, 156, 0.34);
  color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.city-faq details + details {
  margin-top: 10px;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 20, 40, 0.96), rgba(38, 56, 79, 0.9)),
    url("./assets/technicians.jpg") center / cover no-repeat;
}

.thanks {
  width: min(760px, 100%);
  display: grid;
  gap: 22px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.thanks h1 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.04;
}

.thanks p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.65;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .header-call {
    font-size: 14px;
  }

  .hero__inner,
  .request-panel,
  .section--split,
  .final-cta,
  .site-footer,
  .city-content {
    grid-template-columns: 1fr;
  }

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

  .city-review-strip,
  .city-service-grid {
    grid-template-columns: 1fr;
  }

  .seo-resource-layout {
    grid-template-columns: 1fr;
  }

  .seo-resource-intro {
    position: static;
  }

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

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

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

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

@media (max-width: 700px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 62px;
    padding: 9px 12px;
  }

  .brand img {
    width: 134px;
  }

  .brand strong {
    font-size: 9px;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__media {
    background:
      linear-gradient(180deg, rgba(7, 20, 40, 0.92), rgba(7, 20, 40, 0.78)),
      url("./assets/refrigerator.jpg") center top / cover no-repeat;
  }

  .hero__inner {
    gap: 22px;
    padding-top: 112px;
    padding-bottom: 46px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 54px);
    line-height: 1.02;
  }

  .button,
  .hero__proof div {
    width: 100%;
  }

  .hero__lead {
    font-size: 17px;
  }

  .request-panel {
    width: 100%;
    margin-top: 0;
    padding: 24px 18px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .request-form {
    grid-template-columns: 1fr;
  }

  .request-form input,
  .request-form select,
  .request-form textarea {
    font-size: 16px;
  }

  .form-note {
    text-align: left;
  }

  .section {
    padding: 62px 0;
  }

  .trust-strip,
  .process-grid,
  .reputation-grid,
  .area-grid,
  .seo-resource-grid,
  .company-block {
    grid-template-columns: 1fr;
  }

  .company-block__media {
    grid-template-rows: 220px 220px;
  }

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

  .section--split {
    width: calc(100% - 36px);
    padding: 26px;
  }

  .service-card {
    grid-template-rows: 230px 1fr;
  }

  .service-card img {
    height: 230px;
  }

  .final-cta {
    width: calc(100% - 36px);
    margin-bottom: 84px;
    padding: 26px;
  }

  .site-footer {
    align-items: start;
    padding-bottom: 96px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 40;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 10px;
    padding: 10px;
    background: rgba(7, 20, 40, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 -16px 34px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
  }

  .mobile-cta a:first-child {
    color: var(--navy);
    background: var(--gold);
  }

  .mobile-cta a:last-child {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand strong {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .hero__inner,
  .request-panel,
  .section,
  .final-cta,
  .site-footer,
  .city-content,
  .breadcrumb,
  .city-review-strip {
    width: calc(100% - 28px);
  }

  .footer-main,
  .footer-bottom,
  .seo-resource-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .request-panel {
    width: 100%;
  }

  .hero__inner {
    padding-top: 104px;
  }

  h1 {
    font-size: 36px;
  }

  .request-panel h2,
  .section h2,
  .final-cta h2 {
    font-size: 28px;
    line-height: 1.12;
  }

  .diagnostic-card,
  .section--split,
  .final-cta {
    padding: 22px;
  }

  .company-block__media {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 190px 190px;
  }

  .company-photo--wide {
    grid-row: auto;
  }

  .company-block__stats {
    grid-template-columns: 1fr;
  }

  .diagnostic-card strong {
    font-size: 24px;
  }

  .mobile-cta {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}

.services-overview,
.process-section,
.area-section,
.faq-section,
.cta-band {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 88px;
}

.section-heading {
  max-width: 760px;
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section-heading h2 {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.link-grid,
.faq-grid,
.three-column-copy {
  display: grid;
  gap: 16px;
}

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

.link-grid a {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: var(--radius);
  color: var(--steel);
  background: #fff;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.link-grid a::after {
  content: "›";
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 20px;
  line-height: 1;
}

.link-grid a:hover {
  transform: translateY(-1px);
  border-color: rgba(13, 90, 156, 0.34);
  color: var(--blue);
  box-shadow: var(--shadow-sm);
}

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

.three-column-copy article,
.faq-grid article {
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 246, 252, 0.9)),
    #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.three-column-copy h3,
.faq-grid h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
}

.three-column-copy p,
.faq-grid p {
  color: var(--muted);
  line-height: 1.7;
}

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

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

.promise-strip > div,
.decision-grid > div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.promise-strip strong,
.decision-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 17px;
}

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

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(13, 90, 156, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(220, 239, 249, 0.82), rgba(255, 255, 255, 0.98)),
    #fff;
  box-shadow: var(--shadow-sm);
}

.cta-band h2 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.02;
}

.cta-band p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

.cta-band__actions {
  display: grid;
  gap: 10px;
}

@media (max-width: 980px) {
  .three-column-copy,
  .faq-grid,
  .promise-strip,
  .decision-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .cta-band__actions {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .city-card,
  .cta-band {
    padding: 22px;
  }

  .city-nearby {
    grid-template-columns: 1fr;
  }

  .city-service-grid--links a,
  .city-nearby a {
    min-height: 52px;
    font-size: 14px;
  }
}
