:root {
  --blue-950: #0a2d4d;
  --blue-800: #0d4a7a;
  --blue-600: #1a7fc4;
  --blue-400: #4db8e8;
  --blue-200: #b8e4f7;
  --blue-50: #eef8fd;
  --cyan: #00bcd4;
  --white: #ffffff;
  --gray-700: #3d4f5f;
  --gray-500: #6b7c8a;
  --shadow: 0 12px 40px rgba(13, 74, 122, 0.15);
  --radius: 14px;
  --font: 'Montserrat', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--blue-950);
  line-height: 1.55;
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 120px);
  overflow-x: hidden;
}

a {
  color: var(--blue-600);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1180px, 100% - 32px);
  margin-inline: auto;
}

/* Snowflakes — лёгкое падение поверх страницы */
.snowflakes {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 120;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  top: -3rem;
  left: var(--snow-left, 50%);
  color: rgba(77, 184, 232, 0.85);
  text-shadow:
    0 0 4px rgba(26, 127, 196, 0.6),
    0 2px 6px rgba(13, 74, 122, 0.25);
  font-size: 1rem;
  opacity: 0;
  animation: snowfall ease-in-out infinite;
  animation-duration: var(--snow-duration, 16s);
  animation-delay: var(--snow-delay, 0s);
  user-select: none;
  will-change: transform, opacity;
}

.snowflake:nth-child(1) { --snow-left: 4%; --snow-duration: 14s; --snow-delay: 0s; font-size: 0.85rem; }
.snowflake:nth-child(2) { --snow-left: 12%; --snow-duration: 19s; --snow-delay: 1.5s; font-size: 1.15rem; }
.snowflake:nth-child(3) { --snow-left: 22%; --snow-duration: 13s; --snow-delay: 3s; }
.snowflake:nth-child(4) { --snow-left: 31%; --snow-duration: 17s; --snow-delay: 0.8s; font-size: 0.75rem; }
.snowflake:nth-child(5) { --snow-left: 41%; --snow-duration: 21s; --snow-delay: 2.2s; font-size: 1.05rem; }
.snowflake:nth-child(6) { --snow-left: 51%; --snow-duration: 12s; --snow-delay: 4.5s; }
.snowflake:nth-child(7) { --snow-left: 61%; --snow-duration: 18s; --snow-delay: 0.4s; font-size: 1.25rem; }
.snowflake:nth-child(8) { --snow-left: 71%; --snow-duration: 15s; --snow-delay: 2.8s; font-size: 0.9rem; }
.snowflake:nth-child(9) { --snow-left: 81%; --snow-duration: 20s; --snow-delay: 5s; font-size: 0.8rem; }
.snowflake:nth-child(10) { --snow-left: 91%; --snow-duration: 11s; --snow-delay: 1.2s; }
.snowflake:nth-child(11) { --snow-left: 48%; --snow-duration: 23s; --snow-delay: 6s; font-size: 1.35rem; opacity: 0.55; }
.snowflake:nth-child(12) { --snow-left: 7%; --snow-duration: 22s; --snow-delay: 7s; font-size: 0.7rem; opacity: 0.5; }
.snowflake:nth-child(13) { --snow-left: 18%; --snow-duration: 16s; --snow-delay: 3.5s; font-size: 0.95rem; }
.snowflake:nth-child(14) { --snow-left: 58%; --snow-duration: 14s; --snow-delay: 1.8s; font-size: 1.1rem; }
.snowflake:nth-child(15) { --snow-left: 68%; --snow-duration: 19s; --snow-delay: 4.2s; }
.snowflake:nth-child(16) { --snow-left: 88%; --snow-duration: 13s; --snow-delay: 2.5s; font-size: 0.88rem; }
.snowflake:nth-child(17) { --snow-left: 36%; --snow-duration: 24s; --snow-delay: 5.5s; font-size: 1.2rem; opacity: 0.5; }
.snowflake:nth-child(18) { --snow-left: 76%; --snow-duration: 17s; --snow-delay: 6.8s; font-size: 0.78rem; }

