.header-cta {
    display: none;
    gap: 12px;
    align-items: center;
}

@media (min-width: 768px) {
  .header-cta {
    display: flex;
  }
}

.cta-btn {
    padding: 12px 18px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

/* Call Now */
.call-now {
    background: #1f9d55; /* зелёный */
    color: #fff;
}

.call-now:hover {
    background: #178045;
}

/* Free Estimate */
.free-estimate {
    background: #ffffff;
    color: #1f2937;
    border: 2px solid #1f2937;
}

.free-estimate:hover {
    background: #1f2937;
    color: #ffffff;
}





/* === DESKTOP / TABLET (по умолчанию) === */
.hero-trust-row {
  padding: 20px 0;
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: nowrap; /* одна линия */
}

/* Awards */
.trust-awards {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-awards img {
  width: 64px;
  height: auto;
}

/* Labels */
.trust-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-label img {
  width: 32px;
  height: auto;
}

.trust-label--yelp {
  background: #0e0e0e;
}

.trust-label--google {
  background: #de2121;
}

/* Hover */
.trust-label:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}


/* === MOBILE === */
@media (max-width: 767px) {

  .trust-row {
    flex-direction: column;       /* ❗ вертикаль */
    align-items: center;
    gap: 16px;
  }

  .trust-awards {
    flex-wrap: wrap;              /* награды в 2 ряда */
    justify-content: center;
    gap: 10px;
  }

  .trust-awards img {
    width: 52px;                  /* меньше, чтобы влезли */
  }

  .trust-label {
    width: 100%;
    max-width: 340px;
    justify-content: center;
    font-size: 14px;
  }

  .trust-label img {
    width: 28px;
  }
}




.offers-grid-section {
  padding: 40px 0;
}

/* GRID */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.offer-card {
  background: #de2121;          /* ❗ нужный цвет */
  color: #ffffff;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

/* VALUE */
.offer-value {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 15px;
  font-style: normal;          /* ❗ без курсива */
}

/* TEXT */
.offer-text {
  font-size: 16px;
  font-weight: 600;
}

/* === MOBILE === */
@media (max-width: 767px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }

  .offer-value {
    font-size: 36px;
  }
}
