/* ============================================================
   VK Service Inc. — Thermador Appliance Repair (Figma → BEM)
   ============================================================ */

:root {
  --color-bg: #fefdff;
  --color-gray: #f5f7f9;
  --color-dark: #010208;
  --color-text: #111516;
  --color-blue: #5e99fe;
  --color-blue-deep: #367eff;
  --color-placeholder: #797b7c;
  --gradient-blue: linear-gradient(180deg, #5e99fe 0%, #367eff 100%);
  --gradient-blue-angle: linear-gradient(-58deg, #5e99fe 4%, #367eff 93%);
  --shadow-card: 0 3px 12.8px 0 rgba(17, 21, 22, 0.07);
  --radius-panel: 30px;
  --radius-card: 20px;
  --radius-tile: 15px;
  --radius-pill: 30px;
}

/* ---------- Base ---------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  display: block;
}

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

/* ---------- Page ---------- */

.page {
  max-width: 1406px;
  margin: 0 auto;
  overflow-x: hidden;
}

/* ---------- Button ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 24px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
}

.button--gradient {
  background: var(--gradient-blue);
}

.button--dark {
  background: var(--color-text);
  font-weight: 500;
}

.button--outline {
  background: transparent;
  border: 1px solid #fff;
}

.button--sm {
  height: 34px;
  padding: 0 18px;
  font-size: 14px;
}

.button__icon {
  width: 18px;
  height: 18px;
  transform: scaleY(-1);
}

.button__icon--chat {
  width: 20px;
  height: 15px;
}

.button--sm .button__icon {
  width: 14px;
  height: 14px;
}

.button--sm .button__icon--chat {
  width: 17px;
  height: 13px;
}

/* ---------- Section title ---------- */

.section-title {
  font-size: 45px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-dark);
}

.section-title--center {
  text-align: center;
}

.section-title__accent {
  color: var(--color-blue);
}

/* ---------- Duotone icon ---------- */

.icon-duo {
  position: relative;
  display: block;
}

.icon-duo__secondary,
.icon-duo__primary {
  position: absolute;
}

.icon-duo--stopwatch {
  width: 40px;
  height: 40px;
}

.icon-duo--stopwatch .icon-duo__secondary {
  left: 16.67%;
  top: 20.83%;
  width: 66.66%;
  height: 66.67%;
}

.icon-duo--stopwatch .icon-duo__primary {
  left: 13.54%;
  top: 9.38%;
  width: 72.92%;
  height: 81.24%;
}

.icon-duo--bill {
  width: 36px;
  height: 36px;
}

.icon-duo--bill .icon-duo__secondary,
.icon-duo--bill .icon-duo__primary {
  left: 13.54%;
  top: 9.38%;
  width: 72.92%;
  height: 80.08%;
}

.icon-duo--shield {
  width: 36px;
  height: 36px;
}

.icon-duo--shield .icon-duo__secondary,
.icon-duo--shield .icon-duo__primary {
  left: 13.54%;
  top: 9.46%;
  width: 72.91%;
  height: 81.17%;
}

.icon-duo--users {
  width: 38px;
  height: 38px;
}

.icon-duo--users .icon-duo__secondary {
  left: 9.38%;
  top: 53.13%;
  width: 64.58%;
  height: 35.41%;
}

.icon-duo--users .icon-duo__primary {
  left: 9.38%;
  top: 11.46%;
  width: 81.24%;
  height: 77.08%;
}

.icon-duo--home {
  width: 36px;
  height: 36px;
}

.icon-duo--home .icon-duo__secondary,
.icon-duo--home .icon-duo__primary {
  left: 11.46%;
  top: 9.41%;
  width: 77.08%;
  height: 81.22%;
}

.icon-duo--clock {
  width: 24px;
  height: 24px;
}

.icon-duo--clock-sm {
  width: 20px;
  height: 20px;
}

.icon-duo--clock .icon-duo__secondary,
.icon-duo--clock .icon-duo__primary,
.icon-duo--clock-sm .icon-duo__secondary,
.icon-duo--clock-sm .icon-duo__primary {
  left: 9.38%;
  top: 9.38%;
  width: 81.24%;
  height: 81.24%;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  margin: 20px 23px 0;
  border-radius: var(--radius-panel);
  padding: 20px 100px 35px;
  min-height: 700px;
  background: url('../img/hero-bg.png') center / cover no-repeat;
}

.hero__content {
  display: flow-root;
}

.hero__rating {
  margin-top: 84px;
}

.hero__title {
  margin-top: 20px;
  max-width: 797px;
  font-size: 65px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.hero__subtitle {
  margin-top: 30px;
  max-width: 797px;
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
}

.hero__actions {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}

.hero__actions .button {
  width: 163px;
}

.hero__form {
  margin-top: 97px;
}

/* ---------- Header ---------- */

.header {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 20px;
  border-radius: var(--radius-pill);
  background: rgba(5, 6, 14, 0.3);
  backdrop-filter: blur(9.7px);
  -webkit-backdrop-filter: blur(9.7px);
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  margin-left: 10px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.header__burger-line {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.header--nav-open .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header--nav-open .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header--nav-open .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__logo {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 30px;
}

.nav__link {
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--color-blue);
}

.header__phone {
  margin-left: auto;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.header__actions {
  display: flex;
  gap: 7px;
  margin-left: 11px;
}

/* ---------- Rating ---------- */

.rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rating__value {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.rating__stars {
  display: flex;
  gap: 2px;
}

.rating__star {
  width: 17px;
  height: 17px;
}

.rating__count {
  margin-left: 17px;
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
}

/* ---------- Estimate form (hero) ---------- */

.estimate-form {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 80px;
  padding: 15px 21px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.2);
}

.estimate-form__input {
  flex: 1 1 0;
  height: 50px;
  padding: 0 20px;
  border: none;
  border-radius: var(--radius-pill);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  color: var(--color-text);
}

.estimate-form__input::placeholder {
  color: var(--color-placeholder);
}

.estimate-form__input:focus {
  outline: 2px solid var(--color-blue);
}

.estimate-form__submit {
  flex: 0 0 188px;
}

/* ---------- Features ---------- */

.features {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1160px;
  margin: 50px auto 0;
  padding: 0 23px;
}

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

.feature__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f1f2f6;
}

.feature__text {
  max-width: 160px;
  font-size: 16px;
  line-height: 1.2;
}

/* ---------- Services ---------- */

.services {
  margin: 100px 23px 0;
  padding: 80px 100px 60px;
  border-radius: var(--radius-panel);
  background: var(--color-gray);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* ---------- Service card ---------- */

.service-card {
  position: relative;
  height: 237px;
  padding: 20px;
  border-radius: var(--radius-card);
  background: #fff;
  overflow: hidden;
}

.service-card__icon {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
}

.service-card__icon-image,
.service-card__icon-circle {
  position: absolute;
  left: -15.9px;
  top: -11.9px;
  width: 71.8px;
  height: 71.8px;
}

.service-card__icon-glyph {
  position: absolute;
  left: 11px;
  top: 11px;
  width: 18px;
  height: 18px;
  transform: rotate(180deg) scaleX(-1);
}

.service-card__title {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  max-width: 169px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-dark);
}

.service-card__title--narrow {
  max-width: 127px;
}

.service-card__button {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  height: 40px;
  padding: 0 19px;
  font-size: 14px;
}

.service-card__photo {
  position: absolute;
  pointer-events: none;
}

/* Photo crop boxes replicate exact image framing from the Figma masks */

.service-card__photo-box {
  position: absolute;
  display: block;
  overflow: hidden;
  pointer-events: none;
}

.service-card__photo-box .service-card__photo {
  max-width: none;
}

.service-card__photo--fridge {
  right: -68px;
  top: -23px;
  width: 341px;
  height: 341px;
}

.service-card__photo-box--oven {
  right: 19px;
  top: 20px;
  width: 165px;
  height: 280px;
}

.service-card__photo-box--oven .service-card__photo {
  left: -90.86%;
  top: -32.34%;
  width: 277.84%;
  height: 163.68%;
}

.service-card__photo-box--cooktop {
  right: -80px;
  top: 26px;
  width: 311px;
  height: 269px;
}

.service-card__photo-box--cooktop .service-card__photo {
  left: -67.57%;
  top: -68.75%;
  width: 237.45%;
  height: 223.21%;
}

.service-card__photo-box--dishwasher {
  right: -20px;
  top: 20px;
  width: 218px;
  height: 255px;
}

.service-card__photo-box--dishwasher .service-card__photo {
  left: -62.84%;
  top: -46.27%;
  width: 229.36%;
  height: 196.08%;
}

.service-card__photo--hood {
  right: -244px;
  top: 23px;
  width: 472px;
  height: 174px;
}

.service-card__photo-box--wine {
  right: 17px;
  top: 20px;
  width: 131px;
  height: 434px;
}

.service-card__photo-box--wine .service-card__photo {
  left: -175.92%;
  top: -10.14%;
  width: 449.68%;
  height: 110.14%;
}

/* ---------- Problems ---------- */

.problems {
  display: flex;
  justify-content: space-between;
  gap: 55px;
  max-width: 1160px;
  margin: 100px auto 0;
  padding: 0 23px;
}

.problems__content {
  flex: 1 1 auto;
  max-width: 572px;
}

.problems__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 15px;
  margin-top: 40px;
}

.problems__cta {
  width: 100%;
  margin-top: 30px;
}

.problems__photo {
  flex: 0 0 533px;
  width: 533px;
  height: 488px;
  border-radius: var(--radius-card);
  object-fit: cover;
}

/* ---------- Problem card ---------- */

.problem-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 80px;
  padding: 10px 14px 10px 20px;
  border-radius: var(--radius-tile);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.problem-card__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f4f6fa;
}

.problem-card__icon {
  transform: scaleY(-1);
}

.problem-card__icon--fridge {
  width: 19px;
  height: 27px;
}

.problem-card__icon--oven {
  width: 19px;
  height: 22px;
}

.problem-card__icon--burner {
  width: 20px;
  height: 25px;
}

.problem-card__icon--error {
  width: 32px;
  height: 30px;
}

.problem-card__composite {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
}

.problem-card__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

/* ---------- Pricing ---------- */

.pricing {
  max-width: 1160px;
  margin: 100px auto 0;
  padding: 0 23px;
}

.pricing__row {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.pricing__card.pricing__card--main {
  flex: 0 0 572px;
}

/* ---------- Price card ---------- */

.price-card {
  position: relative;
  flex: 1 1 0;
  height: 292px;
  padding: 20px;
  border-radius: var(--radius-card);
  background: var(--color-gray);
  overflow: hidden;
}

.price-card--gradient {
  background: var(--gradient-blue-angle);
}

.price-card__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-blue);
}

