.p32-header {
  background: #fff;
  box-shadow: 0 8px 24px rgba(18, 42, 64, .12);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: #222;
}

.p32-header * {
  box-sizing: border-box;
}

.p32-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.p32-middle {
  min-height: 88px;
  display: grid;
  grid-template-columns: 185px minmax(340px, .9fr) 145px 310px;
  gap: 15px;
  align-items: center;
}

.p32-logo img {
  display: block;
  width: 185px;
  height: auto;
}

.p32-service-box {
  height: 42px;
  display: grid;
  grid-template-columns: 148px minmax(0, .86fr) 104px;
  align-items: center;
  gap: 8px;
  background: transparent;
}

.p32-city {
  height: 100%;
  width: 148px;
  border: 2px solid #ef7f1a;
  border-radius: 10px;
  background: #fff5ec;
  color: #222;
  font-size: 15px;
  font-weight: 700;
  padding: 0 3mm;
  outline-color: #ef7f1a;
}

.p32-site-search {
  width: 100%;
  height: 100%;
  padding: 0 16px;
  border: 2px solid #ef7f1a;
  border-radius: 10px;
  color: #6a6a6a;
  font-size: 11px;
  font-weight: 500;
  outline: none;
}

.p32-site-search::placeholder {
  color: #9a9a9a;
  opacity: 1;
}

.p32-search-button {
  height: 100%;
  border: 0;
  border-radius: 10px;
  background: #ef7f1a;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.p32-search-button:hover {
  background: #d96c0f;
}

.p32-rating {
  transform: translateX(-18px);
}

.p32-rating iframe {
  display: block;
  width: 145px;
  height: 50px;
  border: 0;
  border-radius: 8px;
}

.p32-contacts {
  display: grid;
  gap: 6px;
  justify-items: end;
  line-height: 1.2;
  transform: translateX(-18px);
}

.p32-phone {
  color: #222;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.p32-mail {
  color: #d96c0f;
  text-decoration: none;
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
}

.p32-mail:hover,
.p32-address:hover {
  text-decoration: underline;
}

.p32-address {
  color: #d96c0f;
  text-decoration: none;
}

.p32-worktime {
  color: #d96c0f;
  font-size: 14.5px;
  font-weight: 650;
  white-space: nowrap;
}

.p32-nav-row {
  border-bottom: 1px solid #e6e6e6;
  background: #fff;
}

.p32-nav {
  min-height: 64px;
  display: block;
  align-items: center;
}

.p32-nav-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
  overflow-x: visible;
  scrollbar-width: none;
}

.p32-nav-items::-webkit-scrollbar {
  display: none;
}

.p32-links,
.p32-actions {
  display: contents;
}

.p32-links a,
.p32-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 36px;
  padding: 0 10px;
  border: 2px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 650;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, transform .18s ease, font-weight .18s ease;
}

.p32-links a {
  color: #222;
}

.p32-links a:hover,
.p32-links a.active {
  color: #d96c0f;
  background: #fff7ed;
  border-color: #ef7f1a;
  font-weight: 650;
  transform: none;
}

.p32-btn {
  padding: 3mm;
  border-radius: 10px;
  color: #fff;
  font-weight: 750;
  font-size: 15px;
  transition: background .18s ease, transform .18s ease;
}

.p32-btn-orange {
  background: #ef7f1a;
}

.p32-btn-orange:hover {
  background: #ff6f00;
  transform: none;
}

.p32-btn-green {
  background: #25d366;
}

.p32-btn-green:hover {
  background: #12b957;
  transform: none;
}

.p32-mobile-menu {
  display: none;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #ef7f1a;
  border-radius: 8px;
  background: #fff;
  color: #d96c0f;
  font-size: 14px;
  font-weight: 750;
}

@media (max-width: 1080px) {
  .p32-middle {
    grid-template-columns: 170px minmax(300px, 1fr) 280px;
  }

  .p32-rating {
    display: none;
  }
}

@media (max-width: 820px) {
  .p32-middle {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 13px 0;
  }

  .p32-logo img {
    width: 170px;
  }

  .p32-service-box {
    grid-template-columns: 150px 1fr;
  }

  .p32-contacts {
    justify-items: start;
    transform: none;
  }

  .p32-nav {
    min-height: auto;
    padding: 9px 0;
  }

  .p32-nav-items {
    display: block;
  }

  .p32-links {
    display: none;
  }

  .p32-mobile-menu {
    display: inline-flex;
    align-items: center;
  }

  .p32-actions {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
  }
}

@media (max-width: 520px) {
  .p32-service-box {
    height: auto;
    grid-template-columns: 1fr;
  }

  .p32-city,
  .p32-site-search,
  .p32-search-button {
    height: 42px;
  }
}

/* Header nav wrap fix, 2026-07-22 */
@media (max-width: 1180px) and (min-width: 821px) {
  .p32-nav {
    min-height: auto;
    padding: 10px 0;
  }

  .p32-nav-items {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
  }
}