@keyframes snowfall {
  0% {
    transform: translate3d(0, -12vh, 0) rotate(0deg);
    opacity: 0;
  }
  8% {
    opacity: var(--snow-opacity, 0.65);
  }
  50% {
    transform: translate3d(var(--snow-drift, 12px), 52vh, 0) rotate(180deg);
  }
  100% {
    transform: translate3d(calc(var(--snow-drift, 12px) * -1), 112vh, 0) rotate(360deg);
    opacity: 0.15;
  }
}

.snowflake:nth-child(odd) {
  --snow-drift: 16px;
}

.snowflake:nth-child(even) {
  --snow-drift: -14px;
}

@media (prefers-reduced-motion: reduce) {
  .snowflake {
    animation: none;
    opacity: 0;
  }
}

body > *:not(.snowflakes):not(.modal-overlay):not(.cookie):not(.call-fab) {
  position: relative;
  z-index: 1;
}

/* Topbar */
.topbar {
  background: var(--blue-800);
  color: var(--white);
  font-size: 0.8rem;
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 8px 0;
}

.topbar__phone {
  color: var(--blue-200);
  font-weight: 700;
  font-size: 0.95rem;
}

.topbar__phone:hover {
  color: var(--white);
  text-decoration: none;
}

/* Header */
.header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(13, 74, 122, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

.logo {
  font-weight: 800;
  font-size: 1.35rem;
  text-decoration: none;
  white-space: nowrap;
}

.logo__main {
  color: var(--blue-800);
}

.logo__accent {
  color: var(--blue-400);
}

.nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.nav a {
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.nav a:hover {
  color: var(--blue-600);
}

.header__call-mobile {
  display: none;
  font-weight: 700;
  color: var(--blue-600);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

a.btn {
  text-decoration: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn-cta {
  background: linear-gradient(135deg, var(--blue-600), var(--cyan));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(26, 127, 196, 0.4);
}

.btn-cta:hover {
  box-shadow: 0 8px 28px rgba(26, 127, 196, 0.5);
}

.btn-outline {
  background: var(--white);
  border: 2px solid var(--blue-400);
  color: var(--blue-800);
}

.btn-outline:hover {
  background: var(--blue-50);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  padding: 48px 0 64px;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(77, 184, 232, 0.25), transparent),
    linear-gradient(135deg, var(--blue-50) 0%, var(--white) 50%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr minmax(420px, 520px);
  gap: 48px;
  align-items: center;
}

.hero__label {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--blue-200);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-600);
}

.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--blue-950);
}

.hero__benefits {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.hero__benefits li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.hero__benefits li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.hero__link {
  font-weight: 600;
  color: var(--blue-600);
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__promo {
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  border: 1px solid rgba(77, 184, 232, 0.45);
  background: var(--white);
  box-shadow:
    0 24px 56px rgba(15, 76, 129, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

.hero__promo-media {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  line-height: 0;
  min-height: 200px;
  background: var(--blue-950);
}

.hero__promo-media::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(to top, rgba(10, 45, 77, 0.35), transparent);
  pointer-events: none;
}

.hero__promo-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--blue-800);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 14px rgba(10, 45, 77, 0.18);
}

.hero__promo-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 42%;
}