.price-card__text {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  max-width: 328px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}

.price-card__text--bottom {
  position: absolute;
  left: 20px;
  bottom: 28px;
  margin: 0;
  max-width: 192px;
  color: var(--color-text);
}

.price-card__button {
  position: absolute;
  left: 20px;
  bottom: 19px;
  z-index: 1;
}

.price-card__decor {
  position: absolute;
  right: -57px;
  top: 13px;
  width: 334px;
  height: 334px;
  pointer-events: none;
}

/* ---------- How it works ---------- */

.how {
  margin: 100px 23px 0;
  padding: 90px 100px 100px;
  border-radius: var(--radius-panel);
  background: var(--color-gray);
}

.how__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.how__badge {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 32px;
  margin-top: 11px;
  padding: 4px 14px 4px 11px;
  border-radius: 20px;
  background: #fff;
}

.how__badge-text {
  font-size: 14px;
  line-height: 1.3;
  color: rgba(17, 21, 22, 0.7);
}

.how__badge-accent {
  font-weight: 600;
}

.how__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 58px;
  margin-top: 40px;
}

.how__step-title {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
}

.how__step-number {
  color: var(--color-blue);
}

.how__line {
  position: absolute;
  left: 0;
  top: 50px;
  width: 100%;
  height: 26px;
}

