:root {
  --blue: #1155d9;
  --blue-deep: #063a99;
  --cyan: #1ca3ff;
  --violet: #8236ff;
  --yellow: #ffbf29;
  --green: #1fbf62;
  --telegram: #7d39ff;
  --text: #14233d;
  --muted: #61708d;
  --line: #dfe7f5;
  --bg: #f3f5f8;
  --card: #ffffff;
  --radius: 18px;
  --shadow: 0 14px 34px rgba(19, 56, 129, 0.08);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topline { height: 14px; background: linear-gradient(90deg, #174dde, #2b6cff 40%, #1544b3 100%); }
.header {
  background: #fff;
  border-bottom: 1px solid rgba(15, 63, 154, 0.06);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header__row {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 7px; }
.brand__logo {
  width: 46px;
  height: 46px;
  border-radius: 0;
  background: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 44px;
}

.brand__logo img {
  width: 46px;
  height: 46px;
  display: block;
}
.brand__text { display: flex; flex-direction: column; font-size: 12px; color: var(--muted); }
.brand__text strong { font-size: 16px; color: var(--text); }
.nav { display: flex; gap: 24px; font-size: 14px; color: #30435f; }
.header__cta { display: flex; align-items: center; gap: 14px; }
.link-phone { font-weight: 700; font-size: 15px; }

.hero {
  position: relative;
  overflow: hidden;

  /* ФОНОВАЯ КАРТИНКА */
  background: url('/src/img/hero-bg.webp') center/cover no-repeat;

  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.04), transparent 24%),
    radial-gradient(circle at 22% 40%, rgba(255,255,255,.03), transparent 18%),
    linear-gradient(120deg, rgba(4,31,95,.55), rgba(17,85,217,.55)),
    linear-gradient(180deg, rgba(10,75,209,.55), rgba(8,56,145,.55));

  z-index: 1;
}

.hero h1,
.hero p {
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}

/* контент поверх */
.hero__content {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.2fr .72fr;
  gap: 34px;
  padding: 50px 0 42px;
  align-items: center;
}



.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .72fr;
  gap: 34px;
  padding: 50px 0 42px;
  align-items: center;
}
.hero__copy { color: #fff; max-width: 620px; }
.eyebrow {
  display: inline-block;
  padding: 8px 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 16px;
}
.hero h1 {
  margin: 0 0 14px;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 800;
}
.hero h1 span { color: var(--yellow); }
.hero p { margin: 0 0 18px; max-width: 540px; color: rgba(255,255,255,.85); }
.hero__points { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.hero__points li { position: relative; padding-left: 22px; }
.hero__points li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 10px; height: 10px; border-radius: 50%; background: var(--yellow);
}
.hero-form {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 22px 38px rgba(4, 26, 74, 0.26);
}
.hero-form h3 { margin: 0 0 14px; font-size: 22px; }
.hero-form label { display: block; margin-bottom: 12px; }
.hero-form label span { display: block; font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.hero-form input {
  width: 100%; height: 46px; border-radius: 12px; border: 1px solid var(--line);
  padding: 0 14px; outline: none; font: inherit;
}
.hero-form small { display: block; margin-top: 10px; color: var(--muted); font-size: 12px; }
.modal-open { overflow: hidden; }
.repair-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.repair-modal.is-open { display: flex; }
.repair-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 43, 0.62);
}
.repair-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  max-height: calc(100vh - 40px);
  overflow: auto;
}
.repair-modal__form { border-radius: 20px; }
.repair-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #eef3ff;
  color: #082d68;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}
.page { padding: 18px 0 40px; }
.section { margin-top: 26px; }
.section__title { margin: 0 0 18px 0px; font-size: 28px; line-height: 1.15; }
.section__lead { color: var(--muted); margin: 0 0 16px; }
.card, .cta-panel, .network-card, .device-card, .icon-card, .address-card, .service-photo, .dark-promo, .split, .jobs-banner {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.banner-row { display: grid; grid-template-columns: 1fr 320px; gap: 18px; }
.jobs-banner {
  background: linear-gradient(135deg, #0b4ed3, #07338b);
  color: #fff;
  padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.card__title { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.jobs-banner p, .cta-panel p { margin: 0; color: rgba(255,255,255,.8); }
.mini-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mini-thumb {
  min-height: 96px; border-radius: 16px; box-shadow: var(--shadow);
  background: linear-gradient(135deg, #0f56d8, #1947a1 70%, #2d7ef8);
  position: relative; overflow: hidden;
}
.mini-thumb::before, .mini-thumb::after {
  content: '';
  position: absolute; border-radius: 999px; background: rgba(255,255,255,.18);
}
.mini-thumb::before { width: 80px; height: 80px; right: -14px; top: -18px; }
.mini-thumb::after { width: 42px; height: 42px; left: 10px; bottom: 10px; }
.network-grid { display: grid; grid-template-columns: 1.1fr 1fr .88fr .88fr; gap: 16px; }
.network-card { background: #fff; padding: 14px; display: flex; flex-direction: column; gap: 12px; }
.network-card__meta strong, .network-card__metric strong { display: block; font-size: 28px; padding: 7px 7px 0 7px; color: #08399a;}
.network-card__meta span, .network-card__metric span { color: var(--muted); font-size: 13px; padding: 0px 7px;}
.network-card__visual, .visual {
  border-radius: 16px; flex: 1;
  background: linear-gradient(135deg, #0b52d7, #0b3388 68%, #2878ff);
  position: relative; overflow: hidden;
}
.visual::before, .address-card__thumb::before, .service-photo::before {
  content: '';
  position: absolute; inset: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
}

.visual--wide::after { width: 120px; height: 96px; border-radius: 22px; }
.cta-panel {
  background: linear-gradient(90deg, #0951d7, #2392fd 52%, #7f36ff 100%);
  color: #fff; padding: 24px 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.cta-panel__buttons, .center-buttons, .messengers, .footer-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 24px; border-radius: 12px;
  font-weight: 600; border: 0; cursor: pointer; white-space: nowrap;
}
.btn--sm { min-height: 40px; padding: 0 18px; font-size: 14px; }
.btn--yellow { color: #1e2b4b; background: linear-gradient(180deg, #ffd663, var(--yellow)); }
.btn--cyan { color: #fff; background: linear-gradient(90deg, #1ea7ff, #18bfff); }
.btn--violet { color: #fff; background: linear-gradient(90deg, #7f35ff, #a54cff); }
.btn--blue { color: #fff; background: linear-gradient(90deg, #0c51d6, #1d73ff); }
.btn--green { color: #fff; background: linear-gradient(90deg, #15b85e, #24c169); }
.btn--telegram { color: #fff; background: linear-gradient(90deg, #6f31ff, #9643ff); }
.device-list { display: grid; gap: 14px; }
.device-card { background: #fff; padding: 16px; display: grid; grid-template-columns: 92px 1fr; gap: 16px; }
.phone {
  align-self: start; width: 82px; height: 108px; border-radius: 18px;
  background: linear-gradient(145deg, #dbe3ef, #a8b6cc);
  position: relative; box-shadow: inset 0 0 0 4px #eff5ff, 0 10px 22px rgba(12,34,78,.12);
}
.phone::before { content: ''; position: absolute; width: 34px; height: 6px; top: 8px; left: 50%; transform: translateX(-50%); border-radius: 999px; background: rgba(31,42,71,.22); }
.phone::after { content: ''; position: absolute; width: 18px; height: 18px; left: 10px; top: 18px; border-radius: 50%; background: rgba(255,255,255,.95); box-shadow: 24px 0 0 rgba(255,255,255,.78), 12px 18px 0 rgba(255,255,255,.7); }
.phone--gold { background: linear-gradient(145deg, #ece2be, #bda56a); }
.phone--blue { background: linear-gradient(145deg, #bfdcff, #4ea5ff); }
.phone--black { background: linear-gradient(145deg, #474c56, #080b11); }
.device-card h3 { margin: 0 0 6px; font-size: 24px; }
.device-links { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.device-links a { color: #1770e6; font-size: 14px; }
.icon-grid { margin-top: 18px; display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.categories-grid { grid-template-columns: repeat(5, 1fr); }
.icon-card {
  background: #fff; min-height: 60px; padding: 26px 8px; text-align: center;
  display: grid; place-items: center; gap: 4px;
}
.categories-grid .icon-card {
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 14px;
}
.categories-grid .icon-card a {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
}
.categories-grid .icon-card span {
  width: 100%;
  height: 68%;
  max-height: 132px;
}
.categories-grid .icon-card img {
  width: 100%;
  height: 100%;
}
.icon-card span { font-size: 16px; }
.icon-card small { color: var(--muted); font-size: 14px;}
.center-buttons { justify-content: center; margin-top: 18px; }
.map-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; }
.map-box {
  min-height: 360px; background: #f6ecd3; border-radius: 20px; position: relative;
  overflow: hidden; box-shadow: var(--shadow);
}
.map-grid {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.4) 0 2px, transparent 2px 90px),
    linear-gradient(rgba(255,255,255,.4) 0 2px, transparent 2px 90px),
    radial-gradient(circle at 30% 40%, rgba(111,164,91,.45), transparent 18%),
    radial-gradient(circle at 70% 70%, rgba(111,164,91,.35), transparent 18%),
    linear-gradient(135deg, rgba(255,255,255,.35), rgba(255,255,255,.08));
  background-size: 90px 90px, 90px 90px, auto, auto, auto;
}

.map-box::after { width: 120%; height: 8px; top: 62%; left: -10%; transform: rotate(-18deg); }
.map-point {
  position: absolute; width: 18px; height: 18px; border-radius: 50%; background: #fff;
  border: 5px solid #2d7bff; box-shadow: 0 4px 14px rgba(17,82,208,.25);
}
.p1 { left: 18%; top: 22%; } .p2 { left: 42%; top: 18%; } .p3 { left: 65%; top: 26%; }
.p4 { left: 28%; top: 45%; } .p5 { left: 52%; top: 46%; } .p6 { left: 75%; top: 52%; }
.p7 { left: 22%; top: 70%; } .p8 { left: 58%; top: 72%; }
.address-list { display: grid; gap: 12px; }
.address-card {
  background: #fff; padding: 12px; display: grid; grid-template-columns: 104px 1fr; gap: 12px; align-items: center;
}
.address-card__thumb, .service-photo {
  min-height: 84px; border-radius: 14px; background: linear-gradient(135deg, #0c52d7, #093188 68%, #2d7efe);
  position: relative; overflow: hidden;
}
.address-card h3 { margin: 0 0 4px; font-size: 16px; }
.address-card p { margin: 0; color: var(--muted); font-size: 13px; }
.split {
  background: #fff; padding: 28px; display: grid; grid-template-columns: 1fr 320px; gap: 22px; align-items: center;
}
.metrics { display: flex; gap: 28px; margin: 16px 0 18px; flex-wrap: wrap; }
.metrics div { display: flex; flex-direction: column; }
.metrics strong { font-size: 28px; }
.metrics span { color: var(--muted); font-size: 13px; }
.illustration, .parts-visual, .promo-phone {
  min-height: 240px; border-radius: 22px; position: relative; overflow: hidden;
}
.illustration {
  background: linear-gradient(145deg, #f3f7ff, #dae9ff);
}
.illustration::before {
  content: ''; position: absolute; right: 16px; bottom: 6px; width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #ffd65a, #ffb700 60%, transparent 61%);
}
.illustration::after {
  content: ''; position: absolute; left: 22px; top: 26px; width: 180px; height: 120px; border-radius: 16px;
  background: linear-gradient(145deg, #0f58dd, #245be0 65%, #7ac4ff);
}
.parts-visual {
  background: linear-gradient(145deg, #0840ad, #0f63e5);
}

.bullet-list { margin: 0; padding-left: 18px; display: grid; gap: 8px; }
.messengers { justify-content: center; }
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-photo { min-height: 220px; }
.reviews {
  margin-top: 22px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; align-items: stretch;
}
.reviews__summary, .review-list, .review-text {
  background: #fff; padding: 20px; border-radius: 18px; box-shadow: var(--shadow);
}
.rating { font-size: 28px; font-weight: 800; color: #ff8e18; }
.review-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.review-item {
  border: 1px solid var(--line); border-radius: 14px; min-height: 74px; padding: 14px;
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
}
.review-item span { color: var(--muted); }
.review-text { margin-top: 18px; color: #384861; }
.dark-promo {
  background: linear-gradient(135deg, #083c9e, #0d5adf 55%, #062d7a);
  color: #fff; padding: 28px; display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: center;
}
.bullet-list--light { color: rgba(255,255,255,.86); }
.promo-phone {
  background: radial-gradient(circle at 38% 70%, #ff3574, transparent 22%), linear-gradient(145deg, #0b132b, #253861);
}
.promo-phone::before {
  content: ''; position: absolute; width: 160px; height: 260px; right: 24px; bottom: -20px; border-radius: 26px;
  background: linear-gradient(145deg, #101010, #3d3f45); box-shadow: 0 26px 38px rgba(0,0,0,.34);
}
.promo-phone::after {
  content: ''; position: absolute; width: 110px; height: 220px; right: 74px; bottom: 8px; border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0));
  transform: skewX(-14deg);
}
.social-strip { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; }
.avatar {
  aspect-ratio: 1; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow);
  background: linear-gradient(145deg, #3659a9, #7e9cf0);
}
.avatar--2 { background: linear-gradient(145deg, #7b3cc3, #be7fff); }
.avatar--3 { background: linear-gradient(145deg, #c13b77, #ff92b9); }
.avatar--4 { background: linear-gradient(145deg, #345ca3, #8fbaff); }
.avatar--5 { background: linear-gradient(145deg, #2b397e, #5e8ce3); }
.avatar--6 { background: linear-gradient(145deg, #7d4f9b, #b180d8); }
.avatar--7 { background: linear-gradient(145deg, #284183, #4f9cf8); }
.avatar--8 { background: linear-gradient(145deg, #375ea6, #9db6f7); }
.cities-grid {
  background: #fff; padding: 24px; border-radius: 20px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.city-col h3 { margin: 0 0 10px; color: var(--blue); font-size: 24px; }
.city-col a { display: block; color: #31527b; margin: 6px 0; font-size: 14px; }
.footer { margin-top: 34px; background: #eef1f5; border-top: 1px solid #d8e1f1; padding: 26px 0 16px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 20px; }
.footer h3 { margin: 0 0 12px; font-size: 16px; }
.footer a { display: block; margin: 8px 0; color: #47607f;}
.footer__bottom {
  border-top: 1px solid #d9e2f0; margin-top: 20px; padding-top: 16px;
  display: flex; justify-content: space-between; gap: 18px; color: var(--muted); font-size: 13px;
}
.floating-widget {
  position: fixed; right: 18px; bottom: 18px; width: 240px; overflow: hidden;
  background: #fff; border-radius: 18px; box-shadow: 0 18px 44px rgba(17,44,95,.22); z-index: 20;
}
.floating-widget__head { background: linear-gradient(90deg, #f5f8fe, #fff); padding: 10px 14px; font-weight: 700; }
.floating-widget__body { padding: 14px; }
.floating-widget__body p { margin: 0 0 12px; color: #455470; }
.floating-widget__actions { display: flex; gap: 8px; }
.floating-widget__actions a {
  flex: 1; text-align: center; min-height: 38px; display: grid; place-items: center; border-radius: 10px;
  color: #fff; font-weight: 700; font-size: 14px;
}
.floating-widget__actions a:first-child { background: linear-gradient(90deg, #18a8ff, #1cc0ff); }
.floating-widget__actions a:last-child { background: linear-gradient(90deg, #7f36ff, #a54cff); }
.brand--footer { margin-bottom: 14px; }
@media (max-width: 1100px) {
  .network-grid, .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .icon-grid { grid-template-columns: repeat(6, 1fr); }
  .categories-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 900px) {
  .nav, .header__cta .link-phone { display: none; }
  .hero__content, .banner-row, .map-layout, .split, .dark-promo, .reviews, .footer__grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .cta-panel { flex-direction: column; align-items: stretch; }
  .hero h1 { font-size: 34px; }
  .social-strip { grid-template-columns: repeat(4, 1fr); }
  .floating-widget { width: 210px; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 20px, 1120px); }
  .hero__content { padding: 30px 15px; }
  .hero h1 { font-size: 28px; }
  .section__title { font-size: 24px; }
  .network-grid, .cities-grid, .review-list, .icon-grid, .social-strip { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .device-card { grid-template-columns: 1fr; }
  .phone { width: 92px; }
  .footer__bottom { flex-direction: column; }
  .floating-widget { right: 10px; bottom: 10px; width: 180px; }
}
@media (max-width: 900px) and (min-width: 641px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
}
.icon-card span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}

.icon-card img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.no {
  display:none;
}
/* мобильная кнопка звонка */
.mobile-call {
  display: none;
}

/* мобильная версия */
@media (max-width: 900px) {

  .header {
    position: sticky;
    top: 0;
    z-index: 999;
  }

  .header__row {
    justify-content: space-between;
  }

  .mobile-call {
    display: block;
  }

  .header__cta {
    display: none;
  }

  .nav {
    display: none;
  }

  .brand__text span {
    display: none;
  }
}
.mobile-call__btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;
  font-family: "Inter", Arial, sans-serif;
  background: linear-gradient(180deg, #ffd663, #ffbf29); /* жёлтый */
  border-radius: 12px;

  box-shadow: 0 6px 14px rgba(255, 191, 41, 0.4);

}

.mobile-call__btn svg {
  width: 20px;
  height: 20px;
}

.mobile-call__btn svg path {
  fill: #fff;
}

.mobile-request__btn {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 1;

  background: linear-gradient(180deg, #ffd663, #ffbf29);
  color: #1e2b4b;

  height: 46px;
  padding: 0 14px;

  border-radius: 12px;

  font-weight: 700;
  font-size: 16px;

  box-shadow: 0 6px 14px rgba(255, 191, 41, 0.4);
}

.mobile-actions {
  display: none;
  gap: 8px;
}

@media (max-width: 900px) {

  .mobile-actions {

    display: flex;
  }

  .mobile-call {
    display: none;
  }

}

/* иконка темная под желтый фон */
.mobile-call__btn svg path {
  fill: #1e2b4b;
}
button.btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
}



.map-layout--interactive {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.map-box--real {
  min-height: 420px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-box--real iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  transition: opacity 0.3s ease;
}

.address-list--scroll {
  max-height: 420px; /* высота под 4 карточки */
  overflow-y: auto;
  padding-right: 6px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.address-list--scroll::-webkit-scrollbar {
  width: 8px;
}

.address-list--scroll::-webkit-scrollbar-thumb {
  background: #c8d6f0;
  border-radius: 20px;
}

.address-card {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  cursor: pointer;
  transition: 0.25s ease;
  flex: 0 0 auto; /* важно */
}

.address-card:hover {
  transform: translateY(-2px);
  border-color: #cfe0ff;
  box-shadow: 0 10px 22px rgba(17, 85, 217, 0.12);
}

.address-card--active {
  border-color: var(--blue);
  box-shadow: 0 16px 30px rgba(17, 85, 217, 0.18);
}

.address-card--active h3,
.address-card:hover h3 {
  color: var(--blue);
}

.address-card__thumb {
  min-height: 84px;
  height: 84px;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f5f8;
}

.address-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.address-route {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.address-route:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .map-layout--interactive {
    grid-template-columns: 1fr;
  }

  .map-box--real,
  .map-box--real iframe {
    min-height: 320px;
  }

  .address-list--scroll {
    max-height: 408px;
  }
}
.review-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-item__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.review-item__info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-item__info strong {
  font-weight: 700;
}

.review-item__info span {
  color: var(--muted);
}

.price-table {
  border: 1px solid #cfd9e8;
  border-radius: 34px;
  overflow: hidden;
  background: #f8fafc;
  box-shadow: none;
}

.price-table__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px 150px;
  gap: 20px;
  align-items: center;
  padding: 22px 26px;
  background: #f5f7fb;
  color: #617a9d;
  font-size: 15px;
  line-height: 1.35;
  border-bottom: 1px solid #d8e1ee;
}

.price-table__head-price {
  text-align: left;
}

.price-list {
  background: #fff;
}

.price-list__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: center;
  padding: 13px 26px 13px 26px;
  border-bottom: 1px solid #d8e1ee;
  background: #fff;
}

.price-list__row:first-child {
  background: #edf2f8;
}

.price-list__row:last-child {
  border-bottom: none;
}

.price-list__main {
  min-width: 0;
}

.price-list__name {
  color: #082d68;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
}

.price-list__badge {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f4bd24;
  color: #082d68;
  font-size: 14px;
  font-weight: 700;
}

.price-list__side {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.price-list__prices {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
}

.price-list__value {
  color: #0f59c8;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  white-space: nowrap;
}

.price-list__old-value {
  margin-top: 6px;
  color: #7f8ea4;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: line-through;
  white-space: nowrap;
}

.price-list__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 18px;
  background: #f4bd24;
  color: #082d68;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}

.price-list__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(244, 189, 36, 0.28);
}

@media (max-width: 900px) {
  .price-table__head {
    grid-template-columns: minmax(0, 1fr) 150px 130px;
    padding: 18px 18px;
    gap: 16px;
    font-size: 14px;
  }

  .price-list__row {
    grid-template-columns: minmax(0, 1fr) 280px;
    padding: 18px;
    gap: 18px;
  }

  .price-list__name {
    font-size: 16px;
  }

  .price-list__side {
    gap: 14px;
  }

  .price-list__btn {
    min-height: 48px;
    padding: 0 18px;
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .price-table {
    border-radius: 24px;
  }

  .price-table__head {
    display: none;
  }

  .price-list__row,
  .price-list__row:first-child {
    grid-template-columns: 1fr;
    background: #fff;
  }

  .price-list__side {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .price-list__value,
  .price-list__old-value {
    white-space: normal;
  }

  .price-list__btn {
    width: 100%;
  }
}
/* чередование строк */
.price-list__row:nth-child(odd) {
  background: #ffffff;
}

.price-list__row:nth-child(even) {
  background: #f6f8fc;
}

/* hover как на нормальных таблицах */
.price-list__row:hover {
  background: #eef3ff;
  transition: 0.2s;
}
@media (max-width: 640px) {
  .price-list__btn {
    display: inline-flex;
  }
}
.price-note {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: #7a869a;
  padding: 20px 30px 10px 30px;
}
.breadcrumbs-wrap {
  border-bottom: 1px solid rgba(15, 63, 154, 0.06);
	margin-bottom: 20px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 0 0 14px 0;
  font-size: 14px;
  color: var(--muted);
}

.breadcrumbs a {
  color: #31527b;
  text-decoration: none;
  transition: color .2s ease;
}

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

.breadcrumbs__sep {
  color: #9aacbf;
}

.breadcrumbs__current {
  color: var(--text);
  font-weight: 600;
}
html {
  scroll-behavior: smooth;
}
section {
  scroll-margin-top: 80px;
}
.contacts-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: stretch;
}

.contacts-section__info,
.contacts-side-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.contacts-section__info {
  padding: 28px;
}

.contacts-section__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(17, 85, 217, 0.08);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.contacts-section__text {
  margin: 0 0 20px;
  color: var(--muted);
  max-width: 620px;
}

.contacts-cards {
  display: grid;
  gap: 14px;
}

.contacts-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f9fbff);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.contacts-card:hover {
  transform: translateY(-2px);
  border-color: #c8d8fb;
  box-shadow: 0 12px 24px rgba(17, 85, 217, 0.08);
}

.contacts-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: linear-gradient(135deg, #0c52d7, #2b78ff);
  color: #fff;
}

.contacts-card__content span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}

.contacts-card__content strong {
  display: block;
  font-size: 20px;
  line-height: 1.2;
  color: var(--text);
}

.contacts-card__content small {
  display: block;
  margin-top: 5px;
  color: #71809b;
  font-size: 13px;
}

.contacts-section__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.contacts-side-card {
  padding: 28px;
  background: linear-gradient(135deg, #083c9e, #0d5adf 55%, #062d7a);
  color: #fff;
}

.contacts-side-card h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

.contacts-side-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.contacts-side-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

.contacts-side-list li span {
  color: rgba(255,255,255,0.78);
}

.contacts-side-list li strong {
  text-align: right;
  font-size: 15px;
  font-weight: 700;
}

.contacts-side-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .contacts-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contacts-section__info,
  .contacts-side-card {
    padding: 20px;
    border-radius: 18px;
  }

  .contacts-card {
    grid-template-columns: 48px 1fr;
    padding: 14px;
  }

  .contacts-card__icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
    border-radius: 14px;
  }

  .contacts-card__content strong {
    font-size: 17px;
  }

  .contacts-section__actions .btn {
    width: 100%;
  }

  .contacts-side-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .contacts-side-list li strong {
    text-align: left;
  }
}
.header__row {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1 1 auto;
  font-size: 14px;
  color: #30435f;
}

.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  min-width: 220px;
}

.header__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}

.header__phone {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

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

.header__time {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}
@media (max-width: 900px) {
  .header__right {
    min-width: auto;
  }

  .header__contact {
    display: none;
  }

  .nav {
    display: none;
  }
}

.hero-form .form-status {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.4;
  min-height: 20px;
}

.hero-form .form-status--loading {
  color: #666;
}

.hero-form .form-status--success {
  color: #1f8b3a;
}

.hero-form .form-status--error {
  color: #d93025;
}
.form-status {
  display: none;
  margin-top: 12px;
  font-size: 14px;
}
.parts-phone {
  
  right: 26px;
  bottom: -10px;

  height: 220px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: none; /* убираем старый градиент */
  box-shadow: none;

}

.parts-phone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.25));
		border-radius: 18px;
}
.parts-phone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}
.btn--yellow {
  background: #ffd45e;
  color: #000;
  border: none;
}

.btn--yellow:hover {
  background: #f5c842;
}
.footer-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.footer-link.is-hidden {
  display: none;
}

.footer-more {
  display: inline-block;
  margin-top: 8px;
  color: #ffd45e;
  cursor: pointer;
}
.footer-menu a {
	margin: 0 0 3px 0;
	font-size: 14px;

}
.footer {

	font-size: 14px;

}

:root {
  --blue: #7a4a26;
  --blue-deep: #3b2114;
  --cyan: #b8793a;
  --violet: #8c5a37;
  --yellow: #d8a34c;
  --green: #6f7b4f;
  --telegram: #9a6a3d;
  --text: #2a1a12;
  --muted: #755f50;
  --line: #ead9c7;
  --bg: #f7f0e7;
  --card: #fffaf3;
  --shadow: 0 16px 36px rgba(77, 43, 24, 0.12);
}

body {
  background:
    radial-gradient(circle at 12% 0%, rgba(216, 163, 76, 0.16), transparent 30%),
    linear-gradient(180deg, #fbf6ee 0%, #f3e7d8 52%, #efe0cf 100%);
}

.topline {
  background: linear-gradient(90deg, #2b160d, #7a4a26 45%, #c28b43 100%);
}

.header {
  background: rgba(255, 250, 243, 0.96);
  border-bottom-color: rgba(96, 54, 30, 0.13);
  box-shadow: 0 10px 28px rgba(77, 43, 24, 0.08);
}

.nav,
.header__phone,
.link-phone {
  color: #3a2418;
}

.nav a:hover,
.header__phone:hover,
.link-phone:hover {
  color: #9a5f2f;
}

.hero::before {
  background:
    radial-gradient(circle at 8% 20%, rgba(216, 163, 76, .10), transparent 26%),
    radial-gradient(circle at 72% 24%, rgba(255, 236, 192, .08), transparent 20%),
    linear-gradient(120deg, rgba(43, 22, 13, .46), rgba(92, 52, 29, .34)),
    linear-gradient(180deg, rgba(128, 76, 38, .24), rgba(42, 24, 16, .42));
}

.eyebrow {
  background: rgba(255, 248, 232, .16);
  border-color: rgba(255, 226, 174, .24);
}

.hero h1 span {
  color: #f5c76f;
}

.hero__points li::before {
  background: linear-gradient(135deg, #f1c36e, #9d642f);
}

.hero-form,
.card,
.network-card,
.device-card,
.icon-card,
.address-card,
.split,
.jobs-banner,
.cities-grid,
.reviews__summary,
.review-list,
.review-text,
.floating-widget,
.contacts-section__info {
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-form input {
  border-color: #e4cdb6;
  background: #fffdf8;
}

.section__title,
.card__title,
.device-card h3,
.address-card h3,
.contacts-card__content strong {
  color: #2f1d12;
}

.badge {
  background: #f2e4d3;
  color: #5c351d;
}

.jobs-banner,
.cta-panel,
.dark-promo,
.contacts-side-card {
  background:
    radial-gradient(circle at 85% 20%, rgba(244, 197, 116, .22), transparent 26%),
    linear-gradient(135deg, #2a160d, #62371d 56%, #9a642e);
  color: #fffaf3;
}

.mini-thumb,
.network-card__visual,
.visual,
.address-card__thumb,
.service-photo {
  background:
    radial-gradient(circle at 30% 24%, rgba(246, 207, 131, .34), transparent 25%),
    linear-gradient(135deg, #3b2114, #765033 64%, #c8944b);
}

.network-card__meta strong,
.network-card__metric strong,
.city-col h3,
.contacts-section__badge,
.breadcrumbs a:hover {
  color: #7a4a26;
}

.device-links a,
.breadcrumbs a,
.footer a {
  color: #6b4328;
}

.btn--yellow,
.btn--cyan,
.btn--violet,
.btn--blue,
.btn--green,
.btn--telegram,
.floating-widget__actions a:first-child,
.floating-widget__actions a:last-child,
.price-list__btn {
  color: #2a1a12;
  background: linear-gradient(180deg, #f2c879, #c98638 56%, #9b5d2b);
  border: 0;
}

.btn--yellow:hover,
.btn--cyan:hover,
.btn--violet:hover,
.btn--blue:hover,
.btn--green:hover,
.btn--telegram:hover,
.price-list__btn:hover {
  background: linear-gradient(180deg, #ffd98d, #d99543 56%, #a96a34);
}

.phone {
  background: linear-gradient(145deg, #dcc4ac, #8d6a4d);
  box-shadow: inset 0 0 0 4px #fff7ed, 0 10px 22px rgba(77, 43, 24, .15);
}

.phone--blue,
.phone--gold {
  background: linear-gradient(145deg, #f0c877, #a96832);
}

.phone--black {
  background: linear-gradient(145deg, #4b3022, #160b07);
}

.map-box {
  background: #ead8bf;
}

.map-grid {
  background:
    linear-gradient(90deg, rgba(255,255,255,.42) 0 2px, transparent 2px 90px),
    linear-gradient(rgba(255,255,255,.42) 0 2px, transparent 2px 90px),
    radial-gradient(circle at 30% 40%, rgba(121, 139, 82,.32), transparent 18%),
    radial-gradient(circle at 70% 70%, rgba(178, 126, 63,.28), transparent 18%),
    linear-gradient(135deg, rgba(255,255,255,.35), rgba(255,255,255,.08));
}

.pin {
  border-color: #9d642f;
  box-shadow: 0 4px 14px rgba(103, 61, 31, .28);
}

.repair-visual {
  background: linear-gradient(145deg, #fff8ed, #ead2b8);
}

.gear {
  background: radial-gradient(circle at 40% 40%, #f4c875, #b87431 60%, transparent 61%);
}

.review-item,
.contacts-card,
.price-table,
.price-table__head,
.price-list__row {
  border-color: var(--line);
}

.rating {
  color: #b87431;
}

.review-text {
  color: #4f3728;
}

.avatar,
.avatar--2,
.avatar--3,
.avatar--4,
.avatar--5,
.avatar--6,
.avatar--7,
.avatar--8 {
  background: linear-gradient(145deg, #5b3825, #c6924e);
}

.footer {
  background: linear-gradient(180deg, #eee0cf, #e6d1bb);
  border-top-color: #d8bea2;
}

.footer__bottom {
  border-top-color: #dac3aa;
}

.floating-widget__head {
  background: linear-gradient(90deg, #f5eadb, #fffaf3);
}

.floating-widget__body p {
  color: #5f4737;
}

.address-card:hover,
.price-list__row:hover {
  background: #f4e8d9;
}

.address-card--active {
  border-color: #b77a3b;
  box-shadow: 0 16px 32px rgba(103, 61, 31, .16);
}

.price-table__head,
.price-list__row:first-child {
  background: #efe1d0;
  color: #6c4c37;
}

.price-list__row,
.price-list__row:nth-child(odd) {
  background: #fffaf3;
}

.price-list__row:nth-child(even) {
  background: #f7ecdf;
}

.price-list__name,
.price-list__value,
.price-list__badge {
  color: #5c351d;
}

.price-list__badge {
  background: #e9c27b;
}

.contacts-card {
  background: linear-gradient(180deg, #fffaf3, #f7ecdf);
}

.contacts-card:hover {
  border-color: #d6b78f;
  box-shadow: 0 12px 24px rgba(103, 61, 31, .12);
}

.contacts-card__icon {
  background: linear-gradient(135deg, #5c351d, #b9793b);
}

.mobile-call__inner {
  background: linear-gradient(180deg, #f2c879, #c98638);
}

.footer-more {
  color: #8d5528;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 221, 166, .18);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 221, 166, .18), transparent 28%),
    radial-gradient(circle at 92% 52%, rgba(206, 137, 57, .26), transparent 34%),
    linear-gradient(115deg, #2b160d 0%, #4c2715 46%, #9a642e 100%);
  box-shadow: 0 18px 38px rgba(77, 43, 24, .18);
}

.cta-panel::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,0) 52%);
  pointer-events: none;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel .card__title {
  color: #fff6e8;
  text-shadow: 0 2px 8px rgba(0,0,0,.26);
}

.cta-panel p {
  color: rgba(255, 246, 232, .88);
}

.cta-panel__buttons {
  align-items: center;
}

.cta-panel__buttons .btn {
  border-radius: 13px;
  color: #2a160d;
  background:
    linear-gradient(180deg, rgba(255,255,255,.24), rgba(255,255,255,0) 38%),
    linear-gradient(180deg, #f7d58e 0%, #d9983d 58%, #a8642b 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.36), 0 12px 24px rgba(49, 24, 12, .24);
  font-weight: 600;
}

.cta-panel__buttons .btn:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,.30), rgba(255,255,255,0) 40%),
    linear-gradient(180deg, #ffe0a0 0%, #e4a449 58%, #b06d31 100%);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .cta-panel__buttons .btn {
    width: 100%;
  }
}

.reviews__summary {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 0;
  height: 262px;
}

.reviews__service-photo {
  width: 100%;
  height: 262px;
  object-fit: cover;
}

.reviews__service-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(43, 22, 13, .76);
  color: #fff6e8;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

@media (max-width: 900px) {
  .reviews__summary {
    height: 262px;
  }
}

.brand__logo {
  width: 54px;
  height: 54px;
  flex-basis: 54px;
}

.brand__logo img {
  width: 54px;
  height: 54px;
}

.footer-buttons .btn {
  color: #2a1a12;
}

/* === Исправление карточек типов кофемашин на мобильной версии === */
.categories-grid {
  align-items: stretch;
}

.categories-grid .icon-card {
  overflow: hidden;
}

.categories-grid .icon-card a {
  text-decoration: none;
}

.categories-grid .icon-card span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.categories-grid .icon-card img {
  object-fit: contain;
}

.categories-grid .icon-card small {
  display: block;
  width: 100%;
  min-height: 40px;
  line-height: 1.25;
  text-align: center;
  color: #6b4328;
}

@media (max-width: 640px) {
  .section--devices {
    margin-top: 22px;
  }

  .section--devices .section__title {
    margin-bottom: 14px;
    font-size: 22px;
    line-height: 1.2;
  }

  .categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
  }

  .categories-grid .icon-card {
    width: 100%;
    min-height: 222px;
    aspect-ratio: auto;
    padding: 14px 10px 12px;
    border-radius: 20px;
    display: flex;
    align-items: stretch;
    justify-content: center;
  }

  .categories-grid .icon-card a {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: end;
    justify-items: center;
    gap: 10px;
  }

  .categories-grid .icon-card span {
    width: 100%;
    height: 145px;
    max-height: none;
    padding: 4px 2px 0;
  }

  .categories-grid .icon-card img {
    width: 100%;
    height: 100%;
    max-width: 110px;
    max-height: 110px;
    object-fit: contain;
  }

  .categories-grid .icon-card small {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    padding: 0 2px;
  }
}

@media (max-width: 380px) {
  .categories-grid {
    gap: 10px;
  }

  .categories-grid .icon-card {
    min-height: 205px;
    padding: 12px 8px 10px;
  }

  .categories-grid .icon-card span {
    height: 130px;
  }

  .categories-grid .icon-card img {
    max-width: 118px;
    max-height: 118px;
  }

  .categories-grid .icon-card small {
    min-height: 42px;
    font-size: 16px;
  }
}