.hero__promo-caption {
  position: relative;
  padding: 18px 22px 22px;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(160deg, #2f8fd8 0%, var(--blue-600) 45%, #0d4a7a 100%);
}

.hero__promo-caption::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.hero__promo-line {
  margin: 6px 0 0;
  font-weight: 800;
  font-size: clamp(1rem, 1.85vw, 1.22rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

/* Sections */
.section {
  padding: 64px 0;
}

.section-title {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  text-align: center;
  color: var(--blue-800);
}

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

.section-subtitle {
  margin: 0 auto 36px;
  text-align: center;
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* Fault cards */
.faults {
  background: var(--white);
}

.faults__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.fault-card {
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.fault-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.fault-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--blue-800);
}

.fault-card__time {
  margin: 0;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.fault-card__price {
  margin: 4px 0 16px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue-600);
}

.fault-card .btn {
  width: 100%;
  font-size: 0.8rem;
  padding: 10px 12px;
}

/* Promo */
.promo {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  color: var(--white);
}

.promo__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.promo__text h2 {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.promo__text p {
  margin: 0 0 20px;
  opacity: 0.9;
}

.promo .btn-cta {
  background: var(--white);
  color: var(--blue-800);
  box-shadow: none;
}

.promo .btn-cta:hover {
  background: var(--blue-50);
}

.promo__timer-label {
  margin: 0 0 12px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.85;
}

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

.timer__block {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 12px 14px;
  min-width: 56px;
  text-align: center;
}

.timer__block span {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.timer__block small {
  font-size: 0.65rem;
  opacity: 0.8;
}

.timer__sep {
  font-size: 1.25rem;
  font-weight: 700;
  opacity: 0.7;
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.about__since {
  font-weight: 700;
  color: var(--blue-600);
  margin: 0 0 12px;
}

.about__text {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.95rem;
}

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

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--blue-200);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.brand-card:hover {
  border-color: var(--blue-400);
  box-shadow: 0 4px 16px rgba(26, 127, 196, 0.12);
}

.brand-card__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 72px;
  height: 2rem;
  overflow: hidden;
}

.brand-card img {
  max-width: 88px;
  max-height: 2.35rem;
  width: auto;
  height: auto;
  object-fit: contain;
  transform-origin: center center;
  flex-shrink: 0;
}

.brand-card__img--sm {
  transform: scale(0.75);
}

.brand-card__img--indesit {
  transform: scale(1.995);
}

.brand-card__img--toshiba {
  max-width: 130px;
  max-height: 2.4rem;
}

.brand-card__frame--electrolux,
.brand-card__frame--gorenje,
.brand-card__frame--miele {
  width: 100%;
  max-width: none;
  height: 2.75rem;
}

.brand-card__frame--electrolux img,
.brand-card__frame--gorenje img,
.brand-card__frame--miele img {
  max-width: 112px;
  max-height: 2.6rem;
}

.brand-card__img--electrolux {
  transform: scale(1.9);
}

.brand-card__img--gorenje {
  transform: scale(2.6);
}

.brand-card__img--miele {
  transform: scale(3);
}

.brand-card__img--md {
  transform: scale(2.1);
  max-width: 110px;
}

.brand-card__img--lg {
  transform: scale(2.8);
  max-width: 115px;
}

.brand-card__img--smeg {
  transform: scale(1.9);
}

/* Masters & Reviews */
.masters,
.reviews {
  background: var(--blue-50);
}

.masters__track,
.reviews__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.masters__track::-webkit-scrollbar,
.reviews__track::-webkit-scrollbar {
  display: none;
}

.master-card,
.review-card {
  flex: 0 0 min(280px, 85vw);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(13, 74, 122, 0.08);
  border: 1px solid var(--blue-200);
}

.master-card__photo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  border: 3px solid var(--blue-200);
  background: var(--blue-50);
  box-shadow: 0 6px 18px rgba(13, 74, 122, 0.12);
}

.master-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.master-card h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.master-card__role {
  margin: 0;
  font-size: 0.85rem;
  color: var(--blue-600);
  font-weight: 600;
}

.master-card__exp {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.review-card__stars {
  color: #f5a623;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-card p {
  margin: 0 0 16px;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.review-card__author {
  margin: 0;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue-800);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--blue-400);
  background: var(--white);
  color: var(--blue-600);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.carousel-btn:hover {
  background: var(--blue-50);
}

/* Contacts */
.contacts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.contact-block h3 {
  margin: 0 0 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
}

.contact-block p {
  margin: 0;
  font-weight: 600;
}

.contacts .btn-lg {
  display: block;
  margin: 0 auto;
  max-width: 320px;
  width: 100%;
}

/* Map block — full-bleed карта с голубым фильтром и скрытыми контролами */
.map-block {
  position: relative;
  padding: 56px 0 0;
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 60%);
  overflow: hidden;
}

.map-block__head {
  text-align: center;
  margin-bottom: 28px;
}

.map-block__head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 800;
  color: var(--blue-800);
}

.map-block__head p {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.95rem;
}

.map-block__frame {
  position: relative;
  width: 100%;
  height: clamp(420px, 55vw, 560px);
  overflow: hidden;
  background: var(--blue-50);
  isolation: isolate;
}

.map-block__frame iframe {
  position: absolute;
  inset: -70px -90px -90px -90px;
  width: calc(100% + 180px);
  height: calc(100% + 160px);
  border: 0;
  display: block;
  filter: saturate(1.08);
}

.map-block__tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(15, 76, 129, 0.18) 0%, transparent 22%, transparent 78%, rgba(15, 76, 129, 0.22) 100%),
    linear-gradient(90deg, rgba(15, 76, 129, 0.18) 0%, transparent 12%, transparent 88%, rgba(15, 76, 129, 0.18) 100%),
    radial-gradient(ellipse 65% 50% at 50% 50%, transparent 0%, rgba(77, 184, 232, 0.12) 100%);
  mix-blend-mode: multiply;
}

