/* ===== HOME PAGE — home.css ===== */
/* Matches the reference HTML template exactly. */

/* --- HERO SECTION --- */
.hero {
  margin-top: 0; /* header is sticky, main already starts below */
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-height) - 108px);
  position: relative;
  overflow: hidden;
  background: var(--white);
}

/* --- LEFT --- */
.hero__left {
  padding: 20px 16px 0 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.hero__eyebrow::before {
  content: '';
  width: 8px;
  height: 11px;
  background: var(--blue);
  border-radius: 1px;
  transform: skewX(-22deg);
  flex-shrink: 0;
}

.hero__h1 {
  font-size: 31px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -.8px;
}
.hero__h1 span {
  display: block;
  color: var(--blue);
}

.hero__desc {
  font-size: 12px;
  max-width: 300px;
  margin-bottom: 12px;
}

.hero__badges {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 5; /* always above car */
}
.hero__badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  max-width: 88px;
}
.hero__badge-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}
.hero__badge-icon .ui-icon {
  width: 24px;
  height: 24px;
  color: var(--blue-dark);
}
.hero__badge-text {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.4;
  margin: 0;
}

/* --- CAR VISUAL — curved blue swoosh under car (match mockup) --- */
.hero__car-wrap {
  position: relative;
  overflow: visible;
  margin: 0 -36px 0 -28px;
  flex: 1;
  min-height: 220px;
  width: calc(100% + 64px);
  display: flex;
  align-items: flex-end;
}
.hero__car-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 58%;
  min-height: 120px;
  display: block;
  pointer-events: none;
}
.hero__car-shape--shadow {
  z-index: 0;
  height: 62%;
  bottom: -4px;
  left: -2%;
  width: 104%;
  transform: translateX(-1%);
}
.hero__car-shape--shadow path {
  fill: #d4dce8;
}
.hero__car-shape--blue {
  z-index: 1;
  height: 56%;
  min-height: 112px;
}
.hero__car-img {
  position: relative;
  z-index: 3;
  width: 88%;
  max-width: 420px;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left bottom;
  margin: 0 0 0 -3%;
  transform: translate(0, -6px);
  filter: drop-shadow(0 16px 32px rgba(10, 26, 58, .28));
  pointer-events: none;
  user-select: none;
}
.hero__plate {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-40%);
  z-index: 10;
  background: var(--blue);
  color: white;
  font-size: 13px;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: 4px;
  letter-spacing: .5px;
  white-space: nowrap;
}

