/* ============================================================
   Moscow Holod — страница /uslugi
   Подключать в functions.php или через child-theme
   ============================================================ */

/* ---------- Переменные ---------- */
:root {
  --mh-blue:        #0D4F8C;
  --mh-blue-light:  #EBF3FB;
  --mh-blue-mid:    #3A7CC7;
  --mh-green:       #0D6B4A;
  --mh-green-light: #E6F5EF;
  --mh-green-mid:   #1E9E6E;
  --mh-text:        #1A1A2E;
  --mh-muted:       #5C6070;
  --mh-border:      #E0E4ED;
  --mh-bg:          #F7F9FC;
  --mh-white:       #FFFFFF;
  --mh-radius:      12px;
  --mh-radius-sm:   8px;
  --mh-transition:  0.2s ease;
}

/* ---------- Базовые сбросы ---------- */
.mhf-uslugi *,
.mhf-uslugi *::before,
.mhf-uslugi *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.mhf-uslugi a { text-decoration: none; }
.mhf-uslugi ul { list-style: none; }

/* ---------- Контейнер ---------- */
.mhf-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Общие секции ---------- */
.mhf-section-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--mh-text);
  margin-bottom: 36px;
  letter-spacing: -0.3px;
}

/* ---------- HERO ---------- */
.mhf-hero {
  position: relative;
  background: linear-gradient(135deg, #0A3A6B 0%, #0D4F8C 55%, #1362A8 100%);
  padding: 80px 0 90px;
  overflow: hidden;
}

.mhf-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.mhf-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #B8D9F8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 20px;
}

.mhf-hero__title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.mhf-hero__sub {
  font-size: clamp(15px, 2vw, 18px);
  color: #B8D9F8;
  line-height: 1.6;
  margin-bottom: 36px;
}

.mhf-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Снежинки */
.mhf-hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.mhf-hero__flake {
  position: absolute;
  color: rgba(255,255,255,0.06);
  font-size: 120px;
  line-height: 1;
  user-select: none;
}
.mhf-hero__flake--1 { right: 8%; top: -20px; font-size: 200px; }
.mhf-hero__flake--2 { right: 30%; bottom: -30px; font-size: 140px; }
.mhf-hero__flake--3 { right: 18%; top: 40%; font-size: 80px; opacity: 0.04; }

/* ---------- КНОПКИ ---------- */
.mhf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--mh-radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--mh-transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.mhf-btn--primary {
  background: #FFFFFF;
  color: var(--mh-blue);
  border-color: #FFFFFF;
}
.mhf-btn--primary:hover {
  background: #EBF3FB;
  border-color: #EBF3FB;
  transform: translateY(-1px);
}

.mhf-btn--outline {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.4);
}
.mhf-btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: rgba(255,255,255,0.7);
}

.mhf-btn--full { width: 100%; justify-content: center; }

/* CTA-секция — перебить цвета кнопки */
.mhf-cta .mhf-btn--primary {
  background: var(--mh-blue);
  color: #FFFFFF;
  border-color: var(--mh-blue);
}
.mhf-cta .mhf-btn--primary:hover {
  background: #0A3A6B;
  border-color: #0A3A6B;
}

/* ---------- ДОВЕРИЕ / ЦИФРЫ ---------- */
.mhf-trust {
  background: var(--mh-white);
  border-bottom: 1px solid var(--mh-border);
  padding: 32px 0;
}