.how__step-text {
  margin-top: 66px;
  font-size: 14px;
  line-height: 1.3;
  color: rgba(17, 21, 22, 0.7);
}

/* ---------- Area map ---------- */

.area-map {
  position: relative;
  height: 439px;
  margin-top: 90px;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.area-map__image,
.area-map__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.area-map__pin {
  position: absolute;
  width: 38px;
  height: 48px;
}

.area-map__card {
  position: absolute;
  left: 17px;
  top: 19px;
  width: 377px;
  height: 259px;
  padding: 30px;
  border-radius: var(--radius-card);
  background: #fff;
}

.area-map__title {
  font-size: 45px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-dark);
}

.area-map__text {
  margin-top: 15px;
  max-width: 266px;
  font-size: 14px;
  line-height: 1.3;
  color: rgba(17, 21, 22, 0.7);
}

.area-map__button {
  margin-top: 30px;
  width: 286px;
  font-weight: 500;
}

/* ---------- Reviews ---------- */

.reviews {
  margin-top: 100px;
}

.reviews__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 23px;
}

.reviews__arrows {
  display: flex;
  gap: 13px;
}

.reviews__viewport {
  margin: 40px 0 0 123px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.reviews__track {
  display: flex;
  gap: 20px;
}

.reviews__card {
  flex: 0 0 373px;
}

.reviews__arrow {
  width: 53px;
  height: 53px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.reviews__arrow--next img {
  transform: rotate(180deg);
}

.reviews__arrow img {
  width: 100%;
  height: 100%;
}

/* ---------- Review card ---------- */

.review-card {
  position: relative;
  height: 383px;
  padding: 20px;
  border-radius: var(--radius-card);
  background: var(--color-gray);
}

.review-card__header {
  display: flex;
  gap: 20px;
}

.review-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  font-size: 40px;
  font-weight: 600;
  color: #fff;
}

.review-card__avatar--red {
  background: #e63a3a;
}

.review-card__avatar--violet {
  background: #4422a9;
}

.review-card__meta {
  padding-top: 12px;
}

.review-card__name {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-dark);
}

.review-card__verified {
  width: 28px;
  height: 28px;
}

.review-card__stars {
  width: 93px;
  height: 17px;
  margin-top: 5px;
}

.review-card__text {
  margin-top: 20px;
  font-size: 16px;
  font-style: italic;
  line-height: 1.4;
  color: rgba(1, 2, 8, 0.7);
}

.review-card__photos {
  display: flex;
  gap: 7px;
  margin-top: 10px;
}

.review-card__photo {
  width: 88px;
  height: 63px;
  border-radius: 10px;
  object-fit: cover;
}

.review-card__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(54, 126, 255, 0.7);
  text-decoration: underline;
}

.review-card__google {
  position: absolute;
  left: 20px;
  bottom: 32px;
  width: 72px;
  height: 25px;
  object-fit: contain;
}

/* ---------- Trusted ---------- */

.trusted {
  display: flex;
  gap: 42px;
  max-width: 1160px;
  margin: 100px auto 0;
  padding: 0 23px;
}

.trusted__photo {
  flex: 0 0 546px;
  width: 546px;
  height: 483px;
  border-radius: var(--radius-card);
  object-fit: cover;
}

.trusted__content {
  flex: 1 1 auto;
}

.trusted__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 16px;
  margin-top: 40px;
}