/* --- RIGHT — Avantages diagram --- */
.hero__right {
  padding: 36px 24px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__advantages-head {
  position: relative;
  z-index: 20;
  width: 100%;
  flex-shrink: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  background: linear-gradient(180deg, #fff 72%, rgba(255, 255, 255, 0) 100%);
}

.diagram-wrap {
  position: relative;
  z-index: 1;
  width: 470px;
  max-width: 100%;
  margin: 0 auto;
}

.avan-title {
  width: 100%;
  margin: 0 0 2px;
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 900;
  font-style: italic;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  text-align: center;
  text-transform: uppercase;
}
.avan-title span {
  color: var(--blue);
}
.avan-swoosh {
  width: min(170px, 58%);
  height: 7px;
  margin: 0 auto 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 12' preserveAspectRatio='none'%3E%3Cpath d='M0 10 Q150 0 300 9' stroke='%231A3FBF' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

/* --- Diagram (470×470 = SVG viewBox — keeps ring + nodes aligned) --- */
.diagram {
  position: relative;
  width: 470px;
  height: 470px;
  max-width: 100%;
  margin: 0 auto;
}
.diagram__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.diagram__ring {
  --node-n: 7;
  --orbit-r: 158px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  z-index: 4;
}

/* Center circle */
.d-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(26, 63, 191, .14);
}
.d-center-logo {
  font-size: 9px;
  font-weight: 900;
  font-style: italic;
  text-align: center;
  line-height: 1.25;
  letter-spacing: -.3px;
}
.d-center-logo .r { color: var(--text-dark); }
.d-center-logo .p { color: var(--blue-mid); }

/* Nodes — evenly spaced on orbit ring */
.dnode {
  --node-n: 7;
  position: absolute;
  top: 0;
  left: 0;
  width: 76px;
  height: 76px;
  margin: -38px 0 0 -38px;
  padding: 7px 5px 5px;
  box-sizing: border-box;
  overflow: visible;
  background: var(--white);
  border: 2px solid rgba(26, 63, 191, .45);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 22px rgba(26, 63, 191, .12);
  transition: box-shadow .2s, transform .2s;
  transform:
    rotate(calc((360deg / var(--node-n)) * var(--i) - 90deg))
    translateY(calc(-1 * var(--orbit-r)))
    rotate(calc(90deg - (360deg / var(--node-n)) * var(--i)))
    scale(0.95);
}
.dnode:hover {
  box-shadow: 0 12px 28px rgba(26, 63, 191, .22);
  transform:
    rotate(calc((360deg / var(--node-n)) * var(--i) - 90deg))
    translateY(calc(-1 * var(--orbit-r)))
    rotate(calc(90deg - (360deg / var(--node-n)) * var(--i)))
    scale(0.988);
}
.dnode--lg {
  width: 84px;
  height: 84px;
  margin: -42px 0 0 -42px;
  padding: 7px 5px 5px;
  border-width: 2.5px;
  box-shadow: 0 10px 26px rgba(26, 63, 191, .16);
}

.dnode__num {
  position: absolute;
  top: -7px;
  left: -6px;
  width: 20px;
  height: 20px;
  background: var(--blue);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(26, 63, 191, .3);
  border: 2px solid #fff;
  line-height: 1;
}

.dnode--lg .dnode__num {
  width: 20px;
  height: 20px;
  font-size: 10px;
  top: -7px;
  left: -6px;
}
.dnode__icon {
  flex-shrink: 0;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.dnode__icon .ui-icon {
  width: 18px !important;
  height: 18px !important;
}
.dnode__label {
  flex-shrink: 1;
  min-height: 0;
  margin: 0;
  font-size: 7px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  max-width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-break: break-word;
}

/* ===== ADVANTAGES — one dataset, two layouts ===== */
.hero__advantages-lead {
  display: none;
  margin: 0 auto;
  max-width: 400px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-mid);
  text-align: center;
}

.advantages-view--cards {
  display: none;
  width: 100%;
}

.advantages-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.advantages-cards__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-height: 0;
  padding: 16px 14px 14px;
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
  border: 1px solid #e4eaf3;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(10, 26, 58, .07);
}

.advantages-cards__item--full {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
}

.advantages-cards__num {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(26, 63, 191, .28);
  line-height: 1;
}

.advantages-cards__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  color: var(--blue);
  background: linear-gradient(165deg, #fff 0%, #eef4ff 100%);
  border: 2px solid rgba(26, 63, 191, .14);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(26, 63, 191, .1);
}

.advantages-cards__icon .ui-icon {
  width: 22px !important;
  height: 22px !important;
}

.advantages-cards__text {
  flex: 1;
  min-width: 0;
  padding-right: 20px;
}

.advantages-cards__item--full .advantages-cards__text {
  padding-right: 0;
}

.advantages-cards__text strong {
  display: block;
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 800;
  color: #0a1a3a;
  line-height: 1.3;
}

.advantages-cards__text small {
  display: block;
  margin-top: 4px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  color: #5a6a8a;
  line-height: 1.4;
}

/* Service hours (single block) */
.home-service-hours {
  display: none;
  box-sizing: border-box;
  width: min(560px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(10, 26, 58, .06);
}

.home-service-hours__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(26, 63, 191, .25);
  border-radius: 50%;
  color: var(--blue);
}

.home-service-hours h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 900;
  color: var(--blue);
}

