:root {
  --ink: #102033;
  --muted: #64748b;
  --line: #e6edf5;
  --soft: #f5f5f5;
  --white: #ffffff;
  --accent: #64b262;
  --accent-dark: #047857;
  --accent-light: #10b981;
  --orange: #ff8a1f;
  --green: #059669;
  --shadow: 0 24px 70px rgba(16, 32, 51, 0.12);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.top-bar {
  background: #02272c;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

.top-bar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.top-bar a {
  color: #6bb663;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(230, 237, 245, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.logo__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.03em;
  border-radius: 14px;
  background: linear-gradient(135deg, #26960aa1, var(--accent-dark));
  box-shadow: 0 12px 26px rgba(5, 150, 105, 0.3);
}

.logo__title {
  font-weight: 500;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #475569;
  font-size: 15px;
  font-weight: 700;
  flex: 1;
  justify-content: center;
}

.nav__links a {
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--accent);
}

.nav__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111827;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
}

@media (min-width:680px) and (max-width:780px) {
  .nav__status {
    display: none;
  }
}

@media (max-width:480px) {
  .nav__status {
    display: none;
  }
}

.nav__status span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #23df12;
  box-shadow: 0 0 0 3px rgba(35, 221, 162, 0.14);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.nav__phone {
  display: inline-flex;
  align-items: flex-end;
  color: var(--accent);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
  gap: 5px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(230, 237, 245, 0.92);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav__burger:hover {
  border-color: rgba(5, 150, 105, 0.35);
  background: rgba(5, 150, 105, 0.04);
}

.nav__burger-line {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #102033;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.is-menu-open .nav__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .nav__burger-line:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .nav__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn svg,
.service-area__phone svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background: linear-gradient(45deg, #fff, #9b9b9b27, #fff);
}



.hero::before {
  width: 520px;
  height: 520px;
  right: -230px;
  top: 100px;
  background: rgba(5, 150, 105, 0.08);
}

.hero::after {
  width: 260px;
  height: 260px;
  left: -120px;
  bottom: 40px;
  background: rgba(255, 138, 31, 0.12);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;

  background-size: cover;
  align-items: center;
  gap: 64px;

  border-radius: 40px;
  overflow: hidden;

  background-image: url('/wp-content/uploads/2026/06/hero4.jpg');
  background-size: cover;

}

.hero__content {
  padding: 40px 50px;
  background: linear-gradient(45deg, #02142c, #00000099, #ffffff00);
}

.hero__image {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  transform: scaleX(-1);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow {
  gap: 8px;
  padding: 10px 16px;
  color: #e9d30b;
  text-transform: none;
  letter-spacing: -0.01em;
  border: 1px solid rgba(5, 150, 105, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.089);
  box-shadow: 0 10px 28px rgba(16, 32, 51, 0.06);
}

.eyebrow::before {
  content: "";
  width: 11px;
  height: 11px;
  border: 2px solid var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin-top: -4px;
}

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

h1 {
  max-width: 720px;
  margin: 20px 0 22px;
  font-size: clamp(40px, 4vw, 66px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}

h2 {
  margin: 12px 0 18px;
  font-size: clamp(36px, 3vw, 58px);
  line-height: 120% !important;
  line-height: 1;
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.hero__text {
  max-width: 630px;
  color: var(--muted);
  font-size: 20px;
  color: #fff;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 34px 0 14px;
  flex-wrap: wrap;
}

.hero__actions p,
.final-cta small {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary:hover {
  box-shadow: 0 22px 40px rgba(5, 150, 105, 0.34);
}

.btn--light:hover {
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.18);
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, #26960aa1, var(--accent-dark));
  box-shadow: 0 18px 32px rgba(5, 150, 105, 0.28);
}

.btn--light {
  color: var(--accent);
  background: var(--white);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.14);
}

.rating {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  padding: 10px 14px;
  color: #fff;
  border: 1px solid rgba(78, 78, 78, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.062);
  box-shadow: 0 12px 30px rgba(16, 32, 51, 0.07);
  font-size: 14px;
  font-weight: 400;
}

.rating__stars {
  color: #fbbc04;

  letter-spacing: -2px;
  font-size: 24px;
}

.rating__score {
  color: var(--white);
  font-weight: 500;
}

.rating__google {
  margin-left: 20px;

  display: flex;
  align-items:center;
  gap:8px;
  
  color: var(--white);

  border-radius: 999px;

  font-size: 17px;
  font-weight: 300;
  font-family: Arial, sans-serif;
}

.rating__google img {
  width: 20px;
  height: 20px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.trust-row div {
  min-height: 86px;
  padding: 17px 16px;
  border: 1px solid rgb(0 0 0 / 25%);
  border-radius: 20px;
  background: rgb(244 244 244 / 9%);
  box-shadow: 0 10px 30px rgba(16, 32, 51, 0.06);
  color: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

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

.trust-row strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
}

.trust-row span {
  color: var(--muted);
  font-size: 13px;
}

.hero-card {
  position: relative;
  min-height: 610px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 38px;
  background:
    radial-gradient(circle at 20% 28%, rgba(255, 255, 255, 0.95), transparent 22%),
    radial-gradient(circle at 70% 42%, rgba(5, 150, 105, 0.18), transparent 26%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(5, 150, 105, 0.12)),
    repeating-linear-gradient(135deg, rgba(5, 150, 105, 0.06) 0 1px, transparent 1px 16px);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.08), rgba(255, 255, 255, 0.08));
}

.hero-card__badge {
  position: relative;
  z-index: 2;
  width: max-content;
  padding: 10px 16px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 14px 24px rgba(255, 138, 31, 0.28);
}

.appliance-illustration {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(74%, 360px);
  aspect-ratio: 0.82;
  transform: translate(-50%, -45%);
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #d1fae5 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.88),
    0 34px 80px rgba(16, 32, 51, 0.18);
}

.appliance-illustration__panel {
  position: absolute;
  left: 9%;
  top: 7%;
  width: 82%;
  height: 17%;
  border-radius: 18px;
  background: linear-gradient(90deg, #ecfdf5, #ffffff);
  box-shadow: inset 0 -1px 0 rgba(16, 32, 51, 0.08);
}

.appliance-illustration__dial {
  position: absolute;
  right: 16%;
  top: 10%;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: radial-gradient(circle, #ffffff 0 32%, var(--accent) 34% 100%);
}

.appliance-illustration__door {
  position: absolute;
  left: 50%;
  top: 55%;
  width: 58%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 18px solid #bbf7d0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.9), transparent 22%),
    linear-gradient(145deg, #6ee7b7, #059669);
  box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.16);
}

.appliance-illustration__shine {
  position: absolute;
  right: -18px;
  bottom: 70px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.24);
  filter: blur(2px);
}

.hero-card__footer {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(16, 32, 51, 0.13);
  backdrop-filter: blur(14px);
}

.hero-card__footer span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-card__footer strong {
  color: var(--green);
  white-space: nowrap;
}

.reviews {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f5 100%);
}

.reviews__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.reviews__top h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(34px, 3.6vw, 52px);
}

.reviews__controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews__arrow {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--accent);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.reviews__arrow svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.reviews__arrow:hover:not(:disabled) {
  transform: translateY(-2px);
}

.reviews__arrow:disabled {
  cursor: default;
  opacity: 0.35;
}

.reviews__viewport {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-block: 16px;
  margin-block: -16px;
}

.reviews__viewport::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 calc((100% - 64px) / 5);
  min-height: 282px;
  padding: 20px;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: none;
}

.review-card__author {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-card__source {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: contain;
}

.review-card__author strong,
.review-card__author span {
  display: block;
}

.review-card__author strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.review-card__author span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.review-card__stars {
  margin-bottom: 14px;
  color: #fbbc04;
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.review-card p {
  display: -webkit-box;
  margin-bottom: 0;
  overflow: hidden;
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.repairs {
  padding: 60px 0;
  background: linear-gradient(180deg, #f4f4f5 0%, #ffffff 100%);
}

.repairs__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.repairs__top h2 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: clamp(34px, 3.6vw, 52px);
}

.repairs__lead {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.repairs__controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.repairs__arrow {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--accent);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.repairs__arrow svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.repairs__arrow:hover:not(:disabled) {
  transform: translateY(-2px);
}

.repairs__arrow:disabled {
  cursor: default;
  opacity: 0.35;
}

.repairs__viewport {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-block: 16px;
  margin-block: -16px;
}

.repairs__viewport::-webkit-scrollbar {
  display: none;
}

.repair-card {
  flex: 0 0 calc((100% - 32px) / 3);
  min-height: 320px;
  padding: 0;
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: none;
}

.repair-card__image {
  height: 140px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.repair-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.repair-card h3 {
  margin: 0;
  padding: 18px 20px 10px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.repair-card p {
  display: -webkit-box;
  margin: 0;
  padding: 0 20px 20px;
  overflow: hidden;
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.section {
  padding: 60px 0;
}

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

.section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}



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

.section-heading p,
.why__content>p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 310px;
  padding: 24px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(16, 32, 51, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(5, 150, 105, 0.22);
  box-shadow: 0 24px 54px rgba(16, 32, 51, 0.11);
}

.service-card__icon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--accent);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.13));
}

.service-card__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: rgb(71 160 94);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.service-card p,
.service-card__cta {
  position: relative;
  z-index: 1;
}

.service-card p {
  flex: 1;
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.55;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  font-weight: 500;
}

.service-card__arrow {
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
  line-height: 1;
  transition: transform 0.2s ease;
}

.service-card:hover .service-card__arrow {
  transform: translateX(3px);
}

.process {
  position: relative;
}

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

.step-card {
  position: relative;
  padding: 34px;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(5, 150, 105, 0.32), rgba(16, 185, 129, 0.1)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 18px 46px rgba(16, 32, 51, 0.07);
}

.step-card__icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  color: var(--accent);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.13));
}

.step-card__icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card__ghost-number {
  position: absolute;
  top: 18px;
  right: 24px;
  color: #0596691a;
  font-size: 82px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
}

.step-card h3,
.step-card p {
  position: relative;
  z-index: 1;
}

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

.step-card a {
  color: var(--accent);
  font-weight: 900;
}

.process__cta {
  display: flex;
  width: fit-content;
  margin: 34px auto 0;
}

.why {
  padding: 108px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 30%, rgba(5, 150, 105, 0.22), transparent 28%),
    linear-gradient(135deg, #02142c 0%, #02142c 58%, #059669 100%);
}

.why__grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 70px;
}

.why__visual {
  position: relative;
  min-height: 520px;
  border-radius: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 58% 38%, rgba(255, 255, 255, 0.2), transparent 18%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
}

.why__visual::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 290px;
  height: 360px;
  transform: translate(-50%, -50%) rotate(-5deg);
  border-radius: 34px;
  background:
    linear-gradient(180deg, #f8fffb, #bbf7d0),
    repeating-linear-gradient(90deg, transparent 0 10px, rgba(5, 150, 105, 0.14) 10px 12px);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

.why__visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%) rotate(-5deg);
  border-radius: 999px;
  border: 18px solid #bbf7d0;
  background: linear-gradient(145deg, var(--accent-light), var(--accent));
}