.map-block__card-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.map-card {
  pointer-events: auto;
  width: min(360px, calc(100% - 32px));
  padding: 26px;
  background: var(--white);
  border-radius: 20px;
  box-shadow:
    0 24px 56px rgba(15, 76, 129, 0.35),
    0 0 0 1px rgba(77, 184, 232, 0.4);
  display: flex;
  gap: 16px;
}

.map-card__pin {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan));
  color: var(--white);
  box-shadow: 0 6px 16px rgba(26, 127, 196, 0.45);
}

.map-card__body {
  flex: 1;
}

.map-card__body h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  color: var(--blue-800);
}

.map-card__addr {
  margin: 0 0 14px;
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.4;
}

.map-card__list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.map-card__list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.88rem;
  color: var(--blue-950);
  font-weight: 600;
}

.map-card__list li span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-400);
}

.map-card__list a {
  color: var(--blue-600);
  font-weight: 700;
}

.map-card__cta {
  margin-top: 4px;
}

@media (max-width: 960px) {
  .map-block__frame {
    height: clamp(360px, 70vw, 460px);
  }

  .map-block__frame iframe {
    inset: -56px -64px -72px -64px;
    width: calc(100% + 128px);
    height: calc(100% + 128px);
  }

  .map-card {
    width: min(340px, calc(100% - 24px));
    padding: 22px;
  }
}

@media (max-width: 720px) {
  .map-block {
    padding-top: 44px;
    padding-bottom: 32px;
  }

  .map-block__frame {
    height: 320px;
  }

  .map-block__frame iframe {
    inset: -36px -40px -48px -40px;
    width: calc(100% + 80px);
    height: calc(100% + 84px);
  }

  .map-block__card-wrap {
    position: static;
    display: block;
    padding: 0 16px;
    margin-top: -28px;
    pointer-events: none;
  }

  .map-card {
    pointer-events: auto;
    width: 100%;
    max-width: none;
    padding: 20px;
    border-radius: 18px;
    gap: 14px;
    box-shadow:
      0 18px 40px rgba(15, 76, 129, 0.28),
      0 0 0 1px rgba(77, 184, 232, 0.4);
  }

  .map-card__pin {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }

  .map-card__list {
    margin-bottom: 14px;
    gap: 6px;
  }
}

/* Footer */
.footer {
  background: var(--blue-950);
  color: rgba(255, 255, 255, 0.75);
  padding: 24px 0;
  font-size: 0.8rem;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer__links {
  margin: 0;
}

.footer__links a {
  color: var(--blue-200);
  text-decoration: underline;
}

.footer__links a:hover {
  color: var(--white);
  text-decoration: none;
}

.checkbox a {
  color: var(--blue-600);
  font-weight: 600;
}

.checkbox a:hover {
  text-decoration: underline;
}

/* Policy page */
.policy-page {
  padding: 40px 0 64px;
  background: var(--white);
}

.policy-content {
  max-width: 820px;
  margin: 0 auto;
}

.policy-content h1 {
  margin: 0 0 24px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
  color: var(--blue-800);
}

.policy-content h2 {
  margin: 32px 0 12px;
  font-size: 1.15rem;
  color: var(--blue-600);
}

.policy-content p,
.policy-content li {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--gray-700);
}