/* ---------- Trust card ---------- */

.trust-card {
  height: 160px;
  padding: 20px;
  border-radius: var(--radius-card);
  background: var(--color-gray);
}

.trust-card__circle {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
}

.trust-card__circle::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gradient-blue);
  box-shadow: 0 4px 9.8px rgba(54, 126, 255, 0.45);
}

.trust-card__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scaleY(-1);
}

.trust-card__icon--license {
  width: 20px;
  height: 20px;
}

.trust-card__icon--warranty {
  width: 18px;
  height: 20px;
}

.trust-card__icon--experience {
  width: 23px;
  height: 22px;
  transform: translate(-50%, -50%);
}

.trust-card__composite {
  width: 71.8px;
  height: 71.8px;
  margin: -11.9px -15.9px -19.9px;
}

.trust-card__title {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.trust-card__text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.3;
  color: rgba(17, 21, 22, 0.7);
}

/* ---------- Jobs ---------- */

.jobs {
  margin-top: 100px;
}

.jobs__head {
  display: flex;
  justify-content: space-between;
  gap: 95px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 23px;
}

.jobs__side {
  flex: 0 0 480px;
}

.jobs__text {
  font-size: 16px;
  line-height: 1.3;
  color: rgba(17, 21, 22, 0.7);
}

.jobs__arrows {
  display: flex;
  gap: 5px;
  margin-top: 17px;
}