.mhf-trust__list {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.mhf-trust__item {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  border-right: 1px solid var(--mh-border);
}
.mhf-trust__item:last-child { border-right: none; }

.mhf-trust__num {
  font-size: 28px;
  font-weight: 800;
  color: var(--mh-blue);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.mhf-trust__label {
  font-size: 13px;
  color: var(--mh-muted);
  text-align: center;
}

/* ---------- УСЛУГИ ---------- */
.mhf-services {
  padding: 72px 0;
  background: var(--mh-bg);
}

.mhf-services__group {
  margin-bottom: 48px;
}
.mhf-services__group:last-child { margin-bottom: 0; }

.mhf-services__group-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px 6px 10px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.mhf-services__group-label--blue  { background: var(--mh-blue-light); color: var(--mh-blue); }
.mhf-services__group-label--green { background: var(--mh-green-light); color: var(--mh-green); }
.mhf-services__group-label--gray  { background: #F0F2F5; color: #444; }

/* ---------- КАРТОЧКИ ---------- */
.mhf-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.mhf-cards--single {
  grid-template-columns: 1fr;
  max-width: 380px;
}

.mhf-card {
  background: var(--mh-white);
  border: 1px solid var(--mh-border);
  border-radius: var(--mh-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--mh-transition);
  cursor: pointer;
}

.mhf-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.mhf-card--blue:hover  { border-color: var(--mh-blue-mid); }
.mhf-card--green:hover { border-color: var(--mh-green-mid); }

.mhf-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--mh-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.mhf-card--blue  .mhf-card__icon { background: var(--mh-blue-light);  color: var(--mh-blue); }
.mhf-card--green .mhf-card__icon { background: var(--mh-green-light); color: var(--mh-green); }
.mhf-card--gray  .mhf-card__icon { background: #F0F2F5; color: #555; }

.mhf-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--mh-text);
  line-height: 1.3;
}

.mhf-card__text {
  font-size: 14px;
  color: var(--mh-muted);
  line-height: 1.6;
  flex: 1;
}

.mhf-card__link {
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
  transition: var(--mh-transition);
}
.mhf-card--blue  .mhf-card__link { color: var(--mh-blue); }
.mhf-card--green .mhf-card__link { color: var(--mh-green); }
.mhf-card--gray  .mhf-card__link { color: #555; }

.mhf-card:hover .mhf-card__link { opacity: 0.7; }

/* ---------- ПРЕИМУЩЕСТВА ---------- */
.mhf-why {
  padding: 72px 0;
  background: var(--mh-white);
}

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

.mhf-why__item { display: flex; flex-direction: column; gap: 10px; }

.mhf-why__num {
  font-size: 13px;
  font-weight: 800;
  color: var(--mh-blue);
  letter-spacing: 0.04em;
}

.mhf-why__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--mh-text);
}

.mhf-why__text {
  font-size: 14px;
  color: var(--mh-muted);
  line-height: 1.65;
}

/* ---------- КАК МЫ РАБОТАЕМ ---------- */
.mhf-steps {
  padding: 72px 0;
  background: var(--mh-bg);
}

.mhf-steps__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}

.mhf-steps__list::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--mh-border);
  z-index: 0;
}

.mhf-step {
  position: relative;
  z-index: 1;
  padding: 0 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mhf-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--mh-blue);
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mhf-step__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--mh-text);
  margin-top: 16px;
}

.mhf-step__text {
  font-size: 14px;
  color: var(--mh-muted);
  line-height: 1.65;
}

/* ---------- CTA + ФОРМА ---------- */
.mhf-cta {
  padding: 72px 0;
  background: var(--mh-blue);
}

.mhf-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.mhf-cta__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.mhf-cta__sub {
  font-size: 15px;
  color: #B8D9F8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.mhf-cta__geo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #B8D9F8;
}

/* Форма */
.mhf-form { display: flex; flex-direction: column; gap: 12px; }

.mhf-form__input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--mh-radius-sm);
  background: rgba(255,255,255,0.12);
  color: #FFFFFF;
  font-size: 15px;
  outline: none;
  transition: var(--mh-transition);
  -webkit-appearance: none;
  appearance: none;
}

.mhf-form__input::placeholder { color: rgba(255,255,255,0.5); }
.mhf-form__input:focus { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.18); }

