:root {
  --ink: #102033;
  --muted: #64748b;
  --line: #e6edf5;
  --soft: #f5f5f5;
  --white: #ffffff;
  --primary: #e50e3c;
  --primary-dark: #c40b33;
  --accent: #1d4ed8;
  --accent-dark: #1e40af;
  --accent-light: #3b82f6;
  --orange: #ff8a1f;
  --green: #1d4ed8;
  --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: #60a5fa;
  font-weight: 700;
}

.hero-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 42px);
  margin-top: -84px;
  padding-top: 84px;
  background: url("/wp-content/uploads/2026/07/hero_bg.jpg") center / cover no-repeat;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 20, 44, 0.68) 0%, rgba(2, 20, 44, 0.48) 100%);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  flex-shrink: 0;
  background: transparent;
  
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(230, 237, 245, 0.92);
  backdrop-filter: blur(18px);
}

.site-header.is-menu-open:not(.is-scrolled) {
  background: rgba(2, 20, 44, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.site-header--inner:not(.is-scrolled) {
  background: rgba(2, 20, 44, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.site-header--inner:not(.is-scrolled) .logo>span:not(.logo__mark),
.site-header--inner:not(.is-scrolled) .nav__links a,
.site-header--inner:not(.is-scrolled) .nav__status {
  color: rgba(255, 255, 255, 0.95);
}

.site-header--inner:not(.is-scrolled) .nav__links a:hover {
  color: #fff;
}

.site-header--inner:not(.is-scrolled) .nav__burger {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.site-header--inner:not(.is-scrolled) .nav__burger-line {
  background: #fff;
}

.site-header:not(.is-scrolled) .logo>span:not(.logo__mark),
.site-header:not(.is-scrolled) .nav__links a,
.site-header:not(.is-scrolled) .nav__status {
  color: rgba(255, 255, 255, 0.95);
}

.site-header:not(.is-scrolled) .nav__links {
  background: transparent;
}

.site-header:not(.is-scrolled) .nav__links a:hover {
  color: #fff;
}

.site-header.is-menu-open.is-scrolled .nav__links a {
  color: #475569;
}

.site-header.is-menu-open.is-scrolled .nav__links a:hover {
  color: var(--accent);
}

.site-header:not(.is-scrolled) .nav__burger {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.site-header:not(.is-scrolled) .nav__burger-line {
  background: #fff;
}

.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 {
  display: block;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(29, 78, 216, 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(29, 78, 216, 0.35);
  background: rgba(29, 78, 216, 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;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 40px 0 0;
}

.hero__container {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.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: #c5cdd8;
  text-transform: none;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255, 255, 255, 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(--primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin-top: -4px;
}

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

h1 {
  max-width: 820px;
  margin: 20px auto 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: 680px;
  margin: 0 auto;
  color: #fff;
  font-size: 20px;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: 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(229, 14, 60, 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, #f43f5e, var(--primary-dark));
  box-shadow: 0 18px 32px rgba(229, 14, 60, 0.28);
}

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

.hero__content .rating {
  margin: 0 auto 18px;
}

.hero__content h1 {
  margin-top: 0;
  line-height: 1.08;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 640px;
  margin: 20px auto 0;
}

.hero-stats__item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 18px;
  text-align: center;
}

.hero-stats__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.16);
}

.hero-stats__item strong {
  color: #fff;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-stats__item span {
  color: #9ca3af;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  max-width: 120px;
}

.hero-perks {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: auto;
  padding: 16px 0;
  background: linear-gradient(90deg, rgba(10, 18, 32, 0.92), rgba(20, 14, 28, 0.94));
  border-top: 1px solid rgba(229, 14, 60, 0.35);
  backdrop-filter: blur(14px);
}

.hero-perks__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 0;
}

.hero-perks__inner span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.hero-perks__inner span:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-perks__inner span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(229, 14, 60, 0.18);
  flex-shrink: 0;
}

.rating {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 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;
  width: 100%;
}

.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(29, 78, 216, 0.18), transparent 26%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(29, 78, 216, 0.12)),
    repeating-linear-gradient(135deg, rgba(29, 78, 216, 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(29, 78, 216, 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%, #dbeafe 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, #eff6ff, #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 #bfdbfe;
  border-radius: 999px;
  background:
    radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.9), transparent 22%),
    linear-gradient(145deg, #93c5fd, #1d4ed8);
  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(29, 78, 216, 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: 72px 0;
  background: #f8fafc;
}

.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: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-block: 8px 16px;
  margin-block: -8px -16px;
}

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

.review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  display: flex;
  flex-direction: column;
  min-height: 268px;
  padding: 24px;
  scroll-snap-align: start;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: #eef2f7;
  box-shadow: 0 10px 28px rgba(16, 32, 51, 0.04);
}

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

.review-card__text {
  flex: 1;
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.review-card__footer {
  position: relative;
  margin-top: 18px;
  padding-top: 16px;
}

.review-card__footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 32, 51, 0.14) 18%, rgba(16, 32, 51, 0.14) 82%, transparent);
}

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

.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;
}

.gallery__viewport {
  overflow: hidden;
  border-radius: 28px;
}

.gallery__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: gallery-scroll 36s linear infinite;
}