.jobs__arrow {
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.jobs__arrow img {
  width: 100%;
  height: 100%;
}

.jobs__arrow--next img {
  transform: rotate(180deg);
}

.jobs__viewport {
  margin: 40px 0 0 123px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.jobs__track {
  display: flex;
  gap: 20px;
}

.jobs__photo {
  flex: 0 0 373px;
  width: 373px;
  height: 422px;
  border-radius: var(--radius-card);
  object-fit: cover;
}

/* ---------- FAQ ---------- */

.faq {
  display: flex;
  gap: 42px;
  max-width: 1160px;
  margin: 100px auto 0;
  padding: 0 23px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 546px;
  list-style: none;
}

.faq__content {
  flex: 1 1 auto;
}

.faq__text {
  margin-top: 20px;
  max-width: 451px;
  font-size: 16px;
  line-height: 1.3;
  color: rgba(17, 21, 22, 0.7);
}

.faq__cta {
  margin-top: 32px;
  width: 292px;
}

.faq__photo {
  width: 100%;
  height: 230px;
  margin-top: 70px;
  border-radius: var(--radius-card);
  object-fit: cover;
}

/* ---------- FAQ item ---------- */

.faq-item {
  border-radius: var(--radius-tile);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.faq-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 70px;
  padding: 11px 10px 11px 20px;
  border: none;
  background: none;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-item__question {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

.faq-item__toggle {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  transition: transform 0.25s ease;
}

.faq-item--open .faq-item__toggle {
  transform: rotate(45deg);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item--open .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item__answer-inner {
  min-height: 0;
  overflow: hidden;
}

.faq-item__answer-inner p {
  padding: 0 56px 18px 20px;
  font-size: 16px;
  line-height: 1.3;
  color: rgba(17, 21, 22, 0.7);
}

/* ---------- Contact ---------- */

.contact {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 1161px;
  height: 414px;
  margin: 100px auto 0;
  padding: 50px 40px;
  border-radius: var(--radius-card);
  background: linear-gradient(-48deg, #5e99fe 4%, #367eff 93%);
}

.contact__title {
  font-size: 45px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.contact__subtitle {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}

.contact__cards {
  display: flex;
  gap: 10px;
  margin-top: 47px;
}

.contact__decor {
  position: absolute;
  pointer-events: none;
}

.contact__decor--screwdriver {
  left: 542px;
  top: 44px;
  width: 121px;
  height: 121px;
  transform: rotate(180deg) scaleY(-1);
}

.contact__decor--wrench {
  left: 613px;
  top: 128px;
  width: 233px;
  height: 233px;
  transform: rotate(161deg) scaleY(-1);
}

.contact__form {
  position: relative;
  z-index: 1;
  flex: 0 0 340px;
}

/* ---------- Contact card ---------- */

.contact-card {
  position: relative;
  width: 182px;
  height: 131px;
  padding: 15px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.2);
}

.contact-card__icon {
  width: 31px;
  height: 31px;
}

.contact-card__icon--circle {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
}

.contact-card__value {
  display: block;
  margin-top: 17px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.contact-card__value--small {
  font-size: 16px;
}

.contact-card__label {
  position: absolute;
  left: 15px;
  bottom: 12px;
  font-size: 14px;
  line-height: 1.3;
  color: #fff;
}

.contact-card:nth-child(3) .contact-card__label {
  bottom: 6px;
}

/* ---------- Contact form ---------- */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-form__input {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border: none;
  border-radius: var(--radius-pill);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  color: var(--color-text);
  appearance: none;
}

.contact-form__input::placeholder {
  color: var(--color-placeholder);
}

.contact-form__input:focus {
  outline: 2px solid var(--color-dark);
}

.contact-form__select {
  color: var(--color-placeholder);
  cursor: pointer;
}

.contact-form__select-wrap {
  position: relative;
  display: block;
}

.contact-form__chevron {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 11px;
  height: 6px;
  transform: translateY(-50%);
  pointer-events: none;
}

.contact-form__submit {
  font-weight: 500;
}

/* ---------- Footer ---------- */

.footer {
  max-width: 1160px;
  margin: 60px auto 0;
  padding: 0 23px 20px;
}

.footer__top {
  display: flex;
  align-items: flex-start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 104px;
}

.footer__logo {
  font-size: 25px;
  font-weight: 600;
  color: var(--color-dark);
}

.footer__copyright {
  font-size: 14px;
  line-height: 1.2;
  color: var(--color-text);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 143px;
}

.footer__col:nth-of-type(1) {
  margin-left: auto;
}

.footer__col:nth-of-type(3) {
  width: 199px;
}

.footer__link {
  font-size: 14px;
  line-height: 1.2;
  color: var(--color-text);
}

.footer__link:hover {
  color: var(--color-blue-deep);
}

.footer__cta {
  font-weight: 500;
}

.footer__big-logo {
  width: 100%;
  margin-top: 41px;
}

/* ---------- Modal ---------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.modal[hidden] {
  display: none;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 14, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal__box {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: auto;
  padding: 40px;
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: none;
  font-size: 24px;
  line-height: 1;
  color: var(--color-placeholder);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.modal__close:hover {
  background: var(--color-gray);
  color: var(--color-text);
}

.modal__title {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-dark);
}

.modal__subtitle {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.3;
  color: rgba(17, 21, 22, 0.7);
}

.modal__form {
  margin-top: 24px;
}

/* ---------- Modal form ---------- */

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.modal-form__input {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--color-gray);
  font-family: inherit;
  font-size: 14px;
  color: var(--color-text);
  appearance: none;
}

.modal-form__input::placeholder {
  color: var(--color-placeholder);
}

.modal-form__input:focus {
  outline: 2px solid var(--color-blue);
}

.modal-form__select {
  color: var(--color-placeholder);
  cursor: pointer;
}

.modal-form__select-wrap {
  position: relative;
  display: block;
}

.modal-form__chevron {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 11px;
  height: 6px;
  transform: translateY(-50%);
  pointer-events: none;
}

.modal-form__submit {
  margin-top: 8px;
}

/* ============================================================
   Responsive
   ============================================================ */

/* ---------- Tablet (≤1280px) ---------- */

@media (max-width: 1280px) {
  .hero {
    padding-left: 50px;
    padding-right: 50px;
  }

  .header__phone {
    display: none;
  }

  .header__actions {
    margin-left: auto;
  }

  .hero__title {
    font-size: 54px;
  }

  .section-title {
    font-size: 38px;
  }

  .area-map__title {
    font-size: 38px;
  }

  .contact__title {
    font-size: 38px;
  }

  .services,
  .how {
    padding-left: 50px;
    padding-right: 50px;
  }

  .features,
  .problems,
  .pricing,
  .trusted,
  .jobs__head,
  .faq,
  .reviews__head {
    padding-left: 50px;
    padding-right: 50px;
    max-width: none;
  }

  .reviews__viewport,
  .jobs__viewport {
    margin-left: 50px;
  }

  .contact {
    margin-left: 23px;
    margin-right: 23px;
    max-width: none;
  }

  .footer {
    max-width: none;
    padding-left: 50px;
    padding-right: 50px;
  }

  /* Stack side-by-side sections */
  .problems {
    flex-direction: column;
  }

  .problems__content {
    max-width: none;
  }

  .problems__photo {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    max-height: 488px;
  }

  .pricing__row {
    flex-wrap: wrap;
  }

  .pricing__card.pricing__card--main {
    flex: 1 1 100%;
  }

  .trusted {
    flex-direction: column;
  }

  .trusted__photo {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    max-height: 483px;
  }

  .faq {
    flex-direction: column-reverse;
  }

  .faq__list {
    flex: 0 0 auto;
  }

  .faq__text {
    max-width: none;
  }

  .contact {
    flex-direction: column;
    gap: 30px;
    height: auto;
    padding: 40px 30px;
  }

  .contact__decor {
    display: none;
  }

  .contact__form {
    flex: 0 0 auto;
    width: 100%;
    max-width: 440px;
  }

  .features {
    flex-wrap: wrap;
    justify-content: flex-start;
    row-gap: 20px;
  }

  .features__item {
    flex: 1 1 45%;
  }
}

/* ---------- Small tablet (≤1000px) ---------- */

@media (max-width: 1000px) {
  .header__nav {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .header--nav-open .header__nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding: 16px 20px;
    border-radius: var(--radius-card);
    background: rgba(5, 6, 14, 0.85);
    backdrop-filter: blur(9.7px);
    -webkit-backdrop-filter: blur(9.7px);
  }

  .header--nav-open .nav__link {
    padding: 10px 0;
    font-size: 16px;
  }

  .hero__title {
    font-size: 42px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

  .services__card {
    width: 100%;
    max-width: 373px;
  }

  .estimate-form {
    flex-wrap: wrap;
    height: auto;
    padding: 15px;
  }

  .estimate-form__input {
    flex: 1 1 45%;
  }

  .estimate-form__submit {
    flex: 1 1 100%;
  }

  .hero__form {
    margin-top: 50px;
  }

  .how__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .how__line {
    display: none;
  }

  .how__step-text {
    margin-top: 10px;
  }

  .how__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .how__badge {
    margin-top: 0;
  }

  .jobs__head {
    flex-direction: column;
    gap: 24px;
  }

  .jobs__side {
    flex: 0 0 auto;
  }

  .area-map__card {
    width: 320px;
    padding: 24px;
  }

  .area-map__title {
    font-size: 30px;
  }

  .area-map__button {
    width: 100%;
  }

  .footer__top {
    flex-wrap: wrap;
    gap: 24px 40px;
  }

  .footer__brand {
    flex: 1 1 100%;
    min-height: 0;
    gap: 8px;
  }

  .footer__col:nth-of-type(1) {
    margin-left: 0;
  }
}

/* ---------- Mobile (≤640px) ---------- */

@media (max-width: 640px) {
  .hero {
    margin: 10px 10px 0;
    padding: 12px 16px 24px;
    min-height: 0;
  }

  .header {
    padding: 0 12px;
  }

  .header__logo {
    font-size: 16px;
  }

  .header__actions .button--sm {
    padding: 0 10px;
  }

  .hero__rating {
    margin-top: 40px;
  }

  .hero__title {
    font-size: 31px;
  }

  .hero__subtitle {
    margin-top: 16px;
  }

  .hero__actions {
    margin-top: 24px;
    flex-wrap: wrap;
  }

  .hero__actions .button {
    flex: 1 1 140px;
    width: auto;
  }

  .hero__form {
    margin-top: 32px;
  }

  .estimate-form {
    flex-direction: column;
  }

  .estimate-form__input,
  .estimate-form__submit {
    flex: 1 1 auto;
    width: 100%;
  }

  .features,
  .problems,
  .pricing,
  .trusted,
  .jobs__head,
  .faq,
  .reviews__head,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .features {
    margin-top: 32px;
  }

  .features__item {
    flex: 1 1 100%;
  }

  .feature__text {
    max-width: none;
  }

  .section-title {
    font-size: 28px;
  }

  .services,
  .how {
    margin: 60px 10px 0;
    padding: 40px 16px;
  }

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

  .problems,
  .pricing,
  .trusted,
  .reviews,
  .jobs,
  .faq,
  .contact {
    margin-top: 60px;
  }

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

  .price-card {
    flex: 1 1 100%;
    height: auto;
    min-height: 240px;
  }

  .price-card__text {
    font-size: 20px;
    max-width: 260px;
  }

  .price-card__text--bottom {
    position: static;
    margin-top: 70px;
  }

  .price-card__button {
    position: static;
    margin-top: 24px;
    max-width: 100%;
  }

  .price-card__decor {
    width: 220px;
    height: 220px;
    right: -60px;
    top: auto;
    bottom: -40px;
  }

  .area-map {
    height: 480px;
    margin-top: 50px;
  }

  .area-map__card {
    left: 10px;
    top: 10px;
    width: calc(100% - 20px);
    height: auto;
  }

  .reviews__viewport,
  .jobs__viewport {
    margin-left: 16px;
  }

  .reviews__card {
    flex: 0 0 300px;
  }

  .review-card {
    height: auto;
    min-height: 383px;
    padding-bottom: 70px;
  }

  .reviews__arrows {
    display: none;
  }

  .jobs__photo {
    flex: 0 0 280px;
    width: 280px;
    height: 320px;
  }

  .jobs__arrows {
    display: none;
  }

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

  .trust-card {
    height: auto;
  }

  .faq-item__question {
    font-size: 16px;
  }

  .faq__cta {
    width: 100%;
  }

  .faq__photo {
    height: auto;
    margin-top: 40px;
  }

  .contact {
    margin-left: 10px;
    margin-right: 10px;
    padding: 30px 16px;
  }

  .contact__cards {
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .contact-card {
    width: 100%;
    height: auto;
    min-height: 110px;
  }

  .contact-card__label {
    position: static;
    display: block;
    margin-top: 8px;
  }

  .footer {
    margin-top: 40px;
  }

  .footer__cta {
    width: 100%;
  }

  .footer__big-logo {
    margin-top: 24px;
  }

  .modal__box {
    padding: 32px 20px;
  }
}

@media (max-width: 640px) {
  .header__actions .button--outline {
    display: none;
  }
}

/* ============================================================
   Site-wide additions (multi-page local SEO site)
   ============================================================ */

/* ---------- Nav dropdowns ---------- */

.nav__item {
  position: relative;
}

.nav__item > .nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
}

.nav__caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.nav__dropdown {
  position: absolute;
  left: -16px;
  top: 100%;
  z-index: 60;
  display: none;
  padding-top: 8px;
}

.nav__item--drop:hover .nav__dropdown,
.nav__item--drop:focus-within .nav__dropdown {
  display: block;
}

.nav__dropdown--right {
  left: auto;
  right: -16px;
}

.nav__dropdown-box {
  display: flex;
  gap: 28px;
  padding: 18px 22px;
  border-radius: var(--radius-tile);
  background: #fff;
  box-shadow: 0 12px 32px rgba(17, 21, 22, 0.18);
}

.nav__group {
  min-width: 168px;
}

.nav__group-title {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-placeholder);
  white-space: nowrap;
}

.nav__drop-link {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  line-height: 1.2;
  color: var(--color-text);
  white-space: nowrap;
}

.nav__drop-link:hover {
  color: var(--color-blue-deep);
}

.nav__group--cols {
  min-width: 430px;
  column-count: 3;
  column-gap: 26px;
}

/* ---------- Inner page hero ---------- */

.hero--inner {
  min-height: 400px;
  padding-bottom: 50px;
}

.hero__breadcrumbs {
  margin-top: 56px;
  font-size: 14px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.75);
}

.hero__breadcrumbs a:hover {
  color: #fff;
  text-decoration: underline;
}

.hero--inner .hero__title {
  margin-top: 18px;
  font-size: 55px;
}

/* ---------- Brands ---------- */

.brands {
  max-width: 1160px;
  margin: 100px auto 0;
  padding: 0 23px;
}

.brands__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 92px;
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-card);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-dark);
  transition: color 0.2s ease, transform 0.2s ease;
}

.brand-card:hover {
  color: var(--color-blue-deep);
  transform: translateY(-2px);
}

.brands__all {
  display: block;
  width: max-content;
  margin: 28px auto 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-blue-deep);
}

.brands__all:hover {
  text-decoration: underline;
}

/* ---------- Areas list ---------- */

.areas-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 24px;
  margin-top: 36px;
}