.home-service-hours p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-mid);
}

/* ===== RESPONSIVE (base hero — mobile-first overrides in .page-home) ===== */
@media (max-width: 600px) {
  .hero__left { padding: 28px 20px 0 20px; }
  .hero__h1 { font-size: 36px; letter-spacing: -.8px; }
  .hero__badges { gap: 16px; }
  .avan-title { font-size: 31px; }
}

/* ===== PAGE HOME — match reference screenshot ===== */
.page-home main {
  min-height: auto;
  background: #fff;
}

.page-home .home-wrap {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  background: #fff;
}

.page-home .hero {
  position: relative;
  z-index: 1;
  min-height: auto;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 36px 0;
}

.page-home .hero__right {
  align-items: center;
  padding-top: 12px;
}

.page-home .hero__left {
  padding-bottom: 0;
  padding-top: 12px;
}

.page-home .hero__advantages-head {
  margin-bottom: 0;
  min-height: 0;
}

.page-home .diagram-wrap {
  width: 470px;
  max-width: min(470px, 100%);
  margin: -10px 0 0;
}

.page-home .diagram {
  width: 470px;
  height: 470px;
  max-width: 100%;
}

.page-home .dnode {
  border-width: 2px;
}

.page-home .dnode--lg {
  border-width: 2.5px;
}

.page-home .dnode__label {
  font-size: 7px;
  max-width: 100%;
}

.page-home .dnode__icon .ui-icon {
  width: 18px !important;
  height: 18px !important;
}

/* Mobile-first car block (desktop overrides in min-width: 993px) */
.page-home .hero__car-wrap {
  flex: 0 0 auto;
  align-items: flex-end;
  justify-content: center;
  margin: 2px auto 8px;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  line-height: 0;
  overflow: visible;
  transform: none;
}

.page-home .hero__car-shape {
  left: 0;
  width: 100%;
  height: 52%;
  min-height: 72px;
}

.page-home .hero__car-shape--shadow {
  left: -2%;
  width: 104%;
  height: 54%;
}

.page-home .hero__car-shape--blue {
  height: 48%;
  min-height: 68px;
}

.page-home .hero__car-img {
  display: block;
  width: min(85%, 294px);
  max-width: 294px;
  height: auto;
  margin: 0 auto;
  transform: translateY(-2px);
  transform-origin: center bottom;
  object-fit: contain;
  object-position: center bottom;
}

.page-home .home-bottom-band {
  position: relative;
  z-index: 25;
  width: 100%;
  margin-top: -81px;
}

.page-home .home-cta-anchor {
  position: relative;
  z-index: 2;
  pointer-events: none;
  padding: 0;
}

.page-home .home-cta-anchor .cta-strip {
  pointer-events: auto;
  margin: 0 auto;
}

.page-home .home-trust-bar {
  position: relative;
  z-index: 1;
  display: none;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #fff;
  background: linear-gradient(105deg, #00122e 0%, #001f53 52%, #001637 100%);
}

.page-home .home-trust-bar__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 9px 16px;
}

.page-home .home-trust-bar__item {
  flex: 1 1 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
}

.page-home .home-trust-bar__item + .home-trust-bar__item {
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.page-home .home-trust-bar__item .ui-icon {
  flex-shrink: 0;
  width: 26px !important;
  height: 26px !important;
}

/* ===== DESKTOP / LAPTOP (≥993px) — match reference screenshot ===== */
@media (min-width: 993px) {
  .page-home .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    column-gap: clamp(16px, 2.5vw, 32px);
    min-height: auto;
    padding: 0 28px 0;
    overflow: visible;
  }

  .page-home .hero__left {
    display: flex;
    flex-direction: column;
    padding: 12px 6px 0 2px;
    align-self: start;
    position: relative;
    z-index: 1;
    overflow: visible;
  }

  .page-home .hero__intro {
    display: block;
    padding-top: 0;
    margin-top: 0;
  }

  .page-home .hero__eyebrow {
    margin-top: 0;
  }

  .page-home .hero__h1 {
    font-size: clamp(26px, 2.4vw, 31px);
    color: var(--text-dark);
    margin-bottom: 8px;
  }

  .page-home .hero__h1 span {
    display: block;
    color: var(--blue);
  }
  .page-home .hero__desc { font-size: 12px; margin-bottom: 10px; }
  .page-home .hero__badges { gap: 10px; margin-bottom: 12px; }

  .page-home .hero__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 2px 0 6px;
    align-self: start;
    position: relative;
    z-index: 4;
  }

  .page-home .hero__advantages-head {
    margin-top: 0;
    padding-top: 0;
  }

  .page-home .hero__advantages-head .avan-title {
    margin-top: 0;
    font-size: clamp(22px, 2.2vw, 26px);
  }

  .page-home .hero__advantages-lead { display: none; }

  .page-home .advantages-view--orbit { display: block; }
  .page-home .advantages-view--cards { display: none; }

  .page-home .hero__advantages-head .avan-swoosh {
    width: min(160px, 55%);
    height: 6px;
    margin: 0 auto 0;
  }

  .page-home .hero__car-wrap {
    min-height: 190px;
    margin: 4px 0 0;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    transform: translateY(30px);
    align-items: flex-end;
    justify-content: flex-start;
  }

  .page-home .hero__car-shape {
    left: 0;
    width: 100%;
    height: 54%;
    min-height: 132px;
  }

  .page-home .hero__car-shape--shadow {
    left: -2%;
    width: 104%;
    height: 58%;
  }

  .page-home .hero__car-shape--blue {
    height: 52%;
    min-height: 126px;
  }

  .page-home .hero__car-img {
    width: min(100%, 360px);
    max-width: 360px;
    height: auto;
    margin: 0;
    transform: translate(0, -8px);
    transform-origin: left bottom;
    object-position: left bottom;
  }

  .page-home .diagram-wrap {
    margin-top: -12px;
    position: relative;
    z-index: 2;
  }

  .page-home .advantages-view--orbit,
  .page-home .diagram-wrap {
    width: 470px;
    max-width: min(470px, 100%);
    transform: scale(0.82);
    transform-origin: top center;
    margin-bottom: -85px;
  }

  .page-home .home-bottom-band {
    margin-top: 46px;
  }

  .page-home .home-cta-anchor {
    display: block;
  }

  .page-home .home-trust-bar {
    display: block;
  }

  .page-home .home-service-hours {
    display: none;
  }
}

@media (max-width: 1200px) and (min-width: 993px) {
  .page-home .hero__h1 {
    font-size: 34px;
  }

  .page-home .home-bottom-band {
    margin-top: 44px;
  }

  .page-home .hero__car-wrap {
    min-height: 170px;
    transform: translateY(58px);
  }

  .page-home .hero__car-img {
    max-width: 300px;
  }

  .page-home .advantages-view--orbit,
  .page-home .diagram-wrap {
    transform: scale(0.78);
    transform-origin: top center;
    margin-bottom: -58px;
  }
}

@media (min-width: 1201px) {
  .page-home .advantages-view--orbit,
  .page-home .diagram-wrap {
    transform: none;
    margin-bottom: -24px;
  }

  .page-home .home-bottom-band {
    margin-top: -18px;
  }
}