.mhf-form__select option { background: var(--mh-blue); color: #FFFFFF; }

.mhf-form__privacy {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.5;
}
.mhf-form__privacy a { color: rgba(255,255,255,0.6); text-decoration: underline; }

/* ---------- FAQ ---------- */
.mhf-faq {
  padding: 72px 0;
  background: var(--mh-white);
}

.mhf-faq__list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mhf-faq__item {
  border-bottom: 1px solid var(--mh-border);
}

.mhf-faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--mh-text);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}

.mhf-faq__q::-webkit-details-marker { display: none; }

.mhf-faq__q::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--mh-blue);
  flex-shrink: 0;
  transition: transform var(--mh-transition);
}

.mhf-faq__item[open] .mhf-faq__q::after {
  transform: rotate(45deg);
}

.mhf-faq__a {
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--mh-muted);
  line-height: 1.7;
}

/* ---------- SEO-ТЕКСТ ---------- */
.mhf-seo {
  padding: 48px 0;
  background: var(--mh-bg);
  border-top: 1px solid var(--mh-border);
}

.mhf-seo__inner {
  max-width: 760px;
}

.mhf-seo__inner h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--mh-text);
  margin-bottom: 16px;
}

.mhf-seo__inner p {
  font-size: 14px;
  color: var(--mh-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.mhf-seo__inner p:last-child { margin-bottom: 0; }

.mhf-seo__inner a {
  color: var(--mh-blue);
  text-decoration: underline;
}
.mhf-seo__inner a:hover { opacity: 0.75; }

/* ---------- АДАПТИВ ---------- */
@media (max-width: 768px) {
  .mhf-hero { padding: 56px 0 64px; }
  .mhf-hero__flake--1 { font-size: 120px; right: -10px; }
  .mhf-hero__flake--2 { display: none; }

  .mhf-trust__list { gap: 0; }
  .mhf-trust__item {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid var(--mh-border);
    padding: 16px;
  }
  .mhf-trust__item:nth-child(odd) { border-right: 1px solid var(--mh-border); }
  .mhf-trust__item:nth-last-child(-n+2) { border-bottom: none; }

  .mhf-cta__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .mhf-steps__list::before { display: none; }
  .mhf-steps__list { gap: 28px; }
  .mhf-step { flex-direction: row; align-items: flex-start; gap: 16px; padding: 0; }
  .mhf-step__title { margin-top: 0; }

  .mhf-cards--single { max-width: 100%; }
}

@media (max-width: 480px) {
  .mhf-hero__cta { flex-direction: column; }
  .mhf-btn { width: 100%; justify-content: center; }
  .mhf-why__grid { gap: 24px; }
}


/* ── CF7 reset внутри mhf-form ── */
.mhf-cta .wpcf7 { display: block; }
.mhf-cta .wpcf7-form { display: contents; }
.mhf-cta .wpcf7 .mhf-form__row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Инпуты CF7 наследуют стили .mhf-form__input */
.mhf-cta .wpcf7-form-control.wpcf7-text,
.mhf-cta .wpcf7-form-control.wpcf7-tel {
    flex: 1 1 180px;
}

/* Убираем дефолтный спиннер CF7 */
.mhf-cta .wpcf7-spinner { display: none !important; }

/* Сообщения валидации */
.mhf-cta .wpcf7-not-valid-tip {
    color: #ffb3b3;
    font-size: 12px;
    margin-top: 4px;
}
.mhf-cta .wpcf7-response-output {
    margin: 8px 0 0;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    border: none !important;
}
.mhf-cta .wpcf7-mail-sent-ok {
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.mhf-cta .wpcf7-validation-errors,
.mhf-cta .wpcf7-mail-sent-ng {
    background: rgba(255,80,80,0.25);
    color: #fff;
}
/* ── mhf-why ─────────────────────────────────────────────── */
.mhf-why {
  padding: 60px 0;
  background: #fff;
}

.mhf-why__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--mhf-text, #1A1A2E);
  margin-bottom: 40px;
}

.mhf-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .mhf-why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .mhf-why__grid { grid-template-columns: 1fr; }
}

.mhf-why__card {
  padding: 24px;
  background: #f8fafc;
  border-radius: 8px;
  border-top: 3px solid var(--mhf-blue, #0D4F8C);
}

.mhf-why__num {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--mhf-blue, #0D4F8C);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.mhf-why__card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--mhf-text, #1A1A2E);
  margin: 0 0 8px;
}

.mhf-why__card-text {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}


/* ── mhf-faq ─────────────────────────────────────────────── */
.mhf-faq {
  padding: 60px 0;
  background: #f8fafc;
}

.mhf-faq__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--mhf-text, #1A1A2E);
  margin-bottom: 32px;
}

.mhf-faq__list {
  max-width: 800px;
}

.mhf-faq__item {
  border-bottom: 1px solid #e2e8f0;
}

.mhf-faq__item:first-child {
  border-top: 1px solid #e2e8f0;
}

.mhf-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--mhf-text, #1A1A2E);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}

/* Hide native triangle in Safari/FF */
.mhf-faq__question::-webkit-details-marker { display: none; }
.mhf-faq__question::marker { display: none; }

.mhf-faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--mhf-blue, #0D4F8C);
  position: relative;
  transition: transform 0.25s ease;
}