.areas-list__link {
  font-size: 15px;
  line-height: 1.2;
  color: var(--color-text);
}

.areas-list__link:hover {
  color: var(--color-blue-deep);
}

/* ---------- Other services ---------- */

.other-services {
  max-width: 1160px;
  margin: 100px auto 0;
  padding: 0 23px;
}

.other-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.other-services__grid .trust-card {
  display: block;
  height: auto;
  min-height: 180px;
}

/* ---------- Generic sections ---------- */

.page-section {
  max-width: 1160px;
  margin: 100px auto 0;
  padding: 0 23px;
}

.page-section--narrow {
  max-width: 846px;
}

.page-section__lead {
  margin-top: 24px;
  max-width: 740px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(17, 21, 22, 0.7);
}

.text-block {
  margin-top: 36px;
}

.text-block h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-dark);
}

.text-block p,
.text-block li {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(17, 21, 22, 0.75);
}

.text-block ul {
  padding-left: 20px;
}

/* ---------- Services links (area/brand pages) ---------- */

.services-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.services-links__item {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 12px 20px;
  border-radius: var(--radius-tile);
  background: #fff;
  box-shadow: var(--shadow-card);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.2s ease, transform 0.2s ease;
}

.services-links__item:hover {
  color: var(--color-blue-deep);
  transform: translateY(-2px);
}