.tool-card {
  position: absolute;
  z-index: 2;
  padding: 14px 18px;
  color: var(--ink);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  font-size: 14px;
  font-weight: 900;
}

.tool-card--one {
  left: 28px;
  top: 42px;
}

.tool-card--two {
  right: 24px;
  bottom: 42px;
}

.tool-shape {
  position: absolute;
  right: 46px;
  top: 74px;
  z-index: 2;
  width: 74px;
  height: 74px;
  border-radius: 24px;
  background: var(--orange);
  transform: rotate(16deg);
  box-shadow: 0 18px 40px rgba(255, 138, 31, 0.28);
}

.why .section-kicker,
.final-cta .section-kicker {
  color: #6ee7b7;
}

.why__content h2 {
  color: var(--white);
}

.why__content>p {
  color: rgba(255, 255, 255, 0.74);
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 34px 0;
}

.features article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.features h3 {
  color: var(--white);
  font-size: 19px;
}

.features p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.brands-section {
  overflow: hidden;
}

.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}

.brand-cloud span {
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #334155;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 32, 51, 0.05);
  font-weight: 800;
}

.trust-row div,
.review-card,
.repair-card,
.step-card,
.brand-cloud span {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.trust-row div:hover,
.step-card:hover,
.brand-cloud span:hover {
  transform: translateY(-5px);
}

.review-card:hover,
.repair-card:hover {
  transform: translateY(-3px);
}

.step-card:hover,
.brand-cloud span:hover {
  border-color: rgba(5, 150, 105, 0.22);
  box-shadow: 0 24px 54px rgba(16, 32, 51, 0.11);
}

.review-card:hover,
.repair-card:hover {
  border-color: rgba(5, 150, 105, 0.18);
  box-shadow: 0 8px 20px rgba(16, 32, 51, 0.08);
}

.trust-row div:hover {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.brands-cta {
  display: grid;
  place-items: center;
  gap: 18px;
  margin-top: 42px;
  text-align: center;
}

.brands-cta p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.service-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.service-area__content {
  max-width: 590px;
}

.service-area__content h2 {
  margin-bottom: 22px;
}

.service-area__content p {
  color: var(--muted);
  font-size: 18px;
}

.service-area__details {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.service-area__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  color: var(--white);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 18px 32px rgba(5, 150, 105, 0.24);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.service-area__details span {
  color: var(--green);
  font-weight: 500;
}

.service-area__image-placeholder {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;

  border-radius: 36px;
  background:
    radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.9), transparent 22%),
    radial-gradient(circle at 74% 38%, rgba(5, 150, 105, 0.18), transparent 28%),
    linear-gradient(145deg, #0596691a 0%, #ffffff 48%, #d1fae5 100%);
  box-shadow: var(--shadow);

  background-image: url('/wp-content/uploads/2026/06/map.jpg');
  background-size: cover;
  background-position: 50% 50%;
}

.service-area__image-placeholder::before,
.service-area__image-placeholder::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.service-area__image-placeholder::before {
  inset: 34px;
  border: 1px dashed rgba(5, 150, 105, 0.3);
  border-radius: 28px;
  background:
    linear-gradient(135deg, transparent 49.5%, rgba(5, 150, 105, 0.16) 50%, transparent 50.5%),
    linear-gradient(45deg, transparent 49.5%, rgba(5, 150, 105, 0.16) 50%, transparent 50.5%);
}

.service-area__image-placeholder::after {
  width: 210px;
  height: 210px;
  right: -66px;
  bottom: -54px;
  border-radius: 999px;
  background: rgba(255, 138, 31, 0.14);
}

.service-area__image-placeholder span {
  position: relative;
  z-index: 1;
  padding: 12px 18px;
  color: var(--accent);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.09);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 56px;
}

.faq-image-placeholder {
  width: 100%;
  position: relative;

  overflow: hidden;

  border-radius: 36px;
  background-image: url('/wp-content/uploads/2026/06/callus.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  height: auto;
  height: 750px;
}





.faq-image-placeholder::after {
  width: 210px;
  height: 210px;
  right: -66px;
  bottom: -54px;
  border-radius: 999px;
  background: rgba(255, 138, 31, 0.14);
}

.faq-image-placeholder span {
  position: relative;
  z-index: 1;
  padding: 12px 18px;
  color: var(--accent);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.09);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-content {
  min-width: 0;
}

.faq-content .section-heading {
  margin-bottom: 32px;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 32, 51, 0.05);
}

summary {
  position: relative;
  cursor: pointer;
  padding: 24px 58px 24px 26px;
  list-style: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  color: var(--accent);
  border-radius: 999px;
  background: #0596691a;
  font-size: 22px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: -8px 26px 24px;
  color: var(--muted);
}

.final-cta {
  padding: 44px 0 112px;
  background: linear-gradient(180deg, #ffffff 0%, #0596691a 100%);
}

.final-cta__box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: 44px;
  padding: 58px;
  color: var(--white);
  border-radius: 40px;
  background:
    radial-gradient(circle at 82% 24%, rgba(5, 150, 105, 0.3), transparent 24%),
    radial-gradient(circle at 8% 86%, rgba(255, 138, 31, 0.24), transparent 22%),
    linear-gradient(135deg, #02142c, #059669);
  box-shadow: 0 28px 80px rgba(5, 150, 105, 0.26);
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p,
.final-cta small {
  display: block;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .btn {
  margin: 12px 0 16px;
}

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

.final-cta__stats span {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
  line-height: 1.25;
}

.footer {
  color: rgba(255, 255, 255, 0.7);
  background: #02272c;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(270px, 1.45fr) 0.8fr 1fr 0.8fr;
  gap: 42px;
  padding: 70px 0 44px;
}

.logo--footer {
  margin-bottom: 20px;
  color: var(--white);
}

.footer h3 {
  color: var(--white);
  font-size: 16px;
  letter-spacing: -0.02em;
}

.footer a {
  display: flex;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.76);
}

.footer p {
  color: rgba(255, 255, 255, 0.64);
}

.footer strong {
  color: rgba(255, 255, 255, 0.92);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.footer__bottom p {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .nav {
    position: relative;
    flex-wrap: wrap;
  }

  .nav__burger {
    display: flex;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    right: auto;
    width: 100vw;
    max-width: 100vw;
    transform: translateX(-50%);
    flex: none;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(230, 237, 245, 0.92);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 18px 40px rgba(16, 32, 51, 0.08);
    backdrop-filter: blur(18px);
    overflow: hidden;
  }

  .nav__links a {
    padding: 14px 24px;
    font-size: 16px;
  }

  .nav__links a:hover {
    background: rgba(5, 150, 105, 0.06);
  }

  .site-header.is-menu-open .nav__links {
    display: flex;
  }
}

@media (max-width: 1020px) {

  .hero__grid,
  .why__grid,
  .service-area,
  .faq-layout,
  .final-cta__box {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 500px;
  }

  .service-area__image-placeholder,
  .faq-image-placeholder {
    min-height: 420px;
  }

  .trust-row,
  .services-grid,
  .steps,
  .features,
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-card,
  .repair-card {
    flex-basis: calc((100% - 32px) / 3);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .top-bar__inner {
    flex-direction: column;
    gap: 2px;
    padding: 9px 0;
  }

  .nav {
    height: auto;
    padding: 16px 0;
    align-items: flex-start;
  }

  .logo {
    font-size: 16px;
  }

  .nav__actions {
    gap: 12px;
  }

  .nav__phone {
    display: none;
  }

  .hero,
  .section,
  .why {
    padding: 40px 0;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .hero__text,
  .section-heading p,
  .why__content>p,
  .final-cta p {
    font-size: 16px;
  }

  .hero__actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .trust-row,
  .services-grid,
  .steps,
  .features,
  .footer__grid,
  .final-cta__stats {
    grid-template-columns: 1fr;
  }

  .reviews,
  .repairs {
    padding: 64px 0;
  }

  .reviews__top,
  .repairs__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .reviews__controls,
  .repairs__controls {
    width: 100%;
    justify-content: flex-end;
  }

  .review-card {
    flex-basis: 100%;
    min-height: 250px;
  }

  .repair-card {
    flex-basis: 100%;
    min-height: 300px;
  }

  .service-card,
  .step-card {
    padding: 24px;
  }

  .hero-card,
  .why__visual,
  .service-area__image-placeholder,
  .faq-image-placeholder {
    min-height: 430px;
    border-radius: 28px;
  }

  .hero-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta {
    padding-bottom: 72px;
  }

  .final-cta__box {
    padding: 32px 22px;
    border-radius: 30px;
  }

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

  .hero__content {
    padding: 15px 20px;
  }

  .rating {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    background: none;
    border: none;
  }

  .rating__google {
    margin: 0;
  }

  .brand-cloud span {
    font-weight: 500;
    font-size: 16px;
    padding: 14px 16px;
  }

  .faq-image-placeholder {
    display: none;
  }
}