/* + icon via pseudo */
.mhf-faq__icon::before,
.mhf-faq__icon::after {
  content: '';
  position: absolute;
  background: var(--mhf-blue, #0D4F8C);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mhf-faq__icon::before { width: 10px; height: 2px; }
.mhf-faq__icon::after  { width: 2px; height: 10px; transition: transform 0.25s ease; }

details[open] .mhf-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.mhf-faq__answer {
  padding: 0 0 18px;
}

.mhf-faq__answer p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}


/* ── mhf-seo-text ────────────────────────────────────────── */
.mhf-seo-text {
  padding: 48px 0 56px;
  background: #fff;
}

.mhf-seo-text__title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--mhf-text, #1A1A2E);
  margin-bottom: 20px;
}

.mhf-seo-text__body {
  max-width: 860px;
  font-size: 15px;
  line-height: 1.75;
  color: #555;
}

.mhf-seo-text__body p {
  margin: 0 0 14px;
}

.mhf-seo-text__body a {
  color: var(--mhf-blue, #0D4F8C);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mhf-seo-text__body a:hover {
  text-decoration: none;
}


/* ============================================================
   mhf-brands — лента логотипов
   ============================================================ */
.mhf-brands {
  padding: 32px 0;
}
.mhf-brands__header {
  text-align: center;
  margin-bottom: 16px;
}
.mhf-brands__title {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0;
}
.mhf-brands__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mhf-brands__scroll::-webkit-scrollbar { display: none; }
.mhf-brands__track {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 8px 0;
  /* если бренды помещаются — центрируем */
  flex-wrap: wrap;
  justify-content: center;
}
.mhf-brands__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}
.mhf-brands__logo {
  max-width: 120px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .65;
  transition: filter .2s, opacity .2s;
}
.mhf-brands__logo:hover {
  filter: grayscale(0);
  opacity: 1;
}
.mhf-brands__name {
  font-size: 13px;
  font-weight: 600;
  color: #999;
  white-space: nowrap;
}


/* ============================================================
   mhf-extra-services — доп. услуги
   ============================================================ */
.mhf-extra-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px 0;
  background: #f9f9f9;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 8px;
  margin: 40px 0;
}
@media (max-width: 768px) {
  .mhf-extra-services {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.mhf-extra-services__heading {
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--mhf-text, #1A1A2E);
  margin: 0 0 16px;
}
.mhf-extra-services__text {
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
}
.mhf-extra-services__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mhf-extra-services__item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--mhf-text, #1A1A2E);
  line-height: 1.5;
}
.mhf-extra-services__item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--mhf-blue, #0D4F8C);
  font-weight: 700;
}