.services-links--gray .services-links__item {
  background: var(--color-gray);
  box-shadow: none;
}

/* ---------- Booking page form ---------- */

.book-form {
  max-width: 440px;
  margin: 40px auto 0;
}

/* ---------- Footer (site-wide) ---------- */

.footer--site .footer__top {
  flex-wrap: wrap;
  gap: 28px 36px;
}

.footer--site .footer__col {
  width: auto;
  min-width: 150px;
}

.footer--site .footer__col-title {
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
}

.footer--site .footer__cta {
  margin-left: auto;
}

/* ---------- Responsive additions ---------- */

@media (max-width: 1280px) {
  .brands,
  .other-services,
  .page-section {
    padding-left: 50px;
    padding-right: 50px;
    max-width: none;
  }

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

  .other-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .areas-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1000px) {
  .header--nav-open .nav__dropdown {
    position: static;
    display: block;
    padding-top: 4px;
  }

  .header--nav-open .nav__dropdown-box {
    flex-direction: column;
    gap: 12px;
    padding: 0 0 4px 14px;
    background: none;
    box-shadow: none;
  }

  .header--nav-open .nav__group--cols {
    column-count: 2;
    min-width: 0;
  }

  .header--nav-open .nav__group-title {
    color: rgba(255, 255, 255, 0.5);
  }

  .header--nav-open .nav__drop-link {
    color: #fff;
    padding: 7px 0;
  }

  .nav__item--drop:hover .nav__dropdown {
    display: none;
  }

  .header--nav-open .nav__item--drop:hover .nav__dropdown {
    display: block;
  }

  .hero--inner .hero__title {
    font-size: 40px;
  }

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

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

@media (max-width: 640px) {
  .brands,
  .other-services,
  .page-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brands {
    margin-top: 60px;
  }

  .brands__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .brand-card {
    height: 72px;
    font-size: 18px;
  }

  .other-services__grid,
  .services-links {
    grid-template-columns: 1fr;
  }

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

  .hero--inner {
    min-height: 0;
  }

  .hero--inner .hero__title {
    font-size: 30px;
  }

  .hero__breadcrumbs {
    margin-top: 32px;
  }

  .page-section,
  .other-services {
    margin-top: 60px;
  }
}

@media (max-width: 1000px) {
  .header--nav-open .header__nav {
    background: #0b0d15;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }
}

/* ---------- Custom select ---------- */

.custom-select {
  position: relative;
}

.custom-select__native {
  display: none;
}

.custom-select__toggle {
  display: flex;
  align-items: center;
  text-align: left;
  border: none;
  cursor: pointer;
  color: var(--color-placeholder);
}

.custom-select__toggle--filled {
  color: var(--color-text);
}

.custom-select__list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 40;
  max-height: 250px;
  margin: 0;
  padding: 8px;
  overflow-y: auto;
  list-style: none;
  background: #fff;
  border-radius: var(--radius-tile);
  box-shadow: 0 12px 32px rgba(17, 21, 22, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  scrollbar-width: thin;
}

.custom-select--open .custom-select__list {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.custom-select__option {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--color-text);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.custom-select__option:hover {
  background: var(--color-gray);
  color: var(--color-blue-deep);
}

.custom-select__option--selected {
  background: #eef4ff;
  color: var(--color-blue-deep);
  font-weight: 600;
}

.custom-select .modal-form__chevron,
.custom-select .contact-form__chevron {
  transition: transform 0.2s ease;
}

.custom-select--open .modal-form__chevron,
.custom-select--open .contact-form__chevron {
  transform: translateY(-50%) rotate(180deg);
}

/* Single-card services grid (brands with one product line) */

.services__grid--single {
  grid-template-columns: 373px;
  justify-content: center;
}

@media (max-width: 640px) {
  .services__grid--single {
    grid-template-columns: 1fr;
  }
}

/* ---------- Blog ---------- */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(17, 21, 22, 0.12);
}

.blog-card__cover {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: var(--color-gray);
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 10px;
  padding: 20px;
}

.blog-card__date {
  font-size: 12px;
  line-height: 1.2;
  color: var(--color-placeholder);
}

.blog-card__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-dark);
}