/* Sub-14" laptops (993px–1399px) — center nodes, bigger labels, tighter car; ≥1400px unchanged */
@media (min-width: 993px) and (max-width: 1399px) {
  .page-home .hero {
    align-items: stretch;
  }

  .page-home .hero__badges {
    margin-bottom: 4px;
  }

  .page-home .hero__car-wrap {
    margin-top: -6px;
    min-height: 155px;
    transform: translateY(12px);
  }

  .page-home .home-bottom-band {
    margin-top: -85px;
  }

  .page-home .home-cta-anchor .cta-strip {
    margin-top: 15px;
  }

  .page-home .hero__right {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .page-home .hero__advantages-head {
    flex-shrink: 0;
  }

  .page-home .advantages-view--orbit {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 0;
    padding-bottom: 30px;
    box-sizing: border-box;
  }

  .page-home .diagram-wrap {
    margin-top: -15px;
    margin-bottom: 0;
    transform-origin: center center;
  }

  .page-home .dnode__label {
    font-size: 9px;
    line-height: 1.2;
  }

  .page-home .dnode__icon .ui-icon {
    width: 20px !important;
    height: 20px !important;
  }

  .page-home .dnode {
    width: 82px;
    height: 82px;
    margin: -41px 0 0 -41px;
  }

  .page-home .dnode--lg {
    width: 90px;
    height: 90px;
    margin: -45px 0 0 -45px;
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  .page-home .advantages-view--orbit,
  .page-home .diagram-wrap {
    transform: scale(0.86);
    transform-origin: center center;
  }

  .page-home .home-bottom-band {
    margin-top: -84px;
  }
}

@media (min-width: 1201px) and (max-width: 1399px) {
  .page-home .home-bottom-band {
    margin-top: -87px;
  }
}

/* ===== MOBILE (≤992px) — swap orbit for cards, no duplicate sections ===== */
@media (max-width: 992px) {
  .page-home .hero {
    grid-template-columns: 1fr;
    padding: 0 16px 20px;
  }
  .page-home .hero__left {
    padding: 8px 0 0;
  }
  .page-home .hero__right {
    padding: 4px 0 0;
  }

  .page-home .hero__advantages-head {
    margin-top: 20px;
  }

  .page-home .hero__eyebrow {
    margin-bottom: 4px;
  }

  .page-home .hero__h1 {
    font-size: clamp(29px, 8.4vw, 36px);
    margin-bottom: 4px;
  }
  .page-home .hero__desc {
    font-size: 13px;
    margin-bottom: 6px;
  }
  .page-home .hero__badges {
    gap: 10px;
    margin-bottom: 8px;
  }

  .page-home .hero__advantages-head .avan-title {
    text-align: center;
    font-size: 26px;
  }
  .page-home .hero__advantages-head .avan-swoosh {
    margin: 0 auto 12px;
    width: 200px;
  }
  .page-home .hero__advantages-lead {
    display: block;
    text-align: left;
    margin: 0 0 16px;
    max-width: none;
  }

  .page-home .advantages-view--orbit {
    display: none;
  }
  .page-home .advantages-view--cards {
    display: block;
  }

  /* Mobile: hide CTA + trust band — footer covers actions */
  .page-home .home-bottom-band {
    display: none;
  }

  .page-home .home-service-hours {
    display: block;
    width: auto;
    max-width: none;
    margin: 20px 16px 28px;
    padding: 26px 20px;
  }

  .page-home .advantages-view--cards {
    margin-bottom: 4px;
  }

  .page-home .advantages-cards {
    gap: 12px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .page-home .advantages-cards {
    gap: 14px;
  }

  .page-home .advantages-cards__item {
    padding: 18px 16px 16px;
  }

  .page-home .advantages-cards__item--full {
    padding: 18px 20px;
  }

  .page-home .advantages-cards__icon {
    width: 52px;
    height: 52px;
  }

  .page-home .advantages-cards__icon .ui-icon {
    width: 24px !important;
    height: 24px !important;
  }

  .page-home .advantages-cards__text strong {
    font-size: 14px;
  }

  .page-home .advantages-cards__text small {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .page-home .home-service-hours {
    margin: 16px 12px 24px;
    padding: 22px 16px;
  }
}