.gallery__viewport:hover .gallery__track {
  animation-play-state: paused;
}

@keyframes gallery-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.gallery__item {
  flex: 0 0 calc((min(1180px, 100vw - 40px) - 48px) / 4);
  height: 220px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 32, 51, 0.06);
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gallery__item:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 78, 216, 0.22);
  box-shadow: 0 18px 40px rgba(16, 32, 51, 0.1);
}

.gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox.is-open {
  display: grid;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 18, 38, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.gallery-lightbox__stage {
  position: relative;
  z-index: 1;
  max-width: min(1100px, calc(100vw - 120px));
  max-height: calc(100vh - 120px);
}

.gallery-lightbox__stage img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  cursor: pointer;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.gallery-lightbox__close {
  top: 24px;
  right: 24px;
}

.gallery-lightbox__close svg,
.gallery-lightbox__nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.gallery-lightbox__nav--prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox__nav--next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox__nav--prev:hover,
.gallery-lightbox__nav--next:hover {
  transform: translateY(calc(-50% - 2px));
}

.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__header p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
}

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

.appliance-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  padding-bottom: 24px;
  box-shadow: 0 16px 38px rgba(16, 32, 51, 0.06);
  cursor: pointer;
}

.appliance-card__image {
  position: relative;
  z-index: 1;
  height: 220px;
  margin-bottom: -28px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.appliance-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.appliance-card:hover .appliance-card__image img {
  transform: scale(1.06);
}

.appliance-card__title {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 16px;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(229, 14, 60, 0.28);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.appliance-card:hover .appliance-card__title {
  background: linear-gradient(135deg, #ff2a52 0%, var(--primary) 45%, #a8092b 100%);
  box-shadow: 0 10px 30px rgba(229, 14, 60, 0.42);
}

.appliance-card__title h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.appliance-card__arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
  transition: transform 0.2s ease;
}

.appliance-card:hover .appliance-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(29, 78, 216, 0.32), rgba(59, 130, 246, 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(29, 78, 216, 0.1), rgba(59, 130, 246, 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: #1d4ed81a;
  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 {
  position: relative;
  padding: 96px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 18, 38, 0.94) 0%, rgba(10, 24, 48, 0.88) 42%, rgba(96, 58, 38, 0.9) 100%),
    url("/wp-content/uploads/2026/07/hero_bg.jpg") center / cover no-repeat;
}

.why__inner {
  text-align: center;
}

.why__header {
  max-width: 760px;
  margin: 0 auto;
}

.why__kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.why__kicker-line {
  width: 44px;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
}

.why__header h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
}

.why__header p {
  margin: 0 auto;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

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

.why__tag {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  padding: 28px 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--white);
  text-align: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.why__tag:hover {
  background: rgba(229, 14, 60, 0.92);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 32px rgba(229, 14, 60, 0.34);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.why__tag-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  place-items: center;
}

.why__tag-icon--dot span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow:
    0 0 0 5px rgba(59, 130, 246, 0.22),
    0 0 18px rgba(59, 130, 246, 0.55);
}

.why__tag:nth-child(1) .why__tag-icon--dot span {
  animation: why-dot-pulse 3.2s ease-in-out infinite;
}

@keyframes why-dot-pulse {
  0%,
  100% {
    background: var(--accent-light);
    box-shadow:
      0 0 0 5px rgba(59, 130, 246, 0.22),
      0 0 18px rgba(59, 130, 246, 0.55);
  }

  50% {
    background: var(--primary);
    box-shadow:
      0 0 0 5px rgba(229, 14, 60, 0.22),
      0 0 18px rgba(229, 14, 60, 0.55);
  }
}

.why__tag:hover .why__tag-icon--dot span {
  animation: none;
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.24),
    0 0 14px rgba(255, 255, 255, 0.45);
}

.why__tag-text {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.brands-section {
  overflow: hidden;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.brands-grid__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 32, 51, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.brands-grid__item:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 78, 216, 0.22);
  box-shadow: 0 16px 38px rgba(16, 32, 51, 0.1);
}

.brands-grid__item img {
  display: block;
  max-width: 100%;
  max-height: 46px;
  width: auto;
  height: auto;
  object-fit: contain;
}

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

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

.review-card:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  background: #e8edf4;
  box-shadow: 0 18px 40px rgba(16, 32, 51, 0.08);
}