.blog-card__excerpt {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(17, 21, 22, 0.7);
}

.blog-card__more {
  margin-top: auto;
  padding-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-blue-deep);
}

/* ---------- Article ---------- */

.article__date {
  font-size: 14px;
  color: var(--color-placeholder);
}

.article__cover {
  width: 100%;
  max-height: 420px;
  margin-top: 24px;
  border-radius: var(--radius-card);
  object-fit: cover;
  background: var(--color-gray);
}

.article__body {
  margin-top: 8px;
}

.article__body h3 {
  margin-top: 32px;
  font-size: 24px;
  font-weight: 600;
  color: var(--color-dark);
}

.article__body h4 {
  margin-top: 24px;
  font-size: 19px;
  font-weight: 600;
  color: var(--color-dark);
}

.article__body a {
  color: var(--color-blue-deep);
  text-decoration: underline;
}

@media (max-width: 1000px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Contact info cards ---------- */

.contact-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 200px;
  padding: 24px;
  border-radius: var(--radius-card);
  background: var(--color-gray);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(17, 21, 22, 0.12);
}

.info-card--accent {
  background: var(--gradient-blue-angle);
}

.info-card--accent .info-card__label,
.info-card--accent .info-card__value,
.info-card--accent .info-card__note {
  color: #fff;
}

.info-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}

.info-card__icon--circle {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.info-card__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-placeholder);
}

.info-card__value {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-dark);
}

.info-card__note {
  margin-top: auto;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(17, 21, 22, 0.6);
}

@media (max-width: 1280px) {
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .info-card {
    min-height: 0;
  }

  .info-card__note {
    margin-top: 4px;
  }
}

/* ---------- v2 additions ---------- */

.other-services__grid--three {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1280px) {
  .other-services__grid--three {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1000px) {
  .other-services__grid--three {
    grid-template-columns: 1fr;
  }
}

.maintenance-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.maintenance-list__item {
  padding: 24px;
  border-radius: var(--radius-card);
  background: var(--color-gray);
}

.maintenance-list__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-dark);
}

.maintenance-list__text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(17, 21, 22, 0.7);
}

@media (max-width: 640px) {
  .maintenance-list {
    grid-template-columns: 1fr;
  }
}

/* ---------- Footer v2 (head row + link columns) ---------- */

.footer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__head .footer__brand {
  min-height: 0;
  gap: 8px;
}

.footer__cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px 36px;
  margin-top: 36px;
}

.footer--site .footer__cols .footer__col {
  min-width: 150px;
}

@media (max-width: 1000px) {
  .footer__cols {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .footer__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer__head .footer__cta {
    width: 100%;
  }

  .footer__cols {
    flex-direction: column;
    gap: 24px;
  }
}

.footer__cols .footer__col:nth-of-type(1) {
  margin-left: 0;
}

/* ---------- Form validation ---------- */

.input--error {
  outline: 2px solid #e63a3a !important;
  outline-offset: -2px;
}

.input--error::placeholder {
  color: #e63a3a;
}

/* WP theme: form submit states */
.form-success {
  margin: 0;
  padding: 24px 8px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
form.is-sending .estimate-form__submit,
form.is-sending .contact-form__submit,
form.is-sending .modal-form__submit {
  opacity: 0.6;
  pointer-events: none;
}