/* Header services dropdown restore, 2026-07-22 */
.p32-menu-item { position: relative; display: inline-flex; }
.p32-menu-item > a { display:inline-flex; align-items:center; justify-content:center; width:max-content; min-height:36px; padding:0 10px; border:2px solid transparent; border-radius:8px; color:#222; text-decoration:none; font-size:15px; line-height:1.1; font-weight:650; white-space:nowrap; transition:background .18s ease,color .18s ease,border-color .18s ease; }
.p32-menu-item:hover > a, .p32-menu-item > a.active { color:#d96c0f; background:#fff7ed; border-color:#ef7f1a; }
.p32-dropdown { position:absolute; left:0; top:100%; z-index:1000; display:grid; grid-template-columns:repeat(3,minmax(210px,1fr)); gap:24px; width:min(980px, calc(100vw - 40px)); padding:22px; border:1px solid #e6e6e6; border-radius:12px; background:#fff; box-shadow:0 18px 48px rgba(18,42,64,.16); opacity:0; visibility:hidden; transform:translateY(0); pointer-events:none; transition:opacity .18s ease, transform .18s ease, visibility .18s ease; }
.p32-has-dropdown:hover .p32-dropdown, .p32-has-dropdown:focus-within .p32-dropdown { opacity:1; visibility:visible; transform:translateY(0); pointer-events:auto; }
.p32-dropdown-col { display:grid; gap:8px; }
.p32-dropdown-col p { margin:0 0 4px; color:#d96c0f; font-size:15px; line-height:1.2; font-weight:750; }
.p32-dropdown-col a { display:block; min-height:auto; padding:6px 0; border:0; border-radius:0; color:#222; background:transparent; font-size:14px; line-height:1.25; font-weight:500; text-align:left; text-decoration:none; white-space:normal; }
.p32-dropdown-col a:hover { color:#d96c0f; background:transparent; text-decoration:underline; }
@media (max-width:820px){ .p32-menu-item{display:none;} .p32-dropdown{display:none;} }

/* Header nav one-line fit, 2026-07-22 */
@media (min-width: 1181px) {
  .p32-nav-items {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: clamp(6px, .7vw, 12px);
  }

  .p32-links a,
  .p32-menu-item > a {
    padding-left: clamp(6px, .55vw, 10px);
    padding-right: clamp(6px, .55vw, 10px);
    font-size: clamp(13.5px, .78vw, 15px);
  }

  .p32-btn {
    padding-left: clamp(7px, .65vw, 11px);
    padding-right: clamp(7px, .65vw, 11px);
    padding-top: 9px;
    padding-bottom: 9px;
    font-size: clamp(13.5px, .78vw, 15px);
  }
}

@media (max-width: 1180px) and (min-width: 821px) {
  .p32-nav-items {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 6px;
  }

  .p32-links a,
  .p32-menu-item > a {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 13px;
  }

  .p32-btn {
    padding: 8px 7px;
    font-size: 13px;
  }
}

/* Mobile search submit hide + consultation modal fix, 2026-07-22 */
@media (max-width: 820px) {
  .p32-service-box {
    grid-template-columns: 150px 1fr;
  }

  .p32-search-button {
    display: none;
  }
}

/* Header search removed, 2026-07-22 */
.p32-service-box {
  grid-template-columns: 148px;
  justify-content: start;
}

/* Header mobile menu panel, 2026-07-22 */
.p32-mobile-panel {
  display: none;
}

@media (max-width: 820px) {
  .p32-nav {
    position: relative;
  }

  .p32-mobile-menu {
    cursor: pointer;
  }

  .p32-mobile-panel {
    display: none;
    margin-top: 10px;
    padding: 16px;
    border: 1px solid #ef7f1a;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(18,42,64,.14);
  }

  .p32-mobile-panel.is-open {
    display: block;
  }

  .p32-mobile-panel-grid {
    display: grid;
    gap: 14px;
  }

  .p32-mobile-panel-col {
    display: grid;
    gap: 8px;
  }

  .p32-mobile-panel-col p {
    margin: 0 0 2px;
    color: #d96c0f;
    font-size: 15px;
    font-weight: 800;
  }

  .p32-mobile-panel-col a,
  .p32-mobile-panel-col span {
    color: #222;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 550;
    text-decoration: none;
  }

  .p32-mobile-panel-col a:hover {
    color: #d96c0f;
  }

  .p32-mobile-panel-contact a,
  .p32-mobile-panel-contact span {
    color: #d96c0f;
    font-weight: 650;
  }

  .p32-mobile-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
  }

  .p32-mobile-panel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
  }

  .p32-mobile-panel-btn-orange {
    background: #ef7f1a;
  }

  .p32-mobile-panel-btn-green {
    background: #25d366;
  }
}

/* Dropdown hover bridge, 2026-07-22 */
.p32-has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: min(980px, calc(100vw - 40px));
  height: 14px;
  display: block;
}

/* Dropdown JS hover support, 2026-07-22 */
.p32-has-dropdown.is-open .p32-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.p32-has-dropdown.is-open > a {
  color: #d96c0f;
  background: #fff7ed;
  border-color: #ef7f1a;
}

/* Compact services dropdown text, 2026-07-22 */
.p32-dropdown {
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.p32-dropdown-col {
  gap: 5px;
}

.p32-dropdown-col p {
  margin-bottom: 2px;
  font-size: 14px;
  line-height: 1.15;
}

.p32-dropdown-col a {
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: 13px;
  line-height: 1.12;
}

/* Equal compact gap for all services dropdown columns, 2026-07-22 */
.p32-dropdown .p32-dropdown-col,
.p32-dropdown .p32-dropdown-col:nth-child(2),
.p32-dropdown .p32-dropdown-col:nth-child(3) {
  row-gap: 5px;
  gap: 5px;
  align-content: start;
}

.p32-dropdown .p32-dropdown-col:nth-child(2) a,
.p32-dropdown .p32-dropdown-col:nth-child(3) a {
  padding-top: 3px;
  padding-bottom: 3px;
  line-height: 1.12;
}

/* Mobile header horizontal centering, 2026-07-22 */
@media (max-width: 820px) {
  .p32-middle {
    justify-items: center;
    text-align: center;
  }

  .p32-logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .p32-logo img {
    margin-left: auto;
    margin-right: auto;
  }

  .p32-service-box {
    width: 100%;
    grid-template-columns: 148px;
    justify-content: center;
    justify-items: center;
  }

  .p32-city {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .p32-contacts {
    width: 100%;
    justify-items: center;
    text-align: center;
  }

  .p32-worktime {
    white-space: normal;
    text-align: center;
  }

  .p32-nav {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .p32-mobile-menu {
    justify-content: center;
    text-align: center;
  }

  .p32-nav-items {
    width: 100%;
  }

  .p32-actions {
    justify-content: center;
    text-align: center;
  }
}

/* Mobile logo bigger, 2026-07-22 */
@media (max-width: 820px) {
  .p32-logo img {
    width: 205px;
    max-width: 82vw;
  }
}

/* Mobile worktime/address split lines, 2026-07-22 */
@media (max-width: 820px) {
  .p32-worktime {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
  }

  .p32-worktime .p32-mobile-dot {
    display: none;
  }

  .p32-address {
    display: block;
  }
}

/* Mobile header vertical tighten, 2026-07-22 */
@media (max-width: 820px) {
  .p32-middle {
    gap: 8px;
    padding-bottom: 6px;
  }

  .p32-contacts {
    gap: 3px;
  }

  .p32-nav {
    padding-top: 0;
    padding-bottom: 6px;
  }

  .p32-nav-row {
    margin-top: -2px;
  }

  .p32-actions {
    margin-top: 6px;
  }
}

/* Mobile buttons even vertical gap, 2026-07-22 */
@media (max-width: 820px) {
  .p32-nav {
    padding-bottom: 4px;
  }

  .p32-mobile-menu {
    margin-bottom: 6px;
  }

  .p32-actions {
    display: grid;
    justify-items: center;
    gap: 6px;
    margin-top: 0;
  }

  .p32-btn {
    min-height: 40px;
  }
}

/* Mobile logo bigger 2, 2026-07-22 */
@media (max-width: 820px) {
  .p32-logo img {
    width: 225px;
    max-width: 86vw;
  }
}

/* Mobile menu button border like city select, 2026-07-22 */
@media (max-width: 820px) {
  .p32-mobile-menu {
    border-width: 2px;
    border-color: #ef7f1a;
  }
}

/* Mobile popular services grouped list, 2026-07-22 */
@media (max-width: 820px) {
  .p32-mobile-panel-popular {
    grid-template-columns: 1fr;
  }

  .p32-mobile-panel-subtitle {
    display: block;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #f2d1b6;
    color: #d96c0f;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: none;
  }

  .p32-mobile-panel-popular a {
    padding: 2px 0;
    font-size: 13.5px;
    line-height: 1.18;
  }
}

/* Single image header text outline, 2026-07-22 */
.single-header .breadcrumbs,
.single-header .breadcrumbs a,
.single-header .breadcrumbs span,
.single-header h1 {
  text-shadow:
    0 1px 2px rgba(0,0,0,.72),
    0 0 1px rgba(0,0,0,.85);
  -webkit-text-stroke: .25px rgba(0,0,0,.35);
}

.single-header .breadcrumbs a:hover {
  text-shadow:
    0 1px 2px rgba(0,0,0,.78),
    0 0 1px rgba(0,0,0,.9);
}

/* Single image header text outline stronger, 2026-07-22 */
.single-header .breadcrumbs,
.single-header .breadcrumbs a,
.single-header .breadcrumbs span,
.single-header h1 {
  text-shadow:
    0 2px 3px rgba(0,0,0,.86),
    0 0 2px rgba(0,0,0,.92),
    1px 1px 0 rgba(0,0,0,.52),
    -1px 1px 0 rgba(0,0,0,.52),
    1px -1px 0 rgba(0,0,0,.42),
    -1px -1px 0 rgba(0,0,0,.42);
}

.single-header .breadcrumbs a:hover {
  text-shadow:
    0 2px 3px rgba(0,0,0,.9),
    0 0 2px rgba(0,0,0,.95),
    1px 1px 0 rgba(0,0,0,.58),
    -1px 1px 0 rgba(0,0,0,.58),
    1px -1px 0 rgba(0,0,0,.48),
    -1px -1px 0 rgba(0,0,0,.48);
}

/* Header rating centered between city and contacts, 2026-07-22 */
@media (min-width: 1081px) {
  .p32-rating {
    transform: translateX(25px);
  }
}

/* Header rating centered to address start, 2026-07-22 */
@media (min-width: 1081px) {
  .p32-rating {
    transform: translateX(57px);
  }
}

/* Contacts page compact info blocks, 2026-07-22 */
.contacts__main {
  display: grid;
  row-gap: 14px;
}

.contacts__main .contacts__item {
  margin-bottom: 0;
}

.contacts__main .contacts__item-title {
  display: block;
  margin-bottom: 4px;
  line-height: 1.15;
}

.contacts__main .contacts__item-text,
.contacts__main .contacts__item-link {
  line-height: 1.28;
}

.contacts__main .contacts__item-link {
  display: inline-block;
  margin-top: 3px;
}

@media (max-width: 820px) {
  .contacts__main {
    row-gap: 10px;
  }
}

/* Header rating shifted slightly left, 2026-07-22 */
@media (min-width: 1081px) {
  .p32-rating {
    transform: translateX(39px);
  }
}

/* Contacts page extra phones compact, 2026-07-22 */
.contacts__main .contacts__item:has(.contacts__item-title) .contacts__phones,
.contacts__main .contacts__phones {
  font-size: 14px;
  line-height: 1.22;
}
.contacts__main .contacts__phones p,
.contacts__main .contacts__phones div {
  margin-top: 2px;
  margin-bottom: 2px;
}
.contacts__main .contacts__phones b,
.contacts__main .contacts__phones strong {
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 1px;
  font-size: 13px;
  line-height: 1.15;
}
@media (max-width: 820px) {
  .contacts__main .contacts__phones {
    font-size: 13px;
    line-height: 1.18;
  }
}

/* Contacts page managers phones compact, 2026-07-22 */
.contacts__tels {
  margin-top: 18px;
}
.contacts__tels h2 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
}
.contacts__tels .grid__contacts1 {
  gap: 10px 16px;
}
.contacts__manager {
  padding: 8px 10px;
}
.contacts__manager-name {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
  line-height: 1.15;
}
.contacts__manager-tel {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  line-height: 1.18;
}
@media (max-width: 820px) {
  .contacts__tels {
    margin-top: 12px;
  }
  .contacts__tels h2 {
    margin-bottom: 8px;
    font-size: 18px;
  }
  .contacts__manager {
    padding: 6px 8px;
  }
  .contacts__manager-name {
    font-size: 12px;
  }
  .contacts__manager-tel {
    font-size: 13px;
    line-height: 1.15;
  }
}

/* Header rating shifted more left, 2026-07-22 */
@media (min-width: 1081px) {
  .p32-rating {
    transform: translateX(22px);
  }
}

/* Header rating shifted even more left, 2026-07-22 */
@media (min-width: 1081px) {
  .p32-rating {
    transform: translateX(4px);
  }
}

/* Header rating shifted 2cm left, 2026-07-22 */
@media (min-width: 1081px) {
  .p32-rating {
    transform: translateX(-72px);
  }
}

/* Header rating shifted 4cm left, 2026-07-22 */
@media (min-width: 1081px) {
  .p32-rating {
    transform: translateX(-148px);
  }
}

/* Header rating shifted far left, 2026-07-22 */
@media (min-width: 1081px) {
  .p32-rating {
    transform: translateX(-205px);
  }
}

/* Header rating shifted farther left, 2026-07-22 */
@media (min-width: 1081px) {
  .p32-rating {
    transform: translateX(-250px);
  }
}

/* Header nav light-red hover/press only, 2026-07-22 */
.p32-links a:hover,
.p32-links a:active,
.p32-menu-item:hover > a,
.p32-menu-item > a:active {
  color: #c7352b;
  background: #fff1f0;
  border-color: #f2b8b2;
}
.p32-links a.active:not(:hover):not(:active),
.p32-menu-item > a.active:not(:hover):not(:active) {
  color: #222;
  background: transparent;
  border-color: transparent;
}
.p32-dropdown-col a:hover,
.p32-dropdown-col a:active,
.p32-mobile-panel-col a:hover,
.p32-mobile-panel-col a:active {
  color: #c7352b;
  background: #fff1f0;
  border-radius: 6px;
  text-decoration: none;
}

/* Contacts managers compact rectangular shadows, 2026-07-22 */
.contacts__manager {
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(18, 42, 64, .10);
}

/* Header nav selected section glow, 2026-07-22 */
.p32-links a.active,
.p32-links a:focus,
.p32-links a:active,
.p32-menu-item > a.active,
.p32-menu-item > a:focus,
.p32-menu-item > a:active {
  color: #c7352b;
  background: #fff1f0;
  border-color: #f2b8b2;
  box-shadow: 0 0 0 3px rgba(199, 53, 43, .10);
}

/* Contacts managers cards smaller, 2026-07-22 */
.contacts__tels .grid__contacts1 {
  gap: 6px 10px;
}
.contacts__manager {
  padding: 5px 8px;
  min-height: 0;
}
.contacts__manager-name {
  margin-bottom: 1px;
}
.contacts__manager-tel {
  margin-top: 1px;
}
@media (max-width: 820px) {
  .contacts__tels .grid__contacts1 {
    gap: 5px 8px;
  }
  .contacts__manager {
    padding: 4px 7px;
  }
}

/* Header nav old hover/active style restored, 2026-07-22 */
.p32-links a:hover,
.p32-links a:focus,
.p32-links a:active,
.p32-links a.active,
.p32-menu-item:hover > a,
.p32-menu-item > a:focus,
.p32-menu-item > a:active,
.p32-menu-item > a.active {
  color: #d96c0f;
  background: #fff7ed;
  border-color: #ef7f1a;
  box-shadow: none;
}

/* Header current section visible state, 2026-07-22 */
.p32-links a.active,
.p32-menu-item > a.active {
  color: #d96c0f;
  background: #fff7ed;
  border-color: #ef7f1a;
  box-shadow: 0 3px 10px rgba(239, 127, 26, .18);
}

/* Header nav active exactly like hover, 2026-07-22 */
.p32-links a:hover,
.p32-links a:focus,
.p32-links a:active,
.p32-links a.active,
.p32-menu-item:hover > a,
.p32-menu-item > a:focus,
.p32-menu-item > a:active,
.p32-menu-item > a.active {
  color: #d96c0f;
  background: #fff7ed;
  border-color: #ef7f1a;
  box-shadow: 0 4px 12px rgba(239, 127, 26, .20);
}

/* Header nav active clean old style, 2026-07-22 */
.p32-links a:hover,
.p32-links a:focus,
.p32-links a:active,
.p32-links a.active,
.p32-menu-item:hover > a,
.p32-menu-item > a:focus,
.p32-menu-item > a:active,
.p32-menu-item > a.active {
  color: #d96c0f !important;
  background: #fff7ed !important;
  border-color: #ef7f1a !important;
  box-shadow: none !important;
}

/* Contacts managers clean compact list, 2026-07-22 */
.contacts__tels {
  margin-top: 16px;
}
.contacts__tels h2 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
}
.contacts__tels .grid__contacts1 {
  display: block;
}
.contacts__managers {
  display: grid;
  grid-template-columns: repeat(2, minmax(230px, 1fr));
  gap: 0 18px;
  max-width: 760px;
}
.contacts__manager {
  display: grid;
  grid-template-columns: 86px 1fr 1fr;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid rgba(239, 127, 26, .18);
  border-radius: 0;
  background: transparent;
  box-shadow: none !important;
}
.contacts__manager-name {
  margin: 0;
  color: #d96c0f;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 700;
}
.contacts__manager-tel {
  margin: 0;
  color: #222;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 600;
  white-space: nowrap;
}
.contacts__manager-tel:hover {
  color: #d96c0f;
}
@media (max-width: 820px) {
  .contacts__tels {
    margin-top: 12px;
  }
  .contacts__tels h2 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .contacts__managers {
    grid-template-columns: 1fr;
    max-width: none;
  }
  .contacts__manager {
    grid-template-columns: 76px 1fr;
    gap: 4px 8px;
    padding: 6px 0;
  }
  .contacts__manager-tel {
    font-size: 13px;
  }
  .contacts__manager-tel + .contacts__manager-tel {
    grid-column: 2;
  }
}

/* Contacts phones vertical clean list, 2026-07-22 */
.contacts__tels {
  margin-top: 16px;
}
.contacts__tels h2 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
}
.contacts__phone-list {
  display: grid;
  gap: 6px;
  max-width: 430px;
}
.contacts__phone-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 8px 12px;
  border: 1px solid rgba(239, 127, 26, .18);
  border-radius: 8px;
  background: #fffaf4;
  box-shadow: 0 3px 10px rgba(18, 42, 64, .06);
}
.contacts__phone-row a {
  color: #222;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 650;
  white-space: nowrap;
  text-decoration: none;
}
.contacts__phone-row a:hover {
  color: #d96c0f;
}
@media (max-width: 820px) {
  .contacts__tels {
    margin-top: 12px;
  }
  .contacts__tels h2 {
    margin-bottom: 8px;
    font-size: 18px;
  }
  .contacts__phone-list {
    max-width: none;
    gap: 5px;
  }
  .contacts__phone-row {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 7px 10px;
  }
  .contacts__phone-row a {
    font-size: 13px;
  }
}

/* Contacts phones moved under e-mail, 2026-07-22 */
.contacts__main .contacts__tels {
  margin-top: 2px;
}
.contacts__main .contacts__tels h2 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.2;
}
.contacts__main .contacts__phone-list {
  max-width: 470px;
}
.contacts__main .contacts__phone-row {
  padding: 7px 10px;
}
@media (max-width: 820px) {
  .contacts__main .contacts__tels h2 {
    font-size: 16px;
  }
}

/* Contacts phones restored below filials, 2026-07-22 */
.contacts__tels:not(.contacts__main .contacts__tels) {
  margin-top: 16px;
}
.contacts__tels:not(.contacts__main .contacts__tels) h2 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

/* Contacts extra phones under main phone, 2026-07-22 */
.contacts__phone-list--inline {
  margin-top: 8px;
  max-width: 430px;
}
.contacts__phone-list--inline .contacts__phone-row {
  padding: 6px 10px;
}
@media (max-width: 820px) {
  .contacts__phone-list--inline {
    margin-top: 6px;
  }
}

/* Contacts inline phones always two numbers in one row, 2026-07-22 */
.contacts__phone-list--inline .contacts__phone-row {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.contacts__phone-list--inline .contacts__phone-row a {
  font-size: 13px;
}
@media (max-width: 820px) {
  .contacts__phone-list--inline .contacts__phone-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .contacts__phone-list--inline .contacts__phone-row a {
    font-size: 12px;
  }
}

/* Contacts extra phones plain like main number, 2026-07-22 */
.contacts__extra-phones {
  display: block;
  margin-top: 5px;
}
.contacts__extra-phone-line {
  display: block;
  margin-top: 2px;
  line-height: 1.28;
}
.contacts__extra-phone-line a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: none;
}
.contacts__extra-phone-line a:hover {
  color: #d96c0f;
}

/* Contacts city extra phones bold like main phone, 2026-07-22 */
.contacts__extra-phone-line a:first-child {
  font-weight: 700;
}

/* Payment delivery page: cost block removed, 2026-07-22 */
@media (min-width: 768px) {
  .grid__delivery.mb-94 .right__wrap {
    display: flex;
    align-items: stretch;
    padding-top: 24px;
  }
  .grid__delivery.mb-94 .right__wrap > .right__side {
    width: 100%;
    min-height: 0;
    margin-top: 0;
  }
}
@media (max-width: 767.98px) {
  .grid__delivery.mb-94 .right__wrap {
    padding-top: 0;
  }
}

/* Payment page compact consultation and aligned delivery terms, 2026-07-22 */
@media (min-width: 768px) {
  .grid__delivery.mb-94 {
    align-items: stretch;
  }
  .grid__delivery.mb-94 .left__form {
    padding-top: 28px;
    padding-bottom: 26px;
    min-height: 0;
  }
  .grid__delivery.mb-94 .form__title {
    margin-bottom: 10px;
    line-height: 1.12;
  }
  .grid__delivery.mb-94 .form__subtitle {
    margin-bottom: 18px;
    line-height: 1.22;
  }
  .grid__delivery.mb-94 .left__form .wpcf7-form-control {
    height: 48px;
    margin-bottom: 14px;
  }
  .grid__delivery.mb-94 .left__form textarea.wpcf7-form-control,
  .grid__delivery.mb-94 .left__form textarea {
    height: 112px !important;
    min-height: 112px;
    margin-bottom: 14px;
  }
  .grid__delivery.mb-94 .left__form [type="submit"] {
    height: 48px;
  }
  .grid__delivery.mb-94 .agreement {
    margin-top: 8px;
    line-height: 1.18;
  }
  .grid__delivery.mb-94 .right__wrap {
    padding-top: 24px;
  }
  .grid__delivery.mb-94 .right__wrap > .right__side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 318px;
    padding-top: 34px;
    padding-bottom: 34px;
  }
  .grid__delivery.mb-94 .right__wrap > .right__side .deliver__title--big {
    margin-bottom: 14px;
  }
  .grid__delivery.mb-94 .right__wrap > .right__side .del__text--bg {
    margin-bottom: 0;
    line-height: 1.35;
  }
}
@media (max-width: 767.98px) {
  .grid__delivery.mb-94 .left__form {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .grid__delivery.mb-94 .form__title {
    margin-bottom: 10px;
  }
  .grid__delivery.mb-94 .form__subtitle {
    margin-bottom: 16px;
  }
}

/* Payment page consultation block extra compact, 2026-07-22 */
@media (min-width: 768px) {
  .grid__delivery.mb-94 .left__form {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .grid__delivery.mb-94 .form__title {
    margin-bottom: 7px;
    line-height: 1.08;
  }
  .grid__delivery.mb-94 .form__subtitle {
    margin-bottom: 12px;
    line-height: 1.16;
  }
  .grid__delivery.mb-94 .left__form .wpcf7-form-control {
    height: 43px;
    margin-bottom: 10px;
  }
  .grid__delivery.mb-94 .left__form textarea.wpcf7-form-control,
  .grid__delivery.mb-94 .left__form textarea {
    height: 88px !important;
    min-height: 88px;
    margin-bottom: 10px;
  }
  .grid__delivery.mb-94 .left__form [type="submit"] {
    height: 44px;
  }
  .grid__delivery.mb-94 .agreement {
    margin-top: 5px;
    line-height: 1.12;
  }
}
@media (max-width: 767.98px) {
  .grid__delivery.mb-94 .left__form {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .grid__delivery.mb-94 .form__subtitle {
    margin-bottom: 12px;
  }
}

/* Header Yandex rating height like city select, 2026-07-23 */
@media (min-width: 768px) {
  .p32-rating {
    height: 42px;
    display: flex;
    align-items: center;
  }
  .p32-rating iframe {
    height: 42px;
  }
}

/* Services page consultation image height crop, 2026-07-23 */
@media (min-width: 1281px) {
  .p32-services-page .section-contact-us {
    padding-top: 190px;
    padding-bottom: 190px;
    background-size: cover;
    background-position: center center;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  .p32-services-page .section-contact-us {
    padding-top: 125px;
    padding-bottom: 125px;
    background-size: cover;
    background-position: center center;
  }
}

/* Footer services redesign, 2026-07-23 */
footer .p32-footer-services {
  display: block;
  overflow: hidden;
  width: 100%;
  margin: 30px 0 48px;
  border-radius: 22px;
  background: radial-gradient(circle at 14% 0%, rgba(239,127,26,.18), transparent 34%),
    linear-gradient(135deg, #effaff 0%, #dff2fb 58%, #fff2e5 100%);
  box-shadow: 0 22px 60px rgba(20,89,120,.18);
  color: #14384b;
}
footer .p32-footer-services__inner {
  padding: 34px 38px 38px;
}
footer .p32-footer-services__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(27,136,184,.18);
}
footer .p32-footer-services__eyebrow {
  margin: 0 0 7px;
  color: #ef7f1a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
footer .p32-footer-services__title {
  margin: 0;
  color: #14384b;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  font-weight: 800;
}
footer .p32-footer-services__text {
  max-width: 390px;
  margin: 0;
  color: rgba(20,56,75,.72);
  font-size: 15px;
  line-height: 1.45;
  text-align: right;
}
footer .p32-footer-services__grid {
  display: grid;
  grid-template-columns: 1.38fr .92fr .82fr;
  gap: 18px;
  align-items: stretch;
}
footer .p32-service-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 22px 22px 20px;
  border: 1px solid rgba(27,136,184,.18);
  border-radius: 18px;
  background: rgba(255,245,235,.86);
  box-shadow: 0 12px 32px rgba(239,127,26,.10);
}
footer .p32-service-card--main {
  background: linear-gradient(180deg, rgba(255,238,220,.96), rgba(255,245,235,.86));
}
footer .p32-service-card__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 34px;
  margin-bottom: 18px;
  text-align: center;
}
footer .p32-service-card__mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef7f1a;
  box-shadow: 0 0 0 5px rgba(239,127,26,.14);
  flex: 0 0 auto;
}
footer .p32-service-card__head h3 {
  margin: 0;
  color: #14384b;
  font-size: 17px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}
footer .p32-service-links {
  display: grid;
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .p32-service-card--main .p32-service-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
footer .p32-service-links li {
  margin: 0;
  padding: 0;
}
footer .p32-service-links a {
  display: block;
  padding: 5px 0;
  color: rgba(20,56,75,.86);
  font-size: 13.2px;
  line-height: 1.18;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease, transform .18s ease;
}
footer .p32-service-links a:hover {
  color: #ef7f1a;
  transform: translateX(3px);
}
footer .p32-service-links a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(239,127,26,.82);
  vertical-align: 2px;
}
footer .p32-footer-services__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(27,136,184,.18);
  color: rgba(20,56,75,.68);
  font-size: 13px;
}
footer .p32-footer-services__cta {
  color: #14384b;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(239,127,26,.7);
}
@media (max-width: 980px) {
  footer .p32-footer-services__top {
    align-items: flex-start;
    flex-direction: column;
  }
  footer .p32-footer-services__text {
    text-align: left;
  }
  footer .p32-footer-services__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  footer .p32-footer-services__inner {
    padding: 26px 20px 28px;
  }
  footer .p32-service-card {
    padding: 20px 18px;
  }
  footer .p32-service-card--main .p32-service-links {
    grid-template-columns: 1fr;
  }
  footer .p32-footer-services__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  footer .p32-service-links a {
    white-space: normal;
  }
}

/* Branches map redesign, 2026-07-24 */
.map__contacts {
  isolation: isolate;
  overflow: hidden;
  height: 800px;
  margin-bottom: 64px;
  background:
    radial-gradient(circle at 14% 12%, rgba(245, 132, 31, .12), transparent 28%),
    linear-gradient(135deg, #f7fafc 0%, #eef7fb 54%, #fff7f0 100%);
}

.map__contacts .container {
  position: relative;
  z-index: 2;
  height: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.map__contacts .map__left {
  position: relative;
  z-index: 4;
  align-self: center;
  box-sizing: border-box;
  min-width: 0;
  padding: 38px 34px 34px;
  border: 1px solid rgba(218, 229, 236, .95);
  border-radius: 24px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 20px 55px rgba(40, 76, 96, .11);
}

.map__contacts .map__left::before {
  content: "СЕТЬ ТИПОГРАФИЙ";
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 14px;
  padding: 0 11px;
  border-radius: 7px;
  background: #fff0e3;
  color: #df6b0c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
}

.map__contacts h2 {
  max-width: 470px;
  margin: 0 0 26px;
  padding: 0;
  color: #17232b;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -.025em;
}

.map__contacts .filials__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
}

.map__contacts .filials__list > div {
  min-width: 0;
}

.map__contacts .filial__link {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: 100%;
  min-height: 39px;
  padding: 7px 9px;
  border: 1px solid #e0eaf0;
  border-radius: 9px;
  background: #f8fbfd;
  color: #22566f;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.14;
  text-decoration: none;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.map__contacts .filial__link::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border: 2px solid #f5841f;
  border-radius: 50%;
  background: #fff;
}

.map__contacts .filial__link:hover,
.map__contacts .filial__link.active {
  border: 1px solid #f4a25d;
  background: #fff1e5;
  color: #c95700;
  transform: translateY(-1px);
}

.map__contacts .map__right {
  position: relative;
  z-index: 2;
  align-self: stretch;
  min-width: 0;
}

.map__contacts .map__right::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 34px -26px 34px 0;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 28px;
  background: rgba(255, 255, 255, .25);
  box-shadow: 0 20px 60px rgba(40, 76, 96, .08);
}

.map__contacts .map__svg {
  z-index: 0;
  top: 0;
  right: -2%;
  width: 70%;
  height: 100%;
  opacity: .84;
}

.map__contacts .map__point {
  min-height: 21px;
  box-sizing: border-box;
  padding: 3px 7px 3px 9px;
  border: 1px solid rgba(218, 229, 236, .95);
  border-radius: 6px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 4px 11px rgba(22, 50, 65, .11);
  color: #24333c;
  font-size: 11px;
  font-weight: 650;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.map__contacts .map__point::before {
  left: -5px;
  width: 7px;
  height: 7px;
  border: 2px solid #fff;
  background: #f5841f;
  box-shadow: 0 0 0 1px #df7419;
}

.map__contacts .map__point:hover,
.map__contacts .map__point.active {
  border-color: #e87818;
  background: #f5841f;
  box-shadow: 0 7px 18px rgba(226, 105, 6, .22);
  color: #fff;
}

.map__contacts .map__point.active .map__point-name {
  color: #fff;
}

.map__contacts .map__point-info {
  overflow: hidden;
  width: 310px;
  padding: 18px;
  border: 1px solid #e4ebef;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(24, 49, 63, .18);
}

.map__contacts .filials__info {
  right: 54px;
  bottom: 52px;
  z-index: 3;
  box-sizing: border-box;
  min-width: 230px;
  padding: 14px 18px 15px 76px;
  border: 1px solid rgba(220, 230, 236, .95);
  border-radius: 16px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 34px rgba(32, 66, 84, .12);
  color: #6c7b84;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

.map__contacts .filials__number {
  position: absolute;
  left: 18px;
  top: 50%;
  margin: 0;
  color: #f5841f;
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
}

@media (max-width: 1100px) and (min-width: 769px) {
  .map__contacts .container {
    grid-template-columns: 54% 46%;
  }

  .map__contacts .map__left {
    padding-right: 24px;
    padding-left: 24px;
  }

  .map__contacts .filial__link {
    font-size: 13px;
  }

  .map__contacts .map__svg {
    right: -13%;
    width: 76%;
  }
}

@media (max-width: 768px) {
  .map__contacts {
    overflow: visible;
    height: auto;
    margin: 28px 0 38px;
    padding: 20px 0;
  }

  .map__contacts .container {
    display: block;
    height: auto;
  }

  .map__contacts .map__left {
    margin: 0;
    padding: 25px 20px 22px;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(40, 76, 96, .1);
  }

  .map__contacts .map__left::before {
    margin-bottom: 12px;
  }

  .map__contacts h2 {
    margin-bottom: 20px;
    padding: 0;
    font-size: 28px;
  }

  .map__contacts .filials__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .map__contacts .filials__list > div {
    flex: none;
  }

  .map__contacts .filial__link {
    min-height: 38px;
    padding: 7px 8px;
    font-size: 12px;
  }
}

@media (max-width: 520px) {
  .map__contacts .filials__list {
    grid-template-columns: 1fr;
  }

  .map__contacts .filial__link {
    font-size: 14px;
  }
}

/* Branches list only, 2026-07-24 */
.map__contacts {
  height: auto;
  min-height: 0;
  margin-bottom: 64px;
  padding: 62px 0;
}

.map__contacts .container {
  display: flex;
  justify-content: center;
  height: auto;
}

.map__contacts .map__left {
  width: min(720px, 100%);
  margin: 0 auto;
  align-self: auto;
}

.map__contacts .map__left::before {
  display: flex;
  width: max-content;
  margin-right: auto;
  margin-left: auto;
}

.map__contacts h2 {
  max-width: none;
  text-align: center;
}

.map__contacts .map__right,
.map__contacts .map__svg,
.map__contacts .map__point,
.map__contacts .filials__info {
  display: none !important;
}

@media (max-width: 768px) {
  .map__contacts {
    margin: 28px 0 38px;
    padding: 20px 0;
  }

  .map__contacts .container {
    display: flex;
  }
}

/* Services cards typography, 2026-07-27 */
.services-wrapper .service-item-wrapper {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.services-wrapper .service-item-wrapper::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 68%;
  background:
    linear-gradient(180deg, rgba(12, 24, 34, 0) 0%, rgba(12, 24, 34, .66) 57%, rgba(12, 24, 34, .84) 100%),
    radial-gradient(circle at 12% 92%, rgba(245, 132, 31, .38), transparent 44%);
  pointer-events: none;
  transition: opacity .22s ease;
}

.services-wrapper .service-item-name {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: flex-end;
  box-sizing: border-box;
  width: auto;
  min-height: 58px;
  padding: 10px 13px 12px;
  border: 1px solid rgba(255, 255, 255, .30);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(14, 25, 34, .70), rgba(14, 25, 34, .42));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
  color: #fff8ef;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: .005em;
  text-decoration: none;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, .08),
    0 2px 8px rgba(0, 0, 0, .55),
    0 0 1px rgba(0, 0, 0, .75);
  transition:
    color .2s ease,
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.services-wrapper .service-item-name::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 7px;
  left: 13px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f5841f, #ffb36a);
  opacity: .9;
  transition: background .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.services-wrapper .service-item-wrapper:hover::after {
  opacity: .92;
}

.services-wrapper .service-item-wrapper:hover .service-item-name {
  border-color: #f5841f;
  background:
    linear-gradient(135deg, rgba(245, 132, 31, .18), rgba(245, 132, 31, .08)),
    linear-gradient(135deg, rgba(31, 43, 52, .80), rgba(42, 32, 22, .58));
  box-shadow:
    0 0 0 1px rgba(245, 132, 31, .34),
    0 10px 26px rgba(245, 132, 31, .18),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  color: #ffffff;
  transform: translateY(-2px);
}

.services-wrapper .service-item-wrapper:hover .service-item-name::after {
  opacity: 1;
  background: linear-gradient(90deg, #f5841f, #ffc18a);
  box-shadow: 0 0 13px rgba(245, 132, 31, .58);
}

@media (max-width: 768px) {
  .services-wrapper .service-item-name {
    right: 10px;
    bottom: 10px;
    left: 10px;
    min-height: 48px;
    padding: 8px 10px 10px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.1;
  }
}

/* Home consultation image height crop, 2026-07-27 */
body.p32-home-page .section-contact-us {
  background-size: cover;
  background-position: center center;
}

@media (min-width: 1281px) {
  body.p32-home-page .section-contact-us {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}

@media (min-width: 768px) and (max-width: 1280px) {
  body.p32-home-page .section-contact-us {
    padding-top: 108px;
    padding-bottom: 108px;
  }
}

@media (max-width: 767px) {
  body.p32-home-page .section-contact-us {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

/* Section heading orange separators, 2026-07-27 */
.section-title,
h2.service-title {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  box-sizing: border-box;
  color: #2f353b;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  letter-spacing: .01em;
  text-align: center;
}

.section-title {
  position: relative;
}

.section-title[data-p32-heading="scheme"] {
  background: none !important;
}

.section-title[data-p32-heading="why"] {
  gap: 0 !important;
  padding-bottom: 16px !important;
  background:
    linear-gradient(90deg, rgba(245,132,31,0), #f5841f 18%, #f5841f 82%, rgba(245,132,31,0))
      center bottom / min(920px, 98%) 6px no-repeat !important;
}

.section-title[data-p32-heading="why"]::before,
.section-title[data-p32-heading="why"]::after {
  display: none !important;
  content: none !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.section-title[data-p32-heading="scheme"]::before,
.section-title[data-p32-heading="scheme"]::after {
  background:
    linear-gradient(90deg, rgba(245,132,31,0), #f5841f 44%, #ffad59 100%) !important;
  box-shadow: 0 5px 16px rgba(245, 132, 31, .18) !important;
}

.section-title[data-p32-heading="scheme"] > i,
.section-title[data-p32-heading="why"] > i,
.section-title[data-p32-heading="scheme"] > span,
.section-title[data-p32-heading="why"] > span,
.section-title[data-p32-heading="scheme"] .blue-line,
.section-title[data-p32-heading="why"] .blue-line,
.section-title[data-p32-heading="scheme"] .line,
.section-title[data-p32-heading="why"] .line {
  display: none !important;
  background: none !important;
  border: 0 !important;
}

.section-title[data-p32-heading="why"] *::before,
.section-title[data-p32-heading="why"] *::after {
  display: none !important;
  content: none !important;
  background: none !important;
  border: 0 !important;
}

.section-title[data-p32-heading="services"] {
  display: flex !important;
  width: max-content !important;
  max-width: calc(100% - 32px);
  min-height: 0 !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding: 13px 32px 14px !important;
  border: 1px solid rgba(245, 132, 31, .28);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 246, 237, .98), rgba(255, 235, 214, .86)) !important;
  box-shadow:
    0 12px 30px rgba(245, 132, 31, .13),
    inset 0 1px 0 rgba(255, 255, 255, .74);
  color: #d76108;
  font-size: clamp(27px, 2.25vw, 36px);
  letter-spacing: .035em;
}

.section-title[data-p32-heading="services"]::before,
.section-title[data-p32-heading="services"]::after {
  display: none !important;
}

.section-title[data-p32-heading="services"] + h2.service-title {
  margin-top: 22px;
}

.section-who-we .who-we-wrapper {
  align-items: center;
  gap: 34px;
}

.section-who-we .who-we-img {
  flex: 0 0 600px !important;
  width: 600px !important;
  max-width: 600px !important;
}

.section-who-we .who-we-img img {
  display: block;
  width: 600px !important;
  max-width: 100%;
  height: auto !important;
  object-fit: contain !important;
}

.call-to-action,
.btn-get-consult,
.get-consult-wrapper .btn-get-consult,
.section-one-action a.call-to-action {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 44px;
  padding: 0 24px !important;
  border: 1px solid #ef7f1a !important;
  border-radius: 10px !important;
  background: #ef7f1a !important;
  box-shadow: 0 10px 24px rgba(239, 127, 26, .18);
  color: #fff !important;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.1;
  text-decoration: none !important;
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.call-to-action:hover,
.btn-get-consult:hover,
.get-consult-wrapper .btn-get-consult:hover,
.section-one-action a.call-to-action:hover {
  border-color: #f28b2b !important;
  background: #f28b2b !important;
  box-shadow: 0 12px 28px rgba(239, 127, 26, .24);
  color: #fff !important;
  transform: translateY(-1px);
}

.show-more,
button.show-more {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 26px !important;
  border: 1px solid #ef7f1a !important;
  border-radius: 10px !important;
  background: #ef7f1a !important;
  box-shadow: 0 10px 24px rgba(239, 127, 26, .16);
  color: #fff !important;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.1;
  text-transform: none;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.show-more:hover,
button.show-more:hover {
  border-color: #f28b2b !important;
  background: #f28b2b !important;
  box-shadow: 0 12px 28px rgba(239, 127, 26, .22);
  transform: translateY(-1px);
}

footer .p32-footer-services__text,
footer .p32-footer-services__eyebrow {
  display: none !important;
}

footer .p32-footer-services__title {
  color: #ef7f1a !important;
}

footer .p32-footer-services__top {
  align-items: center !important;
  margin-bottom: 12px !important;
  padding-bottom: 12px !important;
}

footer .p32-footer-services__inner {
  padding-top: 24px !important;
}

footer .p32-footer-services__grid {
  margin-top: 0 !important;
}

.section-title::before,
.section-title::after,
h2.service-title::before,
h2.service-title::after {
  content: "";
  flex: 1 1 120px;
  max-width: 460px;
  height: 5px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(245, 132, 31, 0), #f5841f 44%, #ffad59 100%);
  box-shadow: 0 5px 16px rgba(245, 132, 31, .18);
  transform: none;
}

.section-title::after,
h2.service-title::after {
  background:
    linear-gradient(90deg, #ffad59 0%, #f5841f 56%, rgba(245, 132, 31, 0) 100%);
}

.section-title::selection,
h2.service-title::selection {
  background: #fff0e3;
}

.section-title {
  margin-top: 34px;
  margin-bottom: 30px;
  font-size: clamp(26px, 2.45vw, 38px);
  font-weight: 750;
  line-height: 1.12;
  text-transform: uppercase;
}

.section-title:not(h2) {
  color: #30363d;
}

h2.service-title {
  margin-top: 34px;
  margin-bottom: 28px;
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 700;
  line-height: 1.14;
}

.section-title:not(:empty),
h2.service-title:not(:empty) {
  min-height: 44px;
}

@supports selector(:has(*)) {
  .section-title {
    padding: 0 8px !important;
  }

  h2.service-title {
    padding: 0 8px;
  }
}

@media (max-width: 768px) {
  .section-title,
  h2.service-title {
    gap: 10px;
  }

  .section-title::before,
  .section-title::after,
  h2.service-title::before,
  h2.service-title::after {
    flex-basis: 34px;
    height: 4px;
  }

  .section-title {
    margin-top: 26px;
    margin-bottom: 22px;
    font-size: 24px;
    line-height: 1.16;
  }

  .section-title[data-p32-heading="why"] {
    padding-bottom: 12px !important;
    background-size: min(420px, 96%) 5px !important;
  }

  .section-title[data-p32-heading="services"] {
    padding: 10px 22px 11px !important;
    border-radius: 10px;
    font-size: 24px;
  }

  .section-who-we .who-we-wrapper {
    gap: 18px;
  }

  .section-who-we .who-we-img {
    flex: 0 1 auto !important;
    width: 100% !important;
    max-width: 600px !important;
  }

  .section-who-we .who-we-img img {
    width: 100% !important;
    height: auto !important;
  }

  .call-to-action,
  .btn-get-consult,
  .show-more,
  button.show-more {
    min-height: 40px;
    padding-right: 18px !important;
    padding-left: 18px !important;
    border-radius: 9px !important;
    font-size: 14px;
  }

  footer .p32-footer-services__top {
    margin-bottom: 12px !important;
    padding-bottom: 12px !important;
  }

  h2.service-title {
    margin-top: 22px;
    margin-bottom: 20px;
    font-size: 21px;
  }
}