.step-card:hover {
  border-color: rgba(29, 78, 216, 0.22);
  box-shadow: 0 24px 54px rgba(16, 32, 51, 0.11);
}

.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: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 56px;
}

.service-area__image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(16, 32, 51, 0.08);
}

.service-area__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-area__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 590px;
}

.service-area__content h2 {
  margin-bottom: 22px;
  font-size: clamp(26px, 2.2vw, 40px);
  line-height: 1.15;
}

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

.service-area__cta {
  margin-top: 28px;
}

.faq-section {
  border-top: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: 56px;
}

.faq-intro h2 {
  margin-bottom: 18px;
}

.faq-intro p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.faq-intro__cta {
  width: fit-content;
}

.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: #1d4ed81a;
  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%, #1d4ed81a 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(29, 78, 216, 0.3), transparent 24%),
    radial-gradient(circle at 8% 86%, rgba(255, 138, 31, 0.24), transparent 22%),
    linear-gradient(135deg, #02142c, #1d4ed8);
  box-shadow: 0 28px 80px rgba(29, 78, 216, 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.72);
  background:
    radial-gradient(circle at 88% 12%, rgba(29, 78, 216, 0.22), transparent 28%),
    radial-gradient(circle at 6% 92%, rgba(229, 14, 60, 0.1), transparent 24%),
    linear-gradient(180deg, #02142c 0%, #0f2744 100%);
}

.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;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer a {
  display: flex;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

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

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

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

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 0 34px;
  border-top: 1px solid rgba(59, 130, 246, 0.18);
  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(29, 78, 216, 0.06);
  }

  .site-header.is-menu-open:not(.is-scrolled) .nav__links {
    background: rgba(2, 20, 44, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  }

  .site-header.is-menu-open:not(.is-scrolled) .nav__links a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

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

@media (max-width: 1020px) {
  .brands-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

  .gallery__item {
    flex-basis: calc((min(1180px, 100vw - 40px) - 32px) / 3);
  }

  .service-area__image,
  .service-area__image img {
    min-height: 320px;
  }

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

  .review-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (max-width: 860px) {
  .review-card {
    flex: 0 0 100%;
  }
}

@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-banner {
    margin-top: -72px;
    padding-top: 72px;
  }

  .hero {
    padding: 32px 0 0;
  }

  .hero-perks {
    padding: 16px 0;
  }

  .hero-perks__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
    align-items: start;
    justify-items: start;
  }

  .hero-perks__inner span {
    width: 100%;
    padding: 0;
    border-right: none;
    white-space: normal;
    font-size: 12px;
    line-height: 1.35;
  }

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

  .brands-grid__item {
    min-height: 76px;
    padding: 14px 12px;
  }

  .brands-grid__item img {
    max-height: 38px;
  }

  .section {
    padding: 40px 0;
  }

  .why {
    padding: 64px 0;
  }

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

  .why__tag {
    min-height: auto;
    padding: 18px 16px;
  }

  .why__tag-text {
    font-size: 15px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

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

  .hero__actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

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

  .gallery__item {
    flex-basis: calc((100vw - 56px) / 2);
    height: 190px;
  }

  .reviews {
    padding: 64px 0;
  }

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

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

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

  .step-card {
    padding: 24px;
  }

  .service-area__image,
  .service-area__image img {
    min-height: 320px;
  }

  .hero-card {
    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: 0;
  }

  .hero__content .rating {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    width: max-content;
    margin-bottom: 14px;
  }

  .hero-stats {
    max-width: 100%;
  }

  .hero-stats__item {
    padding: 0 10px;
  }

  .hero-stats__item:not(:last-child)::after {
    height: 28px;
  }

  .hero-stats__item strong {
    font-size: 22px;
  }

  .hero-stats__item span {
    font-size: 10px;
    max-width: 96px;
  }
}

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

  .gallery__item {
    flex-basis: calc(100vw - 56px);
    height: 220px;
  }

  .gallery-lightbox__nav--prev {
    left: 12px;
  }

  .gallery-lightbox__nav--next {
    right: 12px;
  }
}



/* Mobile sticky call bar */
.mobile-call-bar {
  display: none;
}

@media (max-width: 720px) {
  body.is-call-bar-visible {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-call-bar {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 22px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #f43f5e, #c40b33);
    box-shadow:
      0 18px 32px rgba(229, 14, 60, 0.32),
      0 4px 16px rgba(16, 32, 51, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(110%);
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0.3s ease,
      box-shadow 0.2s ease;
  }

  .mobile-call-bar.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-call-bar:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 12px 24px rgba(229, 14, 60, 0.28);
  }

  .mobile-call-bar__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
  }

  .mobile-call-bar__icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
  }

  .mobile-call-bar__text {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    white-space: nowrap;
  }

  .mobile-call-bar__text strong {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .mobile-call-bar__text span {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.01em;
    opacity: 0.95;
  }
}