/* ============================================================
   mhf-gallery — галерея работ
   ============================================================ */
.mhf-gallery {
  padding: 40px 0;
}
.mhf-gallery__heading {
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--mhf-text, #1A1A2E);
  margin: 0 0 24px;
}
.mhf-gallery__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--mhf-blue, #0D4F8C) #eee;
  padding-bottom: 8px;
}
.mhf-gallery__track {
  display: flex;
  gap: 12px;
  width: max-content;
}
.mhf-gallery__item {
  flex: 0 0 auto;
}
.mhf-gallery__img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
@media (max-width: 480px) {
  .mhf-gallery__img {
    width: 220px;
    height: 160px;
  }
}


/* ============================================================
   mhf-faq — часто задаваемые вопросы
   ============================================================ */
.mhf-faq {
  padding: 48px 0;
}
.mhf-faq__heading {
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--mhf-text, #1A1A2E);
  margin: 0 0 32px;
}
.mhf-faq__grid {
  display: grid;
  gap: 24px;
}
.mhf-faq__grid--cols-2 {
  grid-template-columns: 1fr 1fr;
}
.mhf-faq__grid--cols-1 {
  grid-template-columns: 1fr;
}
@media (max-width: 768px) {
  .mhf-faq__grid--cols-2 {
    grid-template-columns: 1fr;
  }
}
.mhf-faq__item {
  border-bottom: 1px solid #e5e8ec;
  padding-bottom: 20px;
}
.mhf-faq__question {
  font-weight: 600;
  font-size: 16px;
  color: var(--mhf-text, #1A1A2E);
  margin-bottom: 8px;
}
.mhf-faq__answer {
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

/* ── CF7: инпуты получают стили mhf-form__input ── */
.mhf-cta .wpcf7-form-control.wpcf7-text,
.mhf-cta .wpcf7-form-control.wpcf7-tel {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: var(--mh-radius-sm);       /* 8px */
    background: rgba(255,255,255,0.12);
    color: #FFFFFF;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: var(--mh-transition);
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
    display: block;
}

.mhf-cta .wpcf7-form-control.wpcf7-text::placeholder,
.mhf-cta .wpcf7-form-control.wpcf7-tel::placeholder {
    color: rgba(255,255,255,0.5);
}

.mhf-cta .wpcf7-form-control.wpcf7-text:focus,
.mhf-cta .wpcf7-form-control.wpcf7-tel:focus {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.18);
}

/* ── CF7: обёртка span → блок ── */
.mhf-cta .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* ── CF7: кнопка Submit → mhf-btn стили ── */
.mhf-cta .wpcf7-form-control.wpcf7-submit {
    width: 100%;
    padding: 14px 28px;
    background: rgba(255,255,255,0.15);
    color: #FFFFFF;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: var(--mh-radius-sm);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--mh-transition);
    -webkit-appearance: none;
    appearance: none;
}

.mhf-cta .wpcf7-form-control.wpcf7-submit:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.8);
}

/* ── CF7: вертикальные отступы между полями ── */
.mhf-cta .wpcf7-form > p {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ── Телефон в CTA ── */
.mhf-cta__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: -0.3px;
    margin-top: 4px;
}

.mhf-cta__phone::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}

.mhf-cta__phone:hover {
    color: rgba(255,255,255,0.8);
}

.mhf-cta .wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: var(--mh-radius-sm);
    background: rgba(255,255,255,0.12);
    color: #FFFFFF;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    resize: vertical;
    min-height: 120px;
    transition: var(--mh-transition);
    box-sizing: border-box;
    display: block;
}

.mhf-cta .wpcf7-form-control.wpcf7-textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.mhf-cta .wpcf7-form-control.wpcf7-textarea:focus {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.18);
}