.policy-content ul {
  margin: 0 0 16px;
  padding-left: 1.25rem;
}

.policy-content a {
  color: var(--blue-600);
}

.policy-table {
  width: 100%;
  margin: 16px 0;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.policy-table th,
.policy-table td {
  padding: 12px;
  border: 1px solid var(--blue-200);
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  background: var(--blue-50);
  color: var(--blue-800);
  font-weight: 600;
}

.policy-back {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--blue-200);
}

.policy-page .header__call-mobile {
  display: block;
  margin-left: auto;
  font-weight: 700;
  color: var(--blue-600);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 45, 77, 0.55);
  backdrop-filter: blur(4px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  width: min(440px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow);
}

.modal--wide {
  width: min(640px, 100%);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--gray-500);
  cursor: pointer;
}

.modal h2 {
  margin: 0 0 20px;
  font-size: 1.35rem;
  color: var(--blue-800);
}

.lead-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.lead-form input[type='text'],
.lead-form input[type='tel'] {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 16px;
  border: 1px solid var(--blue-200);
  border-radius: 10px;
  font: inherit;
}

.lead-form input:focus {
  outline: 2px solid var(--blue-400);
  border-color: transparent;
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 400;
  cursor: pointer;
}

.checkbox input {
  margin-top: 3px;
  flex-shrink: 0;
}

.form-message {
  margin-top: 12px;
  font-size: 0.85rem;
  display: none;
}

.form-message.is-visible {
  display: block;
}

.form-message--success {
  color: #1b8a4a;
}

.form-message--error {
  color: #c62828;
}

.policy-text {
  font-size: 0.9rem;
  color: var(--gray-700);
  max-height: 50vh;
  overflow-y: auto;
}

/* Floating call button */
.call-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 240;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan));
  color: var(--white);
  text-decoration: none;
  font-family: inherit;
  box-shadow:
    0 16px 40px rgba(15, 76, 129, 0.4),
    0 4px 12px rgba(15, 76, 129, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.call-fab:hover {
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow:
    0 20px 48px rgba(15, 76, 129, 0.5),
    0 6px 14px rgba(15, 76, 129, 0.3);
}

.call-fab:active {
  transform: scale(0.98);
}

.call-fab__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.call-fab__pulse {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.55);
  z-index: -1;
  transform: translate(8px, -50%);
  top: 50%;
  left: 16px;
  animation: callPulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes callPulse {
  0% {
    transform: translate(8px, -50%) scale(0.85);
    opacity: 0.65;
  }
  70% {
    transform: translate(8px, -50%) scale(1.9);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.call-fab__body {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.call-fab__title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.92;
}

.call-fab__phone {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

@media (max-width: 600px) {
  .call-fab {
    right: 14px;
    bottom: 14px;
    padding: 10px 14px;
    gap: 10px;
  }

  .call-fab__icon {
    width: 40px;
    height: 40px;
  }

  .call-fab__body {
    display: none;
  }

  .call-fab__pulse {
    width: 40px;
    height: 40px;
    left: 14px;
  }
}

/* Cookie — всплывающая панель внизу экрана */
.cookie {
  position: fixed;
  inset: auto 0 0;
  z-index: 250;
  padding: 0;
  pointer-events: none;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie.is-visible {
  pointer-events: auto;
  transform: translateY(0);
  opacity: 1;
}

.cookie[hidden] {
  display: none !important;
}

.cookie__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--blue-200);
  box-shadow: 0 -8px 32px rgba(15, 76, 129, 0.18);
  backdrop-filter: blur(10px);
}

.cookie__text {
  margin: 0;
  flex: 1;
  min-width: 200px;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--blue-950);
}

.cookie__inner .btn {
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
  }

  .hero__promo {
    max-width: 100%;
  }

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

  .nav {
    display: none;
  }

  .header__call-mobile {
    display: block;
    margin-left: auto;
  }

  .header .btn-cta {
    display: none;
  }
}

@media (max-width: 600px) {
  .topbar__addr,
  .topbar__hours {
    display: none;
  }

  .promo__inner {
    flex-direction: column;
    text-align: center;
  }

  .timer {
    justify-content: center;
  }
}
