:root {
  --red: #E30613;
  --red-dark: #B8000D;
  --red-light: #FDECEA;
  --black: #1A1A1A;
  --dark: #2B2B2B;
  --gray: #666666;
  --gray-light: #CCCCCC;
  --bg: #F5F5F5;
  --bg-dark: #EFEFEF;
  --white: #FFFFFF;
  --border: #E0E0E0;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.18s ease;
  --container: 1200px;
  --header-h: 72px;
}/* =========================================
   ТОПБАР
========================================= */
.lp-topbar {
  background: var(--dark);
  color: var(--gray-light);
  font-size: 13px;
  padding: 8px 0;
  position: relative;
  z-index: 100;
}

.lp-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lp-topbar__left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.lp-topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-topbar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-light);
  text-decoration: none;
  transition: color var(--transition);
}

.lp-topbar__item:hover { color: var(--white); }
.lp-topbar__item--muted { color: #888; cursor: default; }

.lp-topbar__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  color: var(--white);
  transition: opacity var(--transition), transform var(--transition);
}

.lp-topbar__social:hover { opacity: 0.85; transform: scale(1.1); color: var(--white); }
.lp-topbar__social--wa  { background: #25D366; }
.lp-topbar__social--tg  { background: #29B6F6; }
.lp-topbar__social--vk  { background: #0077FF; }
.lp-topbar__social--max { background: #7B61FF; }

/* =========================================
   ШАПКА
========================================= */
.lp-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 99;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}

.lp-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.lp-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.lp-header__logo img {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* =========================================
   НАВИГАЦИЯ
========================================= */
.lp-nav { flex: 1; }

.lp-nav__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  justify-content: center;
}

.lp-nav__item {
  position: relative;
}

.lp-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.lp-nav__link:hover,
.lp-nav__link--active { color: var(--red); }

.lp-nav__arrow {
  transition: transform var(--transition);
}

.lp-nav__item:hover .lp-nav__arrow {
  transform: rotate(180deg);
}

/* Выпадающее меню */
.lp-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 200;
  padding: 8px;
  list-style: none;
}

.lp-nav__item:hover .lp-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lp-dropdown li a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  color: var(--black);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.lp-dropdown li a:hover {
  background: var(--red-light);
  color: var(--red);
}

.lp-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* =========================================
   БУРГЕР (МОБИЛЬ)
========================================= */
.lp-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.lp-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all var(--transition);
}

.lp-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-burger.active span:nth-child(2) { opacity: 0; }
.lp-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   МОБИЛЬНОЕ МЕНЮ
========================================= */
.lp-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 90vw);
  height: 100vh;
  background: var(--white);
  z-index: 300;
  overflow-y: auto;
  transition: right 0.3s ease;
  padding-top: 80px;
}

.lp-mobile-menu.open { right: 0; }

.lp-mobile-menu__inner { padding: 24px 20px; }

.lp-mobile-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-mobile-nav li a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.lp-mobile-nav li a:hover { color: var(--red); }

.lp-mobile-nav .sub-menu {
  list-style: none;
  padding-left: 16px;
}

.lp-mobile-nav .sub-menu a {
  font-size: 15px;
  font-weight: 400;
  color: var(--gray);
}

.lp-mobile-menu__contacts {
  margin-top: 24px;
}

.lp-mobile-menu__phone {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.lp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 299;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lp-overlay.open { opacity: 1; visibility: visible; }

/* =========================================
   FLOATING ВИДЖЕТ МЕССЕНДЖЕРОВ
========================================= */
.lp-messenger-widget {
  position: fixed;
  right: 20px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 200;
}

.lp-msg-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  color: var(--white);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.lp-msg-btn:hover {
  transform: scale(1.1) translateX(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  color: var(--white);
}

.lp-msg-btn--wa  { background: #25D366; }
.lp-msg-btn--tg  { background: #29B6F6; }
.lp-msg-btn--vk  { background: #0077FF; }
.lp-msg-btn--max { background: #7B61FF; }

/* Подпись при наведении */
.lp-msg-label {
  position: absolute;
  right: calc(100% + 10px);
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: var(--radius);
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lp-msg-btn:hover .lp-msg-label { opacity: 1; }

/* =========================================
   ФУТЕР
========================================= */
.lp-footer {
  background: var(--dark);
  color: var(--gray-light);
  padding: 56px 0 0;
}

.lp-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lp-footer__logo { display: inline-flex; margin-bottom: 12px; }
.lp-footer__logo img { height: 40px; width: auto; }

.lp-footer__desc {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 20px;
}

.lp-footer__socials {
  display: flex;
  gap: 10px;
}

.lp-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--gray-light);
  transition: background var(--transition), color var(--transition);
}

.lp-footer__social:hover {
  background: var(--red);
  color: var(--white);
}

.lp-footer__col-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}

.lp-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-footer__links a {
  font-size: 14px;
  color: #888;
  transition: color var(--transition);
}

.lp-footer__links a:hover { color: var(--white); }

.lp-footer__contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-footer__contacts li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #888;
  line-height: 1.4;
}

.lp-footer__contacts li svg { flex-shrink: 0; margin-top: 1px; }
.lp-footer__contacts a { color: #888; }
.lp-footer__contacts a:hover { color: var(--white); }

.lp-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
}

.lp-footer__copy {
  font-size: 13px;
  color: #555;
}

.lp-footer__bottom-links {
  display: flex;
  gap: 20px;
}

.lp-footer__bottom-links a {
  font-size: 13px;
  color: #555;
  transition: color var(--transition);
}

.lp-footer__bottom-links a:hover { color: var(--white); }

/* =========================================
   ПАГИНАЦИЯ
========================================= */
.lp-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 32px 0;
}

.lp-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  transition: all var(--transition);
}

.lp-pagination .page-numbers:hover {
  border-color: var(--red);
  color: var(--red);
}

.lp-pagination .page-numbers.current {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* =========================================
   HERO СЕКЦИЙ СТРАНИЦ
========================================= */
.lp-page-hero {
  background: var(--dark);
  padding: 48px 0;
}

.lp-page-hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.lp-page-hero__title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.lp-page-hero__sub {
  font-size: 16px;
  color: var(--gray-light);
  max-width: 600px;
  line-height: 1.6;
}

/* =========================================
   CTA СНИЗУ СТРАНИЦ
========================================= */
.lp-cta {
  background: var(--bg);
  padding: 48px 0;
}

.lp-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.lp-cta__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.lp-cta__sub {
  font-size: 15px;
  color: var(--gray);
}

.lp-cta__btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* =========================================
   КАРТОЧКИ УСЛУГ
========================================= */
.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.lp-svc-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 14px;
  text-align: center;
  cursor: pointer;
  background: var(--white);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--black);
  display: block;
  position: relative;
}

.lp-svc-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
  color: var(--black);
}

.lp-svc-card__icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
  color: var(--red);
}

.lp-svc-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.3;
}

.lp-svc-card__sub {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.4;
}

.lp-svc-card--new::before {
  content: 'Новое';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

/* =========================================
   ШАГИ / СХЕМА РАБОТЫ
========================================= */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.lp-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.lp-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.lp-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
}

.lp-step__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.lp-step__desc { font-size: 13px; color: var(--gray); line-height: 1.5; }

.lp-step__methods {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  margin-top: 8px;
}

.lp-step__method {
  font-size: 11px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2px 8px;
  color: var(--gray);
}

/* =========================================
   ПРЕИМУЩЕСТВА
========================================= */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius-lg);
}

.lp-feature__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  color: var(--red);
}

.lp-feature__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.lp-feature__desc { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* =========================================
   КЛИЕНТЫ — ЛОГОТИПЫ
========================================= */
.lp-clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.lp-client-logo {
  width: 160px;
  height: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--white);
}

.lp-client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  filter: grayscale(1);
  opacity: 0.65;
  transition: filter var(--transition), opacity var(--transition);
}

.lp-client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* =========================================
   ОТЗЫВЫ
========================================= */
.lp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-review {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.lp-review__stars {
  display: flex;
  gap: 3px;
  color: #E8A400;
  font-size: 16px;
  margin-bottom: 10px;
}

.lp-review__text {
  font-size: 14px;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 12px;
}

.lp-review__author {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

/* =========================================
   АДАПТИВ
========================================= */
@media (max-width: 1100px) {
  .lp-services-grid { grid-template-columns: repeat(4, 1fr); }
  .lp-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .lp-nav { display: none; }
  .lp-burger { display: flex; }
  .lp-services-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .lp-steps::before { display: none; }
  .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .lp-topbar { display: none; }
  .lp-services-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-footer__top { grid-template-columns: 1fr; }
  .lp-footer__bottom { flex-direction: column; text-align: center; }
  .lp-cta__inner { flex-direction: column; text-align: center; }
  .lp-cta__btns { justify-content: center; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-features-grid { grid-template-columns: 1fr; }
  .lp-msg-btn { width: 44px; height: 44px; }
  .lp-messenger-widget { right: 12px; bottom: 60px; }
}

/* =========================================
   HERO ГЛАВНОЙ
========================================= */
.lp-hero {
  background: var(--dark);
  padding: 72px 0 64px;
  overflow: hidden;
}

.lp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.lp-hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.lp-hero__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.lp-hero__sub {
  font-size: 17px;
  color: var(--gray-light);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}

.lp-hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.lp-hero__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lp-hero__badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--gray-light);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
}

.lp-hero__media {
  position: relative;
}

.lp-hero__img,
.lp-hero__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.lp-hero__img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* =========================================
   ПОРТФОЛИО
========================================= */
.lp-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-pf-card { cursor: pointer; }

.lp-pf-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.lp-pf-placeholder {
  height: 200px;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--gray-light);
}

.lp-pf-card__body { padding: 14px 16px; }

.lp-pf-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

/* =========================================
   СЕКЦИЯ ХЕДЕР (ЗАГОЛОВОК + ССЫЛКА)
========================================= */
.lp-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  gap: 16px;
}

.lp-more-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--red);
  white-space: nowrap;
}

.lp-more-link:hover { color: var(--red-dark); }

/* =========================================
   КАРТОЧКИ АКЦИЙ
========================================= */
.lp-promos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-promo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border-top-width: 3px;
}

.lp-promo-card--permanent { border-top-color: var(--black); }
.lp-promo-card--timed     { border-top-color: var(--red); }

.lp-promo-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.lp-promo-card__body { padding: 16px; }

.lp-promo-card__type {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray);
  margin-bottom: 6px;
}

.lp-promo-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
}

.lp-promo-card__desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 14px;
}

.lp-promo-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lp-promo-card__discount {
  font-size: 22px;
  font-weight: 700;
  color: var(--red);
}

/* =========================================
   КАЛЬКУЛЯТОР
========================================= */
.lp-calc-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.lp-calc-box {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 24px;
}

.lp-calc-note {
  font-size: 13px;
  color: var(--gray);
  margin-top: 16px;
  text-align: center;
}

/* =========================================
   ФОРМА УСПЕХ
========================================= */
.lp-form-success {
  background: #EAF3DE;
  color: #27500A;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

/* =========================================
   КЛИЕНТ ТЕКСТ (заглушка)
========================================= */
.lp-client-logo--text {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

/* =========================================
   АНИМАЦИЯ ПОЯВЛЕНИЯ
========================================= */
.lp-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.lp-animate.lp-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   АДАПТИВ ГЛАВНОЙ
========================================= */
@media (max-width: 900px) {
  .lp-hero__inner { grid-template-columns: 1fr; }
  .lp-hero__media { display: none; }
  .lp-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-promos-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .lp-hero { padding: 40px 0; }
  .lp-hero__title { font-size: 28px; }
  .lp-hero__btns { flex-direction: column; }
  .lp-portfolio-grid { grid-template-columns: 1fr; }
  .lp-section-head { flex-direction: column; align-items: flex-start; }
}

/* =========================================
   ХЛЕБНЫЕ КРОШКИ БАР
========================================= */
.lp-breadcrumb-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}

/* =========================================
   СТРАНИЦА УСЛУГИ
========================================= */
.lp-svc-hero { padding: 48px 0; }

.lp-svc-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.lp-svc-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 24px;
}

.lp-svc-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--gray-light);
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 20px;
}

.lp-svc-hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }

.lp-svc-hero__img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.lp-svc-hero__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

/* ТАБЫ */
.lp-tabs__nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
  gap: 0;
  margin-bottom: 32px;
}

.lp-tab {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
}

.lp-tab:hover { color: var(--black); }
.lp-tab.active { color: var(--red); border-bottom-color: var(--red); }
.lp-tab-panel.hidden { display: none; }

.lp-subtype-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.lp-subtype-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.lp-subtype-card__img-placeholder {
  height: 160px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.lp-subtype-card__body { padding: 16px; }
.lp-subtype-card__name { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.lp-subtype-card__desc { font-size: 13px; color: var(--gray); margin-bottom: 12px; }
.lp-subtype-card__footer { display: flex; align-items: center; justify-content: space-between; }
.lp-subtype-card__price { font-size: 18px; font-weight: 700; color: var(--red); }
.lp-subtype-desc { margin-top: 16px; font-size: 14px; color: var(--gray); }

/* ПАРАМЕТРЫ */
.lp-params-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp-param {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.lp-param__label { font-size: 12px; color: var(--gray); margin-bottom: 4px; }
.lp-param__value { font-size: 15px; font-weight: 600; color: var(--black); }

/* ТРЕБОВАНИЯ */
.lp-req-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.lp-req-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-lg);
}

.lp-req-icon { font-size: 24px; flex-shrink: 0; }
.lp-req-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.lp-req-desc { font-size: 13px; color: var(--gray); }

/* FAQ */
.lp-faq { max-width: 800px; }

.lp-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}

.lp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: background var(--transition);
}

.lp-faq-q:hover { background: var(--bg); }
.lp-faq-item.open .lp-faq-q { background: var(--bg); }

.lp-faq-arrow { flex-shrink: 0; transition: transform var(--transition); }
.lp-faq-item.open .lp-faq-arrow { transform: rotate(180deg); }

.lp-faq-a { overflow: hidden; }
.lp-faq-a-inner { padding: 0 20px 16px; font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ФОРМА ЗАКАЗА УСЛУГИ */
.lp-svc-order {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.lp-svc-order__list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.lp-svc-order__list li {
  font-size: 14px;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* КОНТЕНТ СТАТЬИ */
.lp-svc-content {
  max-width: 800px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--black);
}

.lp-svc-content h2 { margin: 32px 0 12px; }
.lp-svc-content h3 { margin: 24px 0 8px; }
.lp-svc-content p  { margin-bottom: 16px; }
.lp-svc-content ul, .lp-svc-content ol { margin: 0 0 16px 24px; }
.lp-svc-content li { margin-bottom: 6px; }
.lp-svc-content img { border-radius: var(--radius); margin: 24px 0; }

/* =========================================
   О КОМПАНИИ
========================================= */
.lp-about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.lp-about-hero__img img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
}

.lp-about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.lp-about-mission__text { font-size: 16px; color: var(--black); line-height: 1.8; }

.lp-about-values { display: flex; flex-direction: column; gap: 16px; }

.lp-value {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.lp-value__icon { font-size: 22px; flex-shrink: 0; }
.lp-value__title { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.lp-value__desc { font-size: 13px; color: var(--gray); }

/* ЦИФРЫ */
.lp-about-stats {
  background: var(--red);
  padding: 56px 0;
}

.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.lp-stat__num {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.lp-stat__label { font-size: 14px; color: rgba(255,255,255,0.8); }

/* ТАЙМЛАЙН */
.lp-timeline { max-width: 640px; }

.lp-tl-item {
  display: grid;
  grid-template-columns: 64px 24px 1fr;
  gap: 0;
  align-items: start;
}

.lp-tl-year {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  text-align: right;
  padding-right: 16px;
  padding-top: 2px;
}

.lp-tl-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 4px;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
}

.lp-tl-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  min-height: 40px;
}

.lp-tl-content { padding-left: 16px; padding-bottom: 28px; }
.lp-tl-title { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.lp-tl-desc { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* =========================================
   КОНТАКТЫ
========================================= */
.lp-contacts-main {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.lp-contacts-info { display: flex; flex-direction: column; gap: 16px; }

.lp-contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-lg);
}

.lp-contact-row__icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.lp-contact-row__label { font-size: 12px; color: var(--gray); margin-bottom: 4px; }
.lp-contact-row__value { font-size: 15px; font-weight: 500; color: var(--black); display: block; }
.lp-contact-row__value--muted { font-size: 13px; color: var(--gray); font-weight: 400; }
.lp-contact-row__link { color: var(--black); transition: color var(--transition); }
.lp-contact-row__link:hover { color: var(--red); }
.lp-contact-row__links { display: flex; gap: 12px; margin-top: 6px; }
.lp-contact-row__links a { font-size: 13px; color: var(--red); }

.lp-contacts-map iframe { border-radius: var(--radius-lg); display: block; }
.lp-contacts-map__note { font-size: 13px; color: var(--gray); margin-top: 10px; }

/* МЕССЕНДЖЕРЫ НА СТРАНИЦЕ КОНТАКТОВ */
.lp-msg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.lp-msg-card {
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
}

.lp-msg-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); color: var(--white); }
.lp-msg-card--wa  { background: #25D366; }
.lp-msg-card--tg  { background: #29B6F6; }
.lp-msg-card--vk  { background: #0077FF; }
.lp-msg-card--max { background: linear-gradient(135deg,#6C3FE8,#4B7FF0,#38C8F0); }

.lp-msg-card__icon { margin: 0 auto 10px; display: flex; justify-content: center; }
.lp-msg-card__name { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.lp-msg-card__action { font-size: 13px; opacity: 0.85; }

/* ФОРМА КОНТАКТОВ */
.lp-contacts-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.lp-contacts-form-steps {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-contacts-form-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--black);
}

.lp-contacts-form-steps li span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-contacts-form-box {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px;
}

/* КАК ДОБРАТЬСЯ */
.lp-route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-route-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.lp-route-card__icon { font-size: 28px; margin-bottom: 10px; }
.lp-route-card__title { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.lp-route-card__desc { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* SEO ТЕКСТ */
.lp-seo-text {
  max-width: 800px;
  padding: 24px;
  background: var(--bg);
  border-radius: var(--radius-lg);
}

.lp-seo-text h2 { font-size: 18px; margin-bottom: 10px; }
.lp-seo-text p  { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* =========================================
   АКЦИИ
========================================= */
.lp-filter-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.lp-filter { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.lp-filter__label { font-size: 13px; color: var(--gray); }

.lp-filter__btn {
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--gray);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}

.lp-filter__btn:hover { border-color: var(--red); color: var(--red); }
.lp-filter__btn.active { background: var(--red); border-color: var(--red); color: var(--white); }

.lp-promos-section-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-promos-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.lp-empty {
  text-align: center;
  color: var(--gray);
  font-size: 15px;
  padding: 32px 0;
}

/* =========================================
   НОВОСТИ
========================================= */
.lp-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-news-card { display: flex; flex-direction: column; }

.lp-news-card__img-wrap {
  position: relative;
  display: block;
  text-decoration: none;
}

.lp-news-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.lp-news-card__img-placeholder {
  height: 200px;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.lp-news-card__cat {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.lp-news-card__cat--novosti-kompanii { background: var(--dark); color: var(--white); }
.lp-news-card__cat--poleznye-stati { background: var(--red); color: var(--white); }
.lp-news-card__cat--news { background: var(--dark); color: var(--white); }

.lp-news-card__body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.lp-news-card__date { font-size: 12px; color: var(--gray); margin-bottom: 6px; }

.lp-news-card__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 8px;
  flex: 1;
}

.lp-news-card__title a { color: var(--black); }
.lp-news-card__title a:hover { color: var(--red); }

.lp-news-card__excerpt { font-size: 13px; color: var(--gray); line-height: 1.5; margin-bottom: 12px; }
.lp-news-card__read { font-size: 13px; font-weight: 500; color: var(--red); margin-top: auto; }

/* =========================================
   СТАТЬЯ
========================================= */
.lp-article-hero { padding: 40px 0; }
.lp-article-hero__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.lp-article-date { font-size: 13px; color: var(--gray-light); }

.lp-article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.lp-article-featured-img { margin-bottom: 28px; }
.lp-article-featured-img img { width: 100%; border-radius: var(--radius-lg); }

.lp-article-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--black);
}

.lp-article-content h2 { font-size: 22px; margin: 32px 0 12px; }
.lp-article-content h3 { font-size: 18px; margin: 24px 0 8px; }
.lp-article-content p  { margin-bottom: 16px; }
.lp-article-content ul, .lp-article-content ol { margin: 0 0 16px 24px; }
.lp-article-content li { margin-bottom: 6px; }
.lp-article-content img { border-radius: var(--radius); margin: 24px 0; width: 100%; }
.lp-article-content blockquote {
  border-left: 4px solid var(--red);
  padding: 12px 20px;
  background: var(--bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--gray);
}

.lp-article-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--border); }
.lp-article-tags__label { font-size: 13px; color: var(--gray); }
.lp-article-tag { font-size: 12px; padding: 4px 12px; border-radius: 20px; border: 1px solid var(--border); color: var(--gray); background: var(--bg); text-decoration: none; }
.lp-article-tag:hover { border-color: var(--red); color: var(--red); }

.lp-article-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }

.lp-article-nav__item {
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition);
  display: block;
}

.lp-article-nav__item:hover { background: var(--bg-dark); }
.lp-article-nav__item--next { text-align: right; }
.lp-article-nav__label { font-size: 12px; color: var(--gray); margin-bottom: 4px; }
.lp-article-nav__title { font-size: 14px; font-weight: 500; color: var(--black); line-height: 1.4; }

/* САЙДБАР СТАТЬИ */
.lp-sidebar-cta { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 20px; border: 1px solid var(--border); }
.lp-sidebar-cta__header { background: var(--red); color: var(--white); padding: 14px 16px; font-size: 15px; font-weight: 600; }
.lp-sidebar-cta__body { padding: 16px; }
.lp-sidebar-cta__body p { font-size: 13px; color: var(--gray); margin-bottom: 14px; line-height: 1.5; }

.lp-sidebar-related { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px; }
.lp-sidebar-related__title { font-size: 14px; font-weight: 600; margin-bottom: 12px; }

.lp-sidebar-related__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--black);
  text-decoration: none;
  line-height: 1.4;
  transition: color var(--transition);
}

.lp-sidebar-related__item:last-child { border-bottom: none; }
.lp-sidebar-related__item:hover { color: var(--red); }
.lp-sidebar-related__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 5px; }

/* =========================================
   АДАПТИВ ШАБЛОНОВ
========================================= */
@media (max-width: 1024px) {
  .lp-article-layout { grid-template-columns: 1fr; }
  .lp-article-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .lp-contacts-main { grid-template-columns: 1fr; }
  .lp-stats-grid { grid-template-columns: repeat(2,1fr); }
  .lp-msg-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .lp-svc-hero__inner { grid-template-columns: 1fr; }
  .lp-svc-hero__media { display: none; }
  .lp-about-hero { grid-template-columns: 1fr; }
  .lp-about-mission { grid-template-columns: 1fr; }
  .lp-contacts-form-wrap { grid-template-columns: 1fr; }
  .lp-news-grid { grid-template-columns: repeat(2,1fr); }
  .lp-params-grid { grid-template-columns: repeat(2,1fr); }
  .lp-req-grid { grid-template-columns: 1fr; }
  .lp-svc-order { grid-template-columns: 1fr; }
  .lp-route-grid { grid-template-columns: 1fr; }
  .lp-subtype-grid { grid-template-columns: 1fr; }
  .lp-article-sidebar { grid-template-columns: 1fr; }
  .lp-article-nav { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .lp-news-grid { grid-template-columns: 1fr; }
  .lp-msg-grid { grid-template-columns: 1fr 1fr; }
  .lp-stats-grid { grid-template-columns: repeat(2,1fr); }
  .lp-stat__num { font-size: 28px; }
}
/* ===== ФИНАЛЬНЫЕ ПРАВКИ ДИЗАЙНА ===== */

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
}

/* Шапка */
.lp-header {
  box-shadow: none;
  border-bottom: 0.5px solid #E0E0E0;
}

/* Hero */
.lp-hero {
  padding: 48px 20px 40px;
}

.lp-hero__title {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Кнопки */
.btn-primary {
  background: #E30613;
  border-color: #E30613;
  font-weight: 600;
}

.btn-primary:hover {
  background: #B8000D;
  border-color: #B8000D;
}

/* Карточки услуг */
.lp-svc-card:hover {
  border-color: #E30613;
  transform: translateY(-2px);
}

.lp-svc-card__icon {
  color: #E30613;
}

/* Шаги */
.lp-step__num {
  background: #E30613;
  box-shadow: 0 0 0 2px #E30613;
}

/* Преимущества */
.lp-feature__icon {
  background: #FFF0F0;
  color: #E30613;
}

/* Футер */
.lp-footer {
  background: #2B2B2B;
}

/* Таймлайн */
.lp-tl-dot {
  background: #E30613;
  box-shadow: 0 0 0 2px #E30613;
}

.lp-tl-year {
  color: #E30613;
}

/* FAQ */
.lp-faq-item.open .lp-faq-q {
  color: #E30613;
}

/* Прomo карточки */
.lp-promo-card--timed {
  border-top-color: #E30613;
}

.lp-promo-card__discount {
  color: #E30613;
}

/* Навигация активный пункт */
.lp-nav__link--active,
.lp-nav__link:hover {
  color: #E30613;
}

/* CTA блок */
.lp-cta {
  background: #F5F5F5;
}

/* Секция статистики */
.lp-about-stats {
  background: #E30613;
}
/* ===== СЛАЙДЕР ПОРТФОЛИО ===== */
.lp-portfolio-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin-top: 20px;
  max-width: 100%;
}

.lp-portfolio-slider::-webkit-scrollbar { display: none; }

.lp-pf-slide {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

.lp-pf-slide__inner {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-dark);
  text-decoration: none;
  cursor: pointer;
}

.lp-pf-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.lp-pf-slide__inner:hover .lp-pf-slide__img {
  transform: scale(1.04);
}

.lp-pf-slide__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--gray-light);
  background: var(--bg-dark);
}

.lp-pf-slide__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
}

.lp-pf-slide__cat {
  font-size: 11px;
  font-weight: 600;
  color: #E30613;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
  background: rgba(255,255,255,0.9);
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
}

.lp-pf-slide__title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.lp-portfolio-nav {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.lp-pf-prev, .lp-pf-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--black);
  transition: all var(--transition);
}

.lp-pf-prev:hover, .lp-pf-next:hover {
  border-color: #E30613;
  color: #E30613;
}

/* ===== HERO СЛАЙДЕР ===== */
.lp-hero--slider {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 0;
}

.lp-hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lp-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.lp-hero-slide.active { opacity: 1; }

.lp-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.65);
  z-index: 1;
  pointer-events: none;
}

.lp-hero__inner--slider {
  position: relative;
  z-index: 2;
  padding: 72px 0;
  display: block;
  width: 100%;
}

.lp-hero-dots-outer {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
  background: #2B2B2B;
}

.lp-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  pointer-events: all;
}

.lp-hero-dot.active {
  background: #E30613;
  width: 24px;
}

/* ===== ГЛОБАЛЬНЫЕ ИСПРАВЛЕНИЯ ===== */

html, body {
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

/* Портфолио слайдер — не выходит за экран */
#portfolio {
  overflow: hidden;
}

.lp-portfolio-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin-top: 20px;
  max-width: 100%;
}

/* Карточки услуг с картинками */
.lp-svc-card {
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
  text-align: left;
}

.lp-svc-card__icon-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  display: block;
  margin: 0;
}

.lp-svc-card__name {
  padding: 8px 10px 2px;
  font-size: 12px;
  font-weight: 600;
}

.lp-svc-card__sub {
  padding: 0 10px 10px;
  font-size: 11px;
}

/* Логотипы клиентов */
.lp-clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.lp-client-logo {
  flex: 0 0 auto;
  width: 140px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.lp-client-logo img {
  max-width: 100%;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  padding: 0;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.lp-client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

html, body { overflow-x: hidden; }
#portfolio { overflow: hidden; }


/* ===== LOCAL PRINT — ФИНАЛЬНАЯ ДОВОДКА ЗАПУСКА ===== */
.btn,
a.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none !important;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none !important; }
.btn-primary { background: #E30613; border-color: #E30613; color: #fff !important; box-shadow: 0 12px 28px rgba(227,6,19,.22); }
.btn-primary:hover { background: #B8000D; border-color: #B8000D; color: #fff !important; }
.btn-wa { background: #25D366; border-color: #25D366; color: #fff !important; box-shadow: 0 12px 28px rgba(37,211,102,.20); }
.btn-wa:hover { background: #1da851; border-color: #1da851; color: #fff !important; }
.btn-outline-light { background: rgba(255,255,255,.10); color: #fff !important; border-color: rgba(255,255,255,.65); backdrop-filter: blur(6px); }
.btn-outline-light:hover { background: #fff; color: #1A1A1A !important; border-color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 15px 26px; font-size: 16px; }
.btn-full { width: 100%; }

.lp-hero--slider { min-height: 620px; }
.lp-hero-overlay { background: linear-gradient(90deg, rgba(12,12,12,.88) 0%, rgba(12,12,12,.68) 42%, rgba(12,12,12,.34) 100%); }
.lp-hero__content { max-width: 720px; padding: 34px 0; }
.lp-hero__eyebrow { display: inline-flex; padding: 8px 14px; border-radius: 999px; background: rgba(227,6,19,.16); color: #fff; border: 1px solid rgba(227,6,19,.35); }
.lp-hero__title { max-width: 780px; font-size: clamp(34px, 5.2vw, 68px); font-weight: 800; line-height: 1.04; letter-spacing: -1.3px; color: #fff; text-shadow: 0 3px 22px rgba(0,0,0,.35); }
.lp-hero__sub { max-width: 640px; font-size: clamp(17px, 2vw, 22px); color: rgba(255,255,255,.88); }
.lp-hero__btns { gap: 14px; }
.lp-hero__badge { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.22); backdrop-filter: blur(5px); }
.lp-hero-dots-outer { margin-top: -54px; position: relative; z-index: 5; background: transparent; padding-bottom: 28px; }
.lp-hero-dot { width: 11px; height: 11px; border-radius: 999px; background: rgba(255,255,255,.55); }
.lp-hero-dot.active { width: 34px; background: #E30613; }

.lp-cta { background: linear-gradient(135deg, #1A1A1A 0%, #2B2B2B 62%, #B8000D 100%) !important; color: #fff; }
.lp-cta__title { color: #fff; font-weight: 800; }
.lp-cta__sub { color: rgba(255,255,255,.78); }

.lp-client-logo { background: #fff; border: 1px solid rgba(0,0,0,.07); box-shadow: 0 8px 24px rgba(0,0,0,.05); }
.lp-client-logo img { max-height: 58px; object-fit: contain; filter: none; opacity: .92; }
.lp-client-logo:hover img { opacity: 1; }
.lp-client-logo--text { color: #2B2B2B; font-weight: 700; }

.lp-form-fallback { padding: 28px; border-radius: 16px; background: #fff; border: 1px solid #E0E0E0; box-shadow: 0 12px 34px rgba(0,0,0,.08); }
.lp-form-fallback h3 { margin-bottom: 8px; }
.lp-form-fallback p { color: #666; margin-bottom: 18px; }
.lp-form-fallback__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.wpcf7 form { display: grid; gap: 14px; }
.wpcf7 label { display: grid; gap: 6px; font-weight: 600; color: #1A1A1A; }
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 textarea, .wpcf7 select { width: 100%; border: 1px solid #D8D8D8; border-radius: 10px; padding: 12px 14px; background: #fff; }
.wpcf7 textarea { min-height: 120px; resize: vertical; }
.wpcf7 input[type="submit"] { background: #E30613; color: #fff; border: 0; border-radius: 10px; padding: 14px 22px; font-weight: 800; cursor: pointer; }

@media (max-width: 768px) {
  .lp-hero--slider { min-height: auto; }
  .lp-hero__inner--slider { padding: 54px 0 72px; }
  .lp-hero__content { padding: 0; }
  .lp-hero__btns, .lp-cta__btns, .lp-form-fallback__actions { flex-direction: column; align-items: stretch; }
  .btn, a.btn, button.btn { width: 100%; white-space: normal; text-align: center; }
  .lp-hero__badges { display: grid; grid-template-columns: 1fr; }
}

/* === LOCALPRINT FINAL DESIGN PASS 2026-06-05 v1.0.2 === */
:root {
  --lp-shadow-soft: 0 18px 50px rgba(0,0,0,.10);
  --lp-shadow-red: 0 16px 38px rgba(227,6,19,.26);
}

/* Header: убираем обрезание правой кнопки и делаем меню плотнее */
.lp-header { height: 66px; overflow: visible; }
.lp-header .container { max-width: 1280px; padding-left: 18px; padding-right: 18px; }
.lp-header__inner { gap: 14px; min-width: 0; }
.lp-header__logo img { height: 44px; max-width: 158px; }
.lp-nav { min-width: 0; }
.lp-nav__list { justify-content: flex-end; gap: 2px; }
.lp-nav__link { padding: 8px 7px; font-size: 12.5px; font-weight: 650; }
.lp-header__actions { min-width: max-content; margin-left: 4px; }
.lp-header__actions .btn { padding: 9px 13px; font-size: 12.5px; border-radius: 9px; box-shadow: none; }
@media (max-width: 1180px) {
  .lp-header__actions { display: none; }
  .lp-nav__link { font-size: 12px; padding-left: 6px; padding-right: 6px; }
}
@media (max-width: 980px) {
  .lp-nav { display: none; }
  .lp-burger { display: flex; }
  .lp-header__actions { display: none; }
}

/* Hero: ближе к согласованному премиальному виду */
.lp-hero--slider { min-height: 650px; position: relative; isolation: isolate; }
.lp-hero-overlay {
  background:
    radial-gradient(circle at 78% 48%, rgba(227,6,19,.32) 0, rgba(227,6,19,0) 34%),
    linear-gradient(90deg, rgba(9,9,9,.94) 0%, rgba(16,16,16,.80) 43%, rgba(16,16,16,.42) 70%, rgba(16,16,16,.28) 100%);
}
.lp-hero__inner--slider { min-height: 650px; display: flex; align-items: center; }
.lp-hero__content { max-width: 760px; padding: 56px 0 86px; }
.lp-hero__eyebrow {
  margin-bottom: 18px;
  padding: 8px 14px;
  background: rgba(227,6,19,.22);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.lp-hero__title {
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 22px;
  max-width: 780px;
}
.lp-hero__sub {
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.45;
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.90);
}
.lp-hero__btns { gap: 12px; margin-bottom: 22px; }
.lp-hero__btns .btn { border-radius: 12px; padding: 16px 24px; }
.lp-hero__btns .btn-primary { box-shadow: var(--lp-shadow-red); }
.lp-hero__badges { gap: 10px; }
.lp-hero__badge {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 13px;
}
.lp-hero-dots-outer { margin-top: -64px; padding-bottom: 34px; }

/* Секции главной: более уверенная коммерческая подача */
.section { padding: 72px 0; }
.section-bg { background: #f6f6f6; }
.section-title { font-weight: 850; letter-spacing: -.45px; }
.section-subtitle { margin-bottom: 34px; }
.lp-services-grid { gap: 16px; }
.lp-svc-card {
  padding: 0;
  text-align: left;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.05);
}
.lp-svc-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,.10); }
.lp-svc-card__icon-img { width: 100%; height: 132px; object-fit: cover; }
.lp-svc-card__name { padding: 12px 14px 2px; font-weight: 800; font-size: 15px; }
.lp-svc-card__sub { padding: 0 14px 14px; color: #666; font-size: 13px; }
.lp-feature, .lp-req-item, .lp-route-card, .lp-contact-row { border-radius: 16px; box-shadow: 0 10px 26px rgba(0,0,0,.04); }

/* Страницы услуг: форма и калькулятор компактнее */
.lp-svc-hero { padding: 62px 0; }
.lp-svc-hero__inner { align-items: center; }
.lp-svc-hero__title, .lp-page-hero__title { font-weight: 900; letter-spacing: -.8px; }
.lp-calc-box {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 18px;
  box-shadow: 0 16px 46px rgba(0,0,0,.07);
  padding: 28px;
}
.lp-svc-order {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(360px, 1fr);
  gap: 36px;
  align-items: start;
  padding: 34px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
  box-shadow: 0 18px 54px rgba(0,0,0,.07);
  border: 1px solid rgba(0,0,0,.06);
}
.lp-svc-order__form,
.lp-contacts-form-box {
  max-width: 560px;
  width: 100%;
  margin-left: auto;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
}
.lp-contacts-form-wrap {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(360px, 1fr);
  gap: 36px;
  align-items: start;
}
.wpcf7 form { gap: 10px; }
.wpcf7 p { margin: 0 0 10px; }
.wpcf7 label { gap: 5px; font-size: 13px; font-weight: 700; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 14px;
}
.wpcf7 textarea { min-height: 96px; max-height: 150px; }
.wpcf7 input[type="submit"] {
  min-width: 150px;
  padding: 13px 22px;
  border-radius: 11px;
  box-shadow: var(--lp-shadow-red);
}
.wpcf7 .wpcf7-acceptance label,
.wpcf7 .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}
.wpcf7 .wpcf7-list-item { margin: 0; }
.wpcf7 input[type="checkbox"] { width: 16px; height: 16px; flex: 0 0 auto; }
.wpcf7 form .wpcf7-response-output { margin: 14px 0 0; border-radius: 10px; padding: 10px 14px; }

/* Контакты */
.lp-msg-grid { gap: 16px; }
.lp-msg-card { border-radius: 18px; box-shadow: 0 14px 36px rgba(0,0,0,.08); }
.lp-contacts-main { align-items: stretch; }
.lp-contacts-map iframe { border-radius: 18px; }

/* Адаптив */
@media (max-width: 900px) {
  .lp-hero--slider, .lp-hero__inner--slider { min-height: 560px; }
  .lp-hero__content { padding: 44px 0 76px; }
  .lp-hero__title { font-size: clamp(34px, 9vw, 52px); letter-spacing: -1.2px; }
  .lp-svc-order, .lp-contacts-form-wrap { grid-template-columns: 1fr; padding: 0; background: transparent; box-shadow: none; border: 0; }
  .lp-svc-order__form, .lp-contacts-form-box { max-width: none; margin: 0; }
}
@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .lp-header { height: 62px; }
  .lp-header__logo img { height: 38px; }
  .lp-topbar { display: none; }
  .lp-hero--slider, .lp-hero__inner--slider { min-height: 540px; }
  .lp-hero__content { padding: 40px 0 72px; }
  .lp-hero__title { font-size: 36px; line-height: 1.04; }
  .lp-hero__sub { font-size: 16px; }
  .lp-hero__btns .btn { width: 100%; }
  .lp-svc-card__icon-img { height: 112px; }
  .lp-calc-box { padding: 18px; border-radius: 14px; }
  .lp-svc-order__form, .lp-contacts-form-box { padding: 18px; border-radius: 14px; }
  .wpcf7 textarea { min-height: 84px; }
}


/* === LOCALPRINT REAL FIX 2026-06-05 v6 === */
:root { --tg: #229ED9; --tg-dark: #1b8fc5; }

/* компактнее вертикальный ритм */
.section { padding: 54px 0; }
.section-sm { padding: 32px 0; }
.section-title { margin-bottom: 6px; }
.section-subtitle { margin-bottom: 24px; }
@media (max-width: 640px) { .section { padding: 38px 0; } }

/* Telegram как Telegram, не белая кнопка */
.btn-tg,
a.btn-tg {
  background: var(--tg) !important;
  border-color: var(--tg) !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(34,158,217,.24);
}
.btn-tg:hover,
a.btn-tg:hover {
  background: var(--tg-dark) !important;
  border-color: var(--tg-dark) !important;
  color: #fff !important;
}

/* hero бейджи: чистые SVG, без эмодзи и без стокового вида */
.lp-hero__badges { gap: 12px; }
.lp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 16px !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.09)) !important;
  border: 1px solid rgba(255,255,255,.26) !important;
  color: #fff !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 10px 26px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  font-weight: 700;
}
.lp-hero__badge-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #E30613;
  box-shadow: 0 8px 18px rgba(227,6,19,.28);
}
.lp-hero__badge-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* форма заказа: возвращена компактная нормальная компоновка, не горизонтальный монстр */
.lp-svc-order,
.lp-contacts-form-wrap {
  grid-template-columns: minmax(260px, 360px) minmax(360px, 560px) !important;
  justify-content: center !important;
  gap: 30px !important;
  align-items: start !important;
  padding: 28px !important;
  border-radius: 20px !important;
}
.lp-svc-order__form,
.lp-contacts-form-box {
  max-width: 560px !important;
  margin: 0 !important;
  padding: 22px !important;
  border-radius: 18px !important;
}
.wpcf7 form { gap: 8px !important; }
.wpcf7 p { margin: 0 0 8px !important; }
.wpcf7 label { font-size: 13px !important; line-height: 1.35 !important; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  min-height: 42px !important;
  padding: 9px 12px !important;
  font-size: 14px !important;
}
.wpcf7 textarea { min-height: 86px !important; max-height: 120px !important; }
.wpcf7 input[type="file"] { font-size: 13px !important; }

/* политика: реальное исправление CF7-верстки */
.wpcf7 .lp-privacy-inline,
.wpcf7 p:has(.wpcf7-acceptance) {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: nowrap !important;
  margin: 8px 0 12px !important;
  color: #1A1A1A !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
}
.wpcf7 .wpcf7-acceptance,
.wpcf7 .wpcf7-list-item,
.wpcf7 .wpcf7-list-item label {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 6px !important;
}
.wpcf7 .wpcf7-acceptance input[type="checkbox"] { margin: 0 !important; }
.wpcf7 .lp-privacy-inline a,
.wpcf7 p:has(.wpcf7-acceptance) a,
.wpcf7 a[href*="privacy"],
.wpcf7 a[href*="polit"] {
  color: #0d6efd !important;
  text-decoration: underline !important;
  font-weight: 600 !important;
}
.wpcf7 .lp-privacy-inline br,
.wpcf7 p:has(.wpcf7-acceptance) br { display: none !important; }

/* услуги: не даём картинкам исчезать и делаем карточки плотнее */
.lp-services-grid { gap: 14px !important; }
.lp-svc-card__icon-img { display: block !important; height: 128px !important; background: #f1f1f1; }
.lp-svc-card__name { font-size: 14px !important; }
.lp-svc-card__sub { font-size: 12px !important; }

@media (max-width: 900px) {
  .lp-svc-order,
  .lp-contacts-form-wrap {
    grid-template-columns: 1fr !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
  }
  .lp-svc-order__form,
  .lp-contacts-form-box { max-width: none !important; }
}
@media (max-width: 640px) {
  .lp-hero__badges { display: grid !important; grid-template-columns: 1fr !important; }
  .lp-hero__badge { width: 100%; justify-content: flex-start; }
}

/* =========================================================
   LOCALPRINT v7 — форма заказа в 3 карточки + финальная полировка
   ========================================================= */
:root {
  --lp-blue-tg: #229ED9;
}

.section { padding: 52px 0; }
.section-sm { padding: 34px 0; }
.section-title { margin-bottom: 6px; }
.section-subtitle { margin-bottom: 28px; }

.btn-tg,
a.btn-tg,
button.btn-tg {
  background: var(--lp-blue-tg) !important;
  border-color: var(--lp-blue-tg) !important;
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(34,158,217,.24);
}
.btn-tg:hover,
a.btn-tg:hover,
button.btn-tg:hover {
  background: #1B8FC7 !important;
  border-color: #1B8FC7 !important;
  color: #fff !important;
}

/* Hero badges — аккуратнее, без дешёвых эмодзи и тяжёлых плашек */
.lp-hero__badges {
  gap: 12px;
  align-items: center;
}
.lp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 14px 8px 10px !important;
  border-radius: 999px;
  background: rgba(255,255,255,.10) !important;
  border: 1px solid rgba(255,255,255,.20) !important;
  color: rgba(255,255,255,.94) !important;
  box-shadow: 0 12px 34px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}
.lp-hero__badge-icon {
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E30613 0%, #B8000D 100%);
  box-shadow: 0 6px 16px rgba(227,6,19,.25);
}
.lp-hero__badge-icon svg {
  width: 17px !important;
  height: 17px !important;
  stroke: #fff !important;
  stroke-width: 2.1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Блок формы заказа — как в согласованном референсе, но в стиле Local Print */
.lp-order-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 20%, rgba(227,6,19,.18), transparent 34%),
    linear-gradient(135deg, #151515 0%, #242424 56%, #111 100%) !important;
  color: #fff;
  padding: 62px 0 66px !important;
}
.lp-order-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.035), transparent 45%);
  pointer-events: none;
}
.lp-order-section .container { position: relative; z-index: 1; }
.lp-order-head { margin-bottom: 24px; }
.lp-order-title {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.9px;
}
.lp-order-subtitle {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 18px;
}
.lp-order-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0 26px;
}
.lp-order-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.92);
  font-size: 16px;
  line-height: 1.35;
}
.lp-order-benefit__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E30613 0%, #B8000D 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(227,6,19,.24);
}
.lp-order-benefit__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-order-form-shell {
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  max-width: none !important;
}
.lp-order-form-shell .wpcf7 { width: 100%; }
.lp-order-form-shell .wpcf7 form {
  display: block !important;
  margin: 0;
}
.lp-order-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.lp-order-card {
  min-height: 100%;
  padding: 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.055) 100%);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 20px 56px rgba(0,0,0,.20);
  backdrop-filter: blur(10px);
}
.lp-order-card__title {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 13px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.lp-order-card__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 2px;
  border-radius: 99px;
  background: #E30613;
}
.lp-order-card p { margin: 0 0 16px !important; }
.lp-order-card p:last-child { margin-bottom: 0 !important; }
.lp-order-card label {
  display: block !important;
  color: rgba(255,255,255,.92) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.35;
}
.lp-order-card input[type="text"],
.lp-order-card input[type="email"],
.lp-order-card input[type="tel"],
.lp-order-card input[type="file"],
.lp-order-card select,
.lp-order-card textarea {
  width: 100% !important;
  margin-top: 8px;
  background: rgba(0,0,0,.20) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 13px 14px !important;
  font-size: 15px !important;
  outline: none !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.lp-order-card input::placeholder,
.lp-order-card textarea::placeholder { color: rgba(255,255,255,.42) !important; }
.lp-order-card input:focus,
.lp-order-card textarea:focus,
.lp-order-card select:focus {
  border-color: rgba(227,6,19,.85) !important;
  box-shadow: 0 0 0 3px rgba(227,6,19,.16);
}
.lp-order-card textarea {
  min-height: 245px !important;
  max-height: 320px !important;
  resize: vertical;
}
.lp-order-card--file {
  display: flex;
  flex-direction: column;
}
.lp-order-card--file .lp-file-field label {
  display: block !important;
}
.lp-order-card--file .lp-file-hint {
  display: block;
  margin: 8px 0 10px;
  color: rgba(255,255,255,.60);
  font-weight: 500;
  line-height: 1.45;
}
.lp-order-card input[type="file"] {
  border: 1px dashed rgba(255,255,255,.34) !important;
  min-height: 92px;
  cursor: pointer;
  background: rgba(0,0,0,.16) !important;
}
.lp-order-card .wpcf7-acceptance,
.lp-order-card .wpcf7-acceptance .wpcf7-list-item,
.lp-order-card .wpcf7-acceptance label,
.lp-order-card .wpcf7-list-item label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  flex-wrap: nowrap !important;
  color: rgba(255,255,255,.88) !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  font-weight: 500 !important;
  white-space: normal !important;
}
.lp-order-card .wpcf7-acceptance input[type="checkbox"],
.lp-order-card input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  margin: 0 !important;
  accent-color: #E30613;
}
.lp-order-card .wpcf7-acceptance .wpcf7-list-item-label,
.lp-order-card .wpcf7-list-item-label {
  display: inline !important;
  color: rgba(255,255,255,.88) !important;
}
.lp-order-card .wpcf7-acceptance a,
.lp-order-card .wpcf7-list-item-label a,
.lp-order-card a {
  display: inline !important;
  color: #5EA8FF !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}
.lp-order-card input[type="submit"] {
  width: 100% !important;
  margin-top: 14px;
  min-height: 54px;
  background: linear-gradient(135deg, #E30613 0%, #B8000D 100%) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 11px !important;
  font-size: 17px !important;
  font-weight: 900 !important;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(227,6,19,.28);
}
.lp-order-card input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(227,6,19,.34);
}
.lp-order-form-shell .wpcf7-not-valid-tip { color: #ffb4b4; font-size: 13px; margin-top: 5px; }
.lp-order-form-shell .wpcf7 form .wpcf7-response-output {
  margin: 18px 0 0 !important;
  padding: 12px 16px !important;
  border-radius: 10px;
  color: #fff;
}

/* Убираем конфликт старой сетки формы */
.lp-svc-order,
.lp-svc-order__form {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Более плотная вертикальная rhythm всего сайта */
#services.section,
#calculator.section,
#features.section,
#steps.section,
#reviews.section,
#clients.section { padding-top: 50px; padding-bottom: 50px; }

@media (max-width: 980px) {
  .lp-order-benefits { grid-template-columns: 1fr; gap: 14px; }
  .lp-order-cards { grid-template-columns: 1fr; }
  .lp-order-card textarea { min-height: 160px !important; }
}
@media (max-width: 640px) {
  .section { padding: 42px 0; }
  .lp-order-section { padding: 46px 0 50px !important; }
  .lp-order-card { padding: 20px; border-radius: 15px; }
  .lp-order-title { font-size: 30px; }
  .lp-order-subtitle { font-size: 15px; }
  .lp-order-benefit { font-size: 14px; }
  .lp-hero__badges { display: grid !important; grid-template-columns: 1fr !important; }
  .lp-hero__badge { width: 100%; }
}


/* === LOCALPRINT v8: финальные согласованные правки === */
/* Читаемый блок клиентов */
.lp-clients-grid{
  display:grid !important;
  grid-template-columns:repeat(5,minmax(150px,1fr)) !important;
  gap:18px !important;
  justify-items:stretch !important;
  align-items:stretch !important;
  max-width:1020px;
  margin-left:auto;
  margin-right:auto;
}
.lp-client-logo{
  width:auto !important;
  min-height:86px !important;
  height:86px !important;
  padding:14px 18px !important;
  border-radius:14px !important;
  background:#fff !important;
  border:1px solid rgba(0,0,0,.08) !important;
  box-shadow:0 10px 28px rgba(0,0,0,.055) !important;
}
.lp-client-logo img{
  width:100% !important;
  height:100% !important;
  max-width:100% !important;
  max-height:58px !important;
  object-fit:contain !important;
  padding:0 !important;
  filter:none !important;
  opacity:.96 !important;
}
.lp-client-logo:nth-child(n+21){display:none !important;}
@media(max-width:980px){.lp-clients-grid{grid-template-columns:repeat(3,1fr) !important;}.lp-client-logo:nth-child(n+16){display:none !important;}}
@media(max-width:560px){.lp-clients-grid{grid-template-columns:repeat(2,1fr) !important;gap:12px !important;}.lp-client-logo{height:72px !important;min-height:72px !important;padding:10px !important;}.lp-client-logo:nth-child(n+13){display:none !important;}}

/* Max: официально выглядящий знак в едином стиле с остальными кнопками */
.lp-topbar__social--max,
.lp-msg-btn--max,
.lp-msg-card--max{
  background:linear-gradient(135deg,#27C6F7 0%,#3156FF 48%,#A73BF2 100%) !important;
}
.lp-max-logo{display:block;filter:drop-shadow(0 2px 5px rgba(0,0,0,.16));}
.lp-msg-card--max .lp-max-logo{margin:0 auto;}

/* Реквизиты в футере */
.lp-footer__requisites{
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.08);
  color:#8f8f8f;
  font-size:12.5px;
  line-height:1.55;
}
.lp-footer__req-title{
  color:#fff;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:8px;
}

/* Форма: согласие — читаемо, в 2 строки, без чёрного на чёрном */
.lp-order-card .lp-privacy-inline,
.lp-order-card .wpcf7-acceptance,
.lp-order-card .wpcf7-list-item label{
  color:rgba(255,255,255,.86) !important;
}
.lp-order-card .lp-privacy-inline{
  display:flex !important;
  align-items:flex-start !important;
  gap:10px !important;
  margin:14px 0 12px !important;
  line-height:1.35 !important;
}
.lp-order-card .lp-privacy-inline .wpcf7-acceptance{display:inline-flex !important;margin-top:2px !important;}
.lp-order-card .lp-privacy-inline .wpcf7-list-item{margin:0 !important;}
.lp-order-card .lp-privacy-inline .wpcf7-list-item-label{display:none !important;}
.lp-order-card .lp-privacy-text{
  display:block !important;
  color:rgba(255,255,255,.86) !important;
  font-size:14px !important;
  font-weight:500 !important;
}
.lp-order-card .lp-privacy-text a,
.lp-order-card .lp-privacy-inline a{
  color:#6EB6FF !important;
  text-decoration:underline !important;
  text-underline-offset:3px;
}

/* Более аккуратные hero-бейджи */
.lp-hero__badges{gap:12px !important;}
.lp-hero__badge{
  padding:10px 15px 10px 10px !important;
  background:rgba(255,255,255,.14) !important;
  border:1px solid rgba(255,255,255,.24) !important;
  box-shadow:0 12px 32px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.12) !important;
  backdrop-filter:blur(9px) !important;
  color:#fff !important;
  font-weight:650 !important;
}
.lp-hero__badge-icon{
  width:30px !important;
  height:30px !important;
  min-width:30px !important;
  border-radius:999px !important;
  background:linear-gradient(135deg,#E30613,#B8000D) !important;
  box-shadow:0 8px 18px rgba(227,6,19,.30) !important;
}
.lp-hero__badge-icon svg{width:17px !important;height:17px !important;stroke:#fff !important;stroke-width:2.15 !important;fill:none !important;}

/* Плотнее вертикальный ритм */
.section{padding-top:52px !important;padding-bottom:52px !important;}
#services.section,#calculator.section,#features.section,#steps.section,#reviews.section,#clients.section{padding-top:44px !important;padding-bottom:44px !important;}
.lp-order-section{padding-top:54px !important;padding-bottom:58px !important;}
.section-subtitle{margin-bottom:26px !important;}
.mt-40{margin-top:26px !important;}
@media(max-width:640px){.section{padding-top:38px !important;padding-bottom:38px !important;}.lp-order-section{padding-top:42px !important;padding-bottom:46px !important;}}


/* === LOCALPRINT v9: согласованные правки === */
:root { --lp-blue: #0d6efd; }

/* Hero badges: фирменные SVG, подарок = коробка */
.lp-hero__badge {
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.08)) !important;
  border: 1px solid rgba(255,255,255,.28) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.16) !important;
  backdrop-filter: blur(12px);
  gap: 10px;
}
.lp-hero__badge-icon {
  width: 30px !important;
  height: 30px !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, #E30613, #B8000D) !important;
  box-shadow: 0 8px 18px rgba(227,6,19,.28) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto;
}
.lp-hero__badge-icon svg {
  width: 18px !important;
  height: 18px !important;
  fill: none !important;
  stroke: #fff !important;
  stroke-width: 2.2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

/* Почему выбирают: 6 карточек, без эмодзи, крупные цветные SVG */
.lp-features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}
.lp-feature {
  background: #fff !important;
  border: 1px solid rgba(0,0,0,.06) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.06) !important;
  border-radius: 18px !important;
  padding: 22px !important;
  min-height: 132px;
}
.lp-feature__icon {
  width: 58px !important;
  height: 58px !important;
  border-radius: 18px !important;
  background: radial-gradient(circle at 28% 24%, #ff767d 0, #E30613 44%, #B8000D 100%) !important;
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(227,6,19,.20) !important;
}
.lp-feature__icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lp-feature__title { font-size: 16px !important; font-weight: 850 !important; }
.lp-feature__desc { font-size: 13.5px !important; line-height: 1.5 !important; }

/* Клиенты: квадратные плитки, логотип полностью помещается внутрь */
.lp-clients-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(118px, 118px)) !important;
  justify-content: center !important;
  gap: 14px !important;
  align-items: stretch !important;
}
.lp-client-logo {
  width: 118px !important;
  height: 118px !important;
  padding: 14px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 10px 26px rgba(0,0,0,.055) !important;
}
.lp-client-logo img {
  width: auto !important;
  height: auto !important;
  max-width: 86% !important;
  max-height: 86% !important;
  object-fit: contain !important;
  padding: 0 !important;
  filter: none !important;
  opacity: .94 !important;
}
.lp-client-logo:hover img { opacity: 1 !important; transform: scale(1.03); }
.lp-client-logo--text { font-size: 12px !important; text-align: center; line-height: 1.25; }

/* Контакты: такая же форма, как на услуге, но на светлом фоне */
.lp-contacts-form-box.lp-order-form-shell--light {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.lp-order-form-shell--light .lp-order-cards {
  grid-template-columns: minmax(230px,.9fr) minmax(260px,1.1fr) minmax(230px,.9fr) !important;
  gap: 18px !important;
}
.lp-order-form-shell--light .lp-order-card {
  background: #fff !important;
  border: 1px solid rgba(0,0,0,.08) !important;
  color: #1A1A1A !important;
  box-shadow: 0 14px 36px rgba(0,0,0,.07) !important;
}
.lp-order-form-shell--light .lp-order-card__title { color: #1A1A1A !important; }
.lp-order-form-shell--light .lp-order-card__title::after { background: #E30613 !important; }
.lp-order-form-shell--light .lp-order-card label { color: #1A1A1A !important; }
.lp-order-form-shell--light .lp-order-card input[type="text"],
.lp-order-form-shell--light .lp-order-card input[type="email"],
.lp-order-form-shell--light .lp-order-card input[type="tel"],
.lp-order-form-shell--light .lp-order-card select,
.lp-order-form-shell--light .lp-order-card textarea {
  background: #F8F8F8 !important;
  border-color: #DADADA !important;
  color: #1A1A1A !important;
}
.lp-order-form-shell--light .lp-order-card input::placeholder,
.lp-order-form-shell--light .lp-order-card textarea::placeholder { color: #8A8A8A !important; }
.lp-order-form-shell--light .lp-order-card--file { background: #fff !important; }
.lp-order-form-shell--light .lp-order-card .wpcf7-acceptance,
.lp-order-form-shell--light .lp-order-card .wpcf7-list-item label,
.lp-order-form-shell--light .lp-order-card .lp-privacy-text { color: #1A1A1A !important; }
.lp-order-form-shell--light .lp-order-card .wpcf7-acceptance a,
.lp-order-form-shell--light .lp-order-card .wpcf7-list-item-label a,
.lp-order-form-shell--light .lp-order-card .lp-privacy-text a,
.lp-order-form-shell--light .lp-order-card a[href*="privacy"],
.lp-order-form-shell--light .lp-order-card a[href*="polit"] {
  color: #0d6efd !important;
  text-decoration: underline !important;
}

/* Согласие: две строки одним предложением, читаемый цвет */
.lp-order-card .lp-privacy-inline {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  color: rgba(255,255,255,.86) !important;
  line-height: 1.35 !important;
}
.lp-order-card .lp-privacy-text {
  display: inline-block !important;
  color: rgba(255,255,255,.86) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}
.lp-order-card .lp-privacy-text a {
  color: #65A9FF !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}
.lp-order-card .lp-privacy-inline .wpcf7-acceptance { flex: 0 0 auto; }

/* Popup заказа */
.lp-order-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lp-order-modal.is-open { display: flex; }
.lp-order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(7px);
}
.lp-order-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1180px, 96vw);
  max-height: 92vh;
  overflow: auto;
  border-radius: 24px;
  padding: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%);
  box-shadow: 0 30px 90px rgba(0,0,0,.36);
}
.lp-order-modal__close {
  position: absolute;
  right: 18px;
  top: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1A1A1A;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  border: 0;
}
.lp-order-modal__head { margin-bottom: 20px; padding-right: 44px; }
.lp-order-modal__eyebrow {
  color: #E30613;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 8px;
}
.lp-order-modal__head h2 { font-size: clamp(28px, 3vw, 42px); font-weight: 900; margin: 0 0 6px; }
.lp-order-modal__head p { color: #666; margin: 0; }
body.lp-modal-open { overflow: hidden; }

@media (max-width: 900px) {
  .lp-features-grid { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .lp-order-form-shell--light .lp-order-cards { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
  .lp-features-grid { grid-template-columns: 1fr !important; }
  .lp-clients-grid { grid-template-columns: repeat(auto-fit, minmax(96px, 96px)) !important; gap: 10px !important; }
  .lp-client-logo { width: 96px !important; height: 96px !important; padding: 12px !important; border-radius: 14px !important; }
  .lp-order-modal { padding: 12px; }
  .lp-order-modal__dialog { padding: 20px; border-radius: 18px; }
}


/* === LOCALPRINT v10: клиенты, контакты, popup === */

/* Клиенты: крупная сетка по референсу, без срезания и визуального шума */
#clients .lp-clients-grid,
.lp-clients-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border: 1px solid rgba(0,0,0,.10) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  background: #fff !important;
  box-shadow: 0 18px 46px rgba(0,0,0,.055) !important;
}
#clients .lp-client-logo,
.lp-client-logo {
  width: 100% !important;
  height: 210px !important;
  min-height: 210px !important;
  padding: 34px 42px !important;
  border-radius: 0 !important;
  border: 0 !important;
  border-right: 1px solid rgba(0,0,0,.10) !important;
  border-bottom: 1px solid rgba(0,0,0,.10) !important;
  background: #fff !important;
  box-shadow: none !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
#clients .lp-client-logo:nth-child(4n),
.lp-client-logo:nth-child(4n) { border-right: 0 !important; }
#clients .lp-client-logo img,
.lp-client-logo img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 auto !important;
  filter: none !important;
  opacity: .98 !important;
  transform: none !important;
}
#clients .lp-client-logo:hover img,
.lp-client-logo:hover img { opacity: 1 !important; transform: scale(1.02) !important; }
#clients .lp-client-logo:nth-child(n+13),
.lp-client-logo:nth-child(n+13) { display: none !important; }
@media (max-width: 980px) {
  #clients .lp-clients-grid,
  .lp-clients-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  #clients .lp-client-logo,
  .lp-client-logo { height: 170px !important; min-height: 170px !important; padding: 28px 32px !important; }
  #clients .lp-client-logo:nth-child(4n),
  .lp-client-logo:nth-child(4n) { border-right: 1px solid rgba(0,0,0,.10) !important; }
  #clients .lp-client-logo:nth-child(2n),
  .lp-client-logo:nth-child(2n) { border-right: 0 !important; }
}
@media (max-width: 560px) {
  #clients .lp-clients-grid,
  .lp-clients-grid { grid-template-columns: 1fr !important; border-radius: 16px !important; }
  #clients .lp-client-logo,
  .lp-client-logo { height: 150px !important; min-height: 150px !important; padding: 26px 30px !important; border-right: 0 !important; }
  #clients .lp-client-logo:nth-child(n+9),
  .lp-client-logo:nth-child(n+9) { display: none !important; }
}

/* Контакты: форма как на услуге, но аккуратно на светлом фоне и без разъезда */
.lp-contacts-form-wrap {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 26px !important;
  align-items: start !important;
}
.lp-contacts-form-text {
  max-width: 980px !important;
  margin: 0 auto !important;
  text-align: left !important;
}
.lp-contacts-form-text .section-subtitle { margin-bottom: 18px !important; }
.lp-contacts-form-steps {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: 18px !important;
}
.lp-contacts-form-steps li {
  background: #fff !important;
  border: 1px solid rgba(0,0,0,.07) !important;
  border-radius: 14px !important;
  padding: 12px 12px !important;
  font-size: 13.5px !important;
  line-height: 1.35 !important;
  box-shadow: 0 8px 22px rgba(0,0,0,.04) !important;
}
.lp-contacts-form-box.lp-order-form-shell--light {
  width: 100% !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.lp-contacts-form-box.lp-order-form-shell--light .lp-order-cards {
  display: grid !important;
  grid-template-columns: minmax(260px,.95fr) minmax(300px,1.15fr) minmax(260px,.95fr) !important;
  gap: 18px !important;
  align-items: stretch !important;
}
.lp-contacts-form-box.lp-order-form-shell--light .lp-order-card {
  min-width: 0 !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 1px solid rgba(0,0,0,.08) !important;
  box-shadow: 0 16px 42px rgba(0,0,0,.07) !important;
}
.lp-contacts-form-box.lp-order-form-shell--light .lp-order-card input[type="file"] {
  width: 100% !important;
  min-height: 74px !important;
  background: #F6F6F6 !important;
  border: 1px dashed rgba(0,0,0,.22) !important;
  color: #1A1A1A !important;
}
@media (max-width: 1100px) {
  .lp-contacts-form-steps { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .lp-contacts-form-box.lp-order-form-shell--light .lp-order-cards { grid-template-columns: 1fr !important; }
}
@media (max-width: 560px) {
  .lp-contacts-form-steps { grid-template-columns: 1fr !important; }
}

/* Popup: меньше, полупрозрачный фон, компактная форма */
.lp-order-modal__backdrop {
  background: rgba(10,10,10,.56) !important;
  backdrop-filter: blur(10px) saturate(110%) !important;
}
.lp-order-modal__dialog {
  width: min(860px, 94vw) !important;
  max-height: 90vh !important;
  padding: 22px !important;
  border-radius: 22px !important;
  background: rgba(255,255,255,.92) !important;
  border: 1px solid rgba(255,255,255,.55) !important;
  box-shadow: 0 28px 86px rgba(0,0,0,.38) !important;
  backdrop-filter: blur(16px) !important;
}
.lp-order-modal__head { margin-bottom: 14px !important; }
.lp-order-modal__eyebrow { font-size: 11px !important; margin-bottom: 5px !important; }
.lp-order-modal__head h2 { font-size: 30px !important; margin-bottom: 3px !important; }
.lp-order-modal__head p { font-size: 14px !important; }
.lp-order-modal__close {
  width: 34px !important;
  height: 34px !important;
  right: 14px !important;
  top: 12px !important;
  font-size: 24px !important;
}
.lp-order-form-shell--modal .lp-order-cards {
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
}
.lp-order-form-shell--modal .lp-order-card {
  padding: 18px !important;
  border-radius: 16px !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.08) !important;
}
.lp-order-form-shell--modal .lp-order-card__title {
  font-size: 14px !important;
  margin-bottom: 14px !important;
  padding-bottom: 9px !important;
}
.lp-order-form-shell--modal .lp-order-card p { margin-bottom: 10px !important; }
.lp-order-form-shell--modal .lp-order-card label { font-size: 13px !important; }
.lp-order-form-shell--modal .lp-order-card input[type="text"],
.lp-order-form-shell--modal .lp-order-card input[type="email"],
.lp-order-form-shell--modal .lp-order-card input[type="tel"],
.lp-order-form-shell--modal .lp-order-card select,
.lp-order-form-shell--modal .lp-order-card textarea {
  min-height: 40px !important;
  padding: 9px 11px !important;
  font-size: 13.5px !important;
}
.lp-order-form-shell--modal .lp-order-card textarea {
  min-height: 132px !important;
  max-height: 170px !important;
}
.lp-order-form-shell--modal .lp-order-card--file {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 14px 18px !important;
  align-items: end !important;
}
.lp-order-form-shell--modal .lp-order-card--file .lp-file-field {
  grid-column: 1 / 2 !important;
}
.lp-order-form-shell--modal .lp-order-card--file .lp-privacy-inline,
.lp-order-form-shell--modal .lp-order-card--file .wpcf7-acceptance {
  grid-column: 1 / 2 !important;
  margin: 0 !important;
}
.lp-order-form-shell--modal .lp-order-card--file p:has(input[type="submit"]) {
  grid-column: 2 / 3 !important;
  grid-row: 1 / span 2 !important;
  align-self: end !important;
  margin: 0 !important;
}
.lp-order-form-shell--modal .lp-order-card input[type="file"] {
  min-height: 54px !important;
  padding: 11px !important;
}
.lp-order-form-shell--modal .lp-order-card input[type="submit"] {
  min-width: 170px !important;
  padding: 13px 18px !important;
}
@media (max-width: 760px) {
  .lp-order-form-shell--modal .lp-order-cards { grid-template-columns: 1fr !important; }
  .lp-order-form-shell--modal .lp-order-card--file { display: block !important; }
  .lp-order-form-shell--modal .lp-order-card--file p:has(input[type="submit"]) { margin-top: 12px !important; }
}

/* === LOCALPRINT v12: эталонная страница услуги «Листовки» === */
.lp-service-benefits-section{padding-top:38px!important;padding-bottom:30px!important;background:#fff!important;}
.lp-service-benefits-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;}
.lp-service-benefit-card{display:flex;gap:16px;align-items:flex-start;padding:22px;border:1px solid rgba(0,0,0,.07);border-radius:18px;background:#fff;box-shadow:0 14px 36px rgba(0,0,0,.055);}
.lp-service-benefit-icon{width:54px;height:54px;border-radius:16px;background:linear-gradient(135deg,#E30613,#B8000D);display:inline-flex;align-items:center;justify-content:center;flex:0 0 auto;box-shadow:0 14px 30px rgba(227,6,19,.22);}
.lp-service-benefit-icon svg{width:28px;height:28px;fill:none;stroke:#fff;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round;}
.lp-service-benefit-card h3{font-size:17px;font-weight:850;margin:0 0 6px;letter-spacing:-.2px;}
.lp-service-benefit-card p{font-size:14px;line-height:1.5;color:#666;margin:0;}

.lp-service-text-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;}
.lp-service-text-card{padding:24px;border-radius:20px;background:#fff;border:1px solid rgba(0,0,0,.07);box-shadow:0 14px 38px rgba(0,0,0,.045);}
.lp-service-text-card h2{font-size:22px;font-weight:900;margin:0 0 12px;letter-spacing:-.35px;}
.lp-service-text-card p{font-size:15px;line-height:1.7;color:#333;margin:0;}

.lp-service-spec-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;max-width:980px;margin-left:auto;margin-right:auto;}
.lp-service-spec{background:#fff;border:1px solid rgba(0,0,0,.07);border-radius:18px;padding:20px 22px;box-shadow:0 14px 34px rgba(0,0,0,.045);}
.lp-service-spec span{display:block;font-size:12px;color:#777;text-transform:uppercase;letter-spacing:.06em;margin-bottom:6px;font-weight:750;}
.lp-service-spec strong{display:block;font-size:17px;color:#1A1A1A;font-weight:850;}

.lp-req-grid--service .lp-req-item{background:#fff!important;border:1px solid rgba(0,0,0,.07)!important;box-shadow:0 14px 34px rgba(0,0,0,.05)!important;border-radius:18px!important;padding:22px!important;}
.lp-req-grid--service .lp-req-icon{width:54px;height:54px;border-radius:16px;background:linear-gradient(135deg,#fff0f0,#ffe2e4);color:#E30613;display:flex;align-items:center;justify-content:center;flex:0 0 auto;}
.lp-req-grid--service .lp-req-icon svg{width:30px;height:30px;fill:none;stroke:currentColor;stroke-width:2.3;stroke-linecap:round;stroke-linejoin:round;}

.lp-service-gallery{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;}
.lp-service-gallery__item{height:190px;border-radius:20px;overflow:hidden;background:#fff;border:1px solid rgba(0,0,0,.07);box-shadow:0 14px 34px rgba(0,0,0,.055);}
.lp-service-gallery__item img{width:100%;height:100%;object-fit:cover;transition:transform .25s ease;}
.lp-service-gallery__item:hover img{transform:scale(1.04);}

.lp-faq-section{background:#fff!important;}
.lp-faq--modern{max-width:900px;margin-left:auto;margin-right:auto;display:grid;gap:12px;}
.lp-faq--modern .lp-faq-item{border:1px solid rgba(0,0,0,.08)!important;border-radius:18px!important;background:#fff!important;box-shadow:0 12px 32px rgba(0,0,0,.045)!important;overflow:hidden!important;}
.lp-faq--modern .lp-faq-q{padding:20px 22px!important;font-size:16px!important;font-weight:850!important;background:#fff!important;color:#1A1A1A!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:18px!important;}
.lp-faq--modern .lp-faq-q:hover{background:#fffafa!important;color:#E30613!important;}
.lp-faq--modern .lp-faq-toggle{width:34px;height:34px;border-radius:999px;background:#E30613;box-shadow:0 10px 22px rgba(227,6,19,.20);position:relative;flex:0 0 auto;}
.lp-faq--modern .lp-faq-toggle:before,.lp-faq--modern .lp-faq-toggle:after{content:'';position:absolute;left:50%;top:50%;background:#fff;border-radius:2px;transform:translate(-50%,-50%);transition:opacity .2s ease;}
.lp-faq--modern .lp-faq-toggle:before{width:14px;height:2px;}
.lp-faq--modern .lp-faq-toggle:after{width:2px;height:14px;}
.lp-faq--modern .lp-faq-item.open .lp-faq-toggle:after{opacity:0;}
.lp-faq--modern .lp-faq-a-inner{padding:0 22px 22px!important;font-size:15px!important;line-height:1.75!important;color:#555!important;}
.lp-faq--modern .lp-faq-item.open .lp-faq-q{color:#E30613!important;}

.lp-related-services-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;max-width:980px;margin-left:auto;margin-right:auto;}
.lp-related-service-card{display:grid;grid-template-columns:110px 1fr;gap:18px;align-items:center;background:#fff;border:1px solid rgba(0,0,0,.07);border-radius:20px;overflow:hidden;text-decoration:none;color:#1A1A1A!important;box-shadow:0 14px 36px rgba(0,0,0,.055);transition:transform .2s ease,box-shadow .2s ease;}
.lp-related-service-card:hover{transform:translateY(-3px);box-shadow:0 18px 44px rgba(0,0,0,.09);}
.lp-related-service-card img{width:110px;height:92px;object-fit:cover;}
.lp-related-service-card strong{display:block;font-size:17px;font-weight:900;margin-bottom:4px;}
.lp-related-service-card span{display:block;font-size:13px;color:#666;}

@media(max-width:900px){
  .lp-service-benefits-grid,.lp-service-text-grid,.lp-service-spec-grid,.lp-related-services-grid{grid-template-columns:1fr;}
  .lp-service-gallery{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:560px){
  .lp-service-gallery{grid-template-columns:1fr;}
  .lp-related-service-card{grid-template-columns:92px 1fr;}
  .lp-related-service-card img{width:92px;height:82px;}
  .lp-faq--modern .lp-faq-q{font-size:15px!important;padding:18px!important;}
}

/* === LOCALPRINT v13: светлый Hero страницы услуги «Листовки» === */
body.page-template-services .lp-breadcrumb-bar,
body.page-template-template-services .lp-breadcrumb-bar {
  background: #fff;
}
.lp-svc-hero {
  background: linear-gradient(135deg, #fff 0%, #f8f8f8 52%, #fff4f3 100%) !important;
  color: #1A1A1A !important;
  padding: 38px 0 34px !important;
  border-bottom: 1px solid rgba(0,0,0,.06);
  overflow: hidden;
}
.lp-svc-hero .container {
  max-width: 1240px;
}
.lp-svc-hero__inner {
  grid-template-columns: minmax(420px, .95fr) minmax(420px, 1.05fr) !important;
  gap: 44px !important;
  align-items: center !important;
}
.lp-svc-hero__content {
  padding: 8px 0 12px;
}
.lp-svc-hero .lp-page-hero__eyebrow {
  color: #E30613 !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin-bottom: 12px !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  letter-spacing: .1em !important;
}
.lp-svc-hero .lp-page-hero__title {
  color: #121826 !important;
  font-size: clamp(36px, 4.4vw, 60px) !important;
  line-height: 1.02 !important;
  font-weight: 950 !important;
  letter-spacing: -1.45px !important;
  max-width: 620px;
  margin-bottom: 18px !important;
}
.lp-svc-hero .lp-page-hero__sub {
  color: #333b49 !important;
  font-size: clamp(16px, 1.45vw, 19px) !important;
  line-height: 1.62 !important;
  max-width: 560px !important;
  margin-bottom: 24px !important;
}
.lp-svc-hero__btns {
  gap: 14px !important;
  margin-bottom: 28px !important;
}
.lp-svc-hero__btns .btn {
  border-radius: 13px !important;
  padding: 15px 24px !important;
  box-shadow: 0 14px 32px rgba(0,0,0,.10);
}
.lp-svc-hero__media {
  position: relative;
}
.lp-svc-hero__media::before {
  content: '';
  position: absolute;
  inset: 18px -24px -18px 26px;
  background: radial-gradient(circle at 70% 35%, rgba(227,6,19,.16), rgba(227,6,19,0) 58%);
  border-radius: 34px;
  z-index: 0;
}
.lp-svc-hero__img {
  position: relative;
  z-index: 1;
  aspect-ratio: 1.45 / 1 !important;
  border-radius: 22px !important;
  box-shadow: 0 22px 60px rgba(0,0,0,.13);
  border: 1px solid rgba(0,0,0,.06);
  object-fit: cover !important;
}
.lp-svc-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 740px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 24px;
  box-shadow: 0 20px 52px rgba(0,0,0,.09), 0 2px 8px rgba(0,0,0,.04);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.lp-svc-hero-fact {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 20px 22px;
  min-width: 0;
  transition: background .15s;
}
.lp-svc-hero-fact:hover {
  background: rgba(227,6,19,.03);
}
.lp-svc-hero-fact + .lp-svc-hero-fact {
  border-left: 1px solid rgba(0,0,0,.07);
}
.lp-svc-hero-fact__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #E30613;
  background: linear-gradient(135deg, #fff0f0, #ffd8db);
  box-shadow: 0 4px 12px rgba(227,6,19,.14);
}
.lp-svc-hero-fact__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lp-svc-hero-fact strong {
  display: block;
  font-size: 14.5px;
  line-height: 1.2;
  font-weight: 800;
  color: #111;
  letter-spacing: -.2px;
}
.lp-svc-hero-fact small {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.3;
  color: #777;
  font-weight: 400;
}
.lp-service-benefits-section {
  padding-top: 34px !important;
}
.lp-service-benefit-card {
  min-height: 150px;
}
@media (max-width: 980px) {
  .lp-svc-hero__inner { grid-template-columns: 1fr !important; gap: 26px !important; }
  .lp-svc-hero__media { max-width: 620px; }
  .lp-svc-hero-facts { grid-template-columns: 1fr; max-width: 100%; }
  .lp-svc-hero-fact + .lp-svc-hero-fact { border-left: 0; border-top: 1px solid rgba(0,0,0,.08); }
}
@media (max-width: 640px) {
  .lp-svc-hero { padding: 30px 0 26px !important; }
  .lp-svc-hero .lp-page-hero__title { font-size: 34px !important; letter-spacing: -.8px !important; }
  .lp-svc-hero__media { display: block !important; }
  .lp-svc-hero__img { aspect-ratio: 1.35/1 !important; border-radius: 18px !important; }
  .lp-svc-hero__btns .btn { width: 100%; }
}


/* === v14: оформление характеристик, калькулятора и инфо-карточек услуги === */
.lp-service-text-grid{
  align-items:stretch;
}
.lp-service-text-card{
  min-height:260px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}
.lp-service-text-card h2{
  min-height:58px;
  margin-bottom:14px;
  line-height:1.18;
}
.lp-service-text-card p{
  margin:0;
}
.lp-service-text-card--with-ill{
  position:relative;
  overflow:hidden;
  padding-bottom:104px;
}
.lp-service-text-card__content{
  position:relative;
  z-index:2;
}
.lp-service-text-card__ill{
  position:absolute;
  right:16px;
  bottom:12px;
  width:112px;
  height:92px;
  border-radius:28px;
  background:linear-gradient(135deg, rgba(227,6,19,.08), rgba(227,6,19,.16));
  display:flex;
  align-items:center;
  justify-content:center;
}
.lp-service-text-card__ill svg{
  width:82px;
  height:82px;
  fill:none;
  stroke:#E30613;
  stroke-width:3;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.lp-service-spec{
  display:flex;
  align-items:center;
  gap:16px;
  min-height:92px;
}
.lp-service-spec__icon{
  width:48px;
  height:48px;
  border-radius:14px;
  background:#FDECEA;
  color:#E30613;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 48px;
}
.lp-service-spec__icon svg{
  width:27px;
  height:27px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.lp-calc-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(227,6,19,.08), transparent 28%),
    radial-gradient(circle at 78% 78%, rgba(227,6,19,.09), transparent 30%),
    linear-gradient(180deg,#fff7f7 0%,#fff1f1 100%) !important;
  border-top:1px solid rgba(227,6,19,.06);
  border-bottom:1px solid rgba(227,6,19,.08);
}
.lp-calc-section::before,
.lp-calc-section::after{
  content:'₽';
  position:absolute;
  font-weight:900;
  color:rgba(227,6,19,.055);
  line-height:1;
  pointer-events:none;
  user-select:none;
}
.lp-calc-section::before{
  left:7%;
  top:14%;
  font-size:150px;
  transform:rotate(-10deg);
}
.lp-calc-section::after{
  right:8%;
  bottom:8%;
  font-size:170px;
  transform:rotate(8deg);
}
.lp-calc-section .container{
  position:relative;
  z-index:1;
}
.lp-calc-section .section-title{
  font-size:clamp(28px,3vw,42px);
  font-weight:900;
  letter-spacing:-.7px;
}
.lp-calc-section .section-title::after{
  content:'';
  display:block;
  width:56px;
  height:4px;
  border-radius:10px;
  background:#E30613;
  margin:12px auto 0;
}
.lp-calc-section .section-subtitle{
  margin-bottom:28px;
  color:#5f6670;
}
.lp-calc-box--featured{
  max-width:980px;
  margin:0 auto;
  padding:34px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:24px;
  box-shadow:0 26px 70px rgba(65,28,28,.10);
  position:relative;
  overflow:hidden;
}
.lp-calc-box--featured::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:inherit;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
  pointer-events:none;
}
.lp-calc-note--featured{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:max-content;
  max-width:100%;
  margin:24px auto 0;
  padding:12px 18px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(227,6,19,.16);
  box-shadow:0 10px 30px rgba(227,6,19,.08);
  color:#2B2B2B;
  font-weight:700;
  font-size:14px;
}
.lp-calc-note__icon{
  width:28px;
  height:28px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#FDECEA;
  color:#E30613;
  font-weight:900;
  flex:0 0 28px;
}
@media (max-width: 900px){
  .lp-service-text-card{min-height:auto;}
  .lp-service-text-card h2{min-height:auto;}
  .lp-service-text-card--with-ill{padding-bottom:92px;}
  .lp-calc-box--featured{padding:22px;border-radius:18px;}
  .lp-calc-section::before{font-size:100px;left:-8%;top:8%;}
  .lp-calc-section::after{font-size:110px;right:-6%;}
}
@media (max-width: 640px){
  .lp-service-text-card--with-ill{padding-bottom:84px;}
  .lp-service-text-card__ill{width:92px;height:76px;right:12px;}
  .lp-service-text-card__ill svg{width:64px;height:64px;}
  .lp-service-spec{min-height:82px;gap:12px;}
  .lp-service-spec__icon{width:42px;height:42px;flex-basis:42px;}
  .lp-calc-note--featured{width:100%;border-radius:14px;text-align:left;justify-content:flex-start;}
}

/* === LOCALPRINT v15: финальная правка hero услуги, калькулятора и карточек === */
/* Hero страницы услуги: светлая подложка с изображением на всю ширину */
.lp-svc-hero.lp-svc-hero--image-bg{
  position:relative;
  min-height:390px;
  padding:34px 0 28px !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 34%, rgba(255,255,255,.72) 56%, rgba(255,255,255,.24) 100%),
    var(--lp-svc-hero-bg) center right / cover no-repeat !important;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.lp-svc-hero.lp-svc-hero--image-bg::after{
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  background:radial-gradient(circle at 78% 48%, rgba(227,6,19,.12), transparent 38%);
}
.lp-svc-hero.lp-svc-hero--image-bg .container{position:relative;z-index:1;}
.lp-svc-hero.lp-svc-hero--image-bg .lp-svc-hero__inner{
  display:block !important;
  max-width:1240px;
}
.lp-svc-hero.lp-svc-hero--image-bg .lp-svc-hero__content{
  width:min(560px,100%);
  padding:18px 0 8px;
}
.lp-svc-hero.lp-svc-hero--image-bg .lp-svc-hero__media{display:none !important;}
.lp-svc-hero.lp-svc-hero--image-bg .lp-page-hero__title{
  font-size:clamp(34px,4.4vw,56px) !important;
  line-height:1.03 !important;
  margin-bottom:14px !important;
}
.lp-svc-hero.lp-svc-hero--image-bg .lp-page-hero__sub{max-width:520px!important;margin-bottom:22px!important;}
.lp-svc-hero.lp-svc-hero--image-bg .lp-svc-hero__btns{margin-bottom:24px!important;}
.lp-svc-hero.lp-svc-hero--image-bg .lp-svc-hero-facts{
  max-width:720px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.90);
  box-shadow:0 16px 42px rgba(0,0,0,.08);
  border:1px solid rgba(0,0,0,.08);
}
.lp-svc-hero.lp-svc-hero--image-bg .lp-svc-hero-fact{
  min-width:0;
  padding:14px 16px;
  display:grid;
  grid-template-columns:38px minmax(0,1fr);
  gap:12px;
  align-items:center;
}
.lp-svc-hero.lp-svc-hero--image-bg .lp-svc-hero-fact__icon{
  width:38px;height:38px;border-radius:12px;
}
.lp-svc-hero.lp-svc-hero--image-bg .lp-svc-hero-fact strong{
  font-size:14px;line-height:1.15;display:block;
}
.lp-svc-hero.lp-svc-hero--image-bg .lp-svc-hero-fact small{
  font-size:11.5px;line-height:1.25;display:block;
}

/* Верхние 3 инфо-карточки: ровные заголовки + иллюстрации */
.lp-service-text-grid{align-items:stretch!important;}
.lp-service-text-card{
  position:relative;
  min-height:230px!important;
  padding:26px 24px 102px!important;
  overflow:hidden;
}
.lp-service-text-card h2{
  min-height:52px!important;
  display:flex;
  align-items:flex-start;
  margin:0 0 14px!important;
}
.lp-service-text-card p{font-size:15px!important;line-height:1.62!important;}
.lp-service-text-card__ill{
  right:18px!important;
  bottom:16px!important;
  width:108px!important;
  height:86px!important;
  border-radius:26px!important;
  opacity:.95;
}
.lp-service-text-card__ill svg{width:76px!important;height:76px!important;}

/* Характеристики: аккуратные иконки, карточки одной высоты */
.lp-service-spec-grid{gap:16px!important;}
.lp-service-spec{
  min-height:82px!important;
  padding:17px 20px!important;
  display:flex!important;
  align-items:center!important;
  gap:14px!important;
}
.lp-service-spec__icon{width:46px!important;height:46px!important;flex:0 0 46px!important;}
.lp-service-spec span:not(.lp-service-spec__icon){font-size:11px!important;margin-bottom:4px!important;}
.lp-service-spec strong{font-size:16px!important;line-height:1.25!important;}

/* Калькулятор: отдельная подложка, водяные знаки ₽ и компактность */
.lp-calc-section{
  padding:56px 0 48px!important;
  background:
    radial-gradient(circle at 18% 18%, rgba(227,6,19,.10), transparent 25%),
    radial-gradient(circle at 88% 76%, rgba(227,6,19,.09), transparent 30%),
    linear-gradient(180deg,#fff6f6 0%,#ffeded 100%) !important;
}
.lp-calc-section::before{font-size:138px!important;left:6%!important;top:15%!important;color:rgba(227,6,19,.075)!important;}
.lp-calc-section::after{font-size:150px!important;right:7%!important;bottom:6%!important;color:rgba(227,6,19,.075)!important;}
.lp-calc-section .section-title{
  font-size:clamp(25px,2.5vw,34px)!important;
  margin-bottom:6px!important;
}
.lp-calc-section .section-subtitle{font-size:15px!important;margin-bottom:22px!important;}
.lp-calc-box--featured{
  max-width:860px!important;
  padding:22px 26px!important;
  border-radius:20px!important;
  background:#fff!important;
  box-shadow:0 20px 56px rgba(70,22,22,.12)!important;
}
.lp-calc-box--featured .calc-container,
.lp-calc-box--featured .ccb-wrapper,
.lp-calc-box--featured .ccb-main-container,
.lp-calc-box--featured .calc-fields,
.lp-calc-box--featured form{
  font-size:14px!important;
}
.lp-calc-box--featured input,
.lp-calc-box--featured select,
.lp-calc-box--featured textarea,
.lp-calc-box--featured button{
  min-height:34px!important;
  font-size:13px!important;
}
.lp-calc-box--featured *{box-sizing:border-box;}
.lp-calc-note--featured{
  margin-top:16px!important;
  padding:10px 16px!important;
  font-size:14px!important;
  background:#fff!important;
  color:#1A1A1A!important;
  border:1px solid rgba(227,6,19,.22)!important;
  box-shadow:0 10px 28px rgba(227,6,19,.12)!important;
}
.lp-calc-note--featured .lp-calc-note__icon{background:#E30613!important;color:#fff!important;}

@media(max-width:900px){
  .lp-svc-hero.lp-svc-hero--image-bg{
    background:
      linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88)),
      var(--lp-svc-hero-bg) center / cover no-repeat !important;
  }
  .lp-svc-hero.lp-svc-hero--image-bg .lp-svc-hero-facts{grid-template-columns:1fr;max-width:100%;}
  .lp-svc-hero.lp-svc-hero--image-bg .lp-svc-hero-fact + .lp-svc-hero-fact{border-left:0;border-top:1px solid rgba(0,0,0,.08);}
  .lp-service-text-card{min-height:auto!important;padding-bottom:92px!important;}
  .lp-calc-box--featured{max-width:100%!important;padding:18px!important;}
}
@media(max-width:560px){
  .lp-svc-hero.lp-svc-hero--image-bg{padding:28px 0 24px!important;}
  .lp-svc-hero.lp-svc-hero--image-bg .lp-page-hero__title{font-size:32px!important;}
  .lp-calc-section{padding:44px 0 40px!important;}
}


/* === LOCALPRINT v16: service page polish === */
/* Hero facts: fixed equal cards, no broken wrapping */
.lp-svc-hero.lp-svc-hero--image-bg .lp-svc-hero-facts{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:10px!important;
  max-width:640px!important;
  padding:0!important;
  background:transparent!important;
  box-shadow:none!important;
  border:0!important;
}
.lp-svc-hero.lp-svc-hero--image-bg .lp-svc-hero-fact{
  min-width:0!important;
  min-height:72px!important;
  padding:12px 14px!important;
  border:1px solid rgba(227,6,19,.10)!important;
  border-radius:14px!important;
  background:rgba(255,255,255,.90)!important;
  box-shadow:0 10px 24px rgba(0,0,0,.06)!important;
  display:grid!important;
  grid-template-columns:34px 1fr!important;
  align-items:center!important;
  gap:10px!important;
}
.lp-svc-hero.lp-svc-hero--image-bg .lp-svc-hero-fact + .lp-svc-hero-fact{border-left:1px solid rgba(227,6,19,.10)!important;}
.lp-svc-hero.lp-svc-hero--image-bg .lp-svc-hero-fact__icon{
  width:34px!important;height:34px!important;flex:0 0 34px!important;border-radius:10px!important;
  background:#FDECEA!important;color:#E30613!important;
}
.lp-svc-hero.lp-svc-hero--image-bg .lp-svc-hero-fact__icon svg{width:18px!important;height:18px!important;stroke:#E30613!important;fill:none!important;stroke-width:2.2!important;}
.lp-svc-hero.lp-svc-hero--image-bg .lp-svc-hero-fact strong{font-size:13px!important;line-height:1.15!important;margin:0 0 3px!important;white-space:normal!important;}
.lp-svc-hero.lp-svc-hero--image-bg .lp-svc-hero-fact small{font-size:11px!important;line-height:1.25!important;white-space:normal!important;}

/* Three content cards: aligned headings + clear illustration area */
.lp-service-text-grid{
  align-items:stretch!important;
}
.lp-service-text-card{
  display:grid!important;
  grid-template-columns:1fr 104px!important;
  gap:16px!important;
  min-height:210px!important;
  padding:26px 22px!important;
  overflow:hidden!important;
}
.lp-service-text-card__content{display:flex!important;flex-direction:column!important;min-width:0!important;}
.lp-service-text-card h2{
  min-height:54px!important;
  display:flex!important;
  align-items:flex-start!important;
  margin:0 0 12px!important;
  font-size:20px!important;
  line-height:1.15!important;
}
.lp-service-text-card p{font-size:15px!important;line-height:1.62!important;margin:0!important;}
.lp-service-text-card__ill{
  position:relative!important;
  right:auto!important;bottom:auto!important;
  align-self:end!important;
  width:104px!important;height:104px!important;
  border-radius:28px!important;
  display:flex!important;align-items:center!important;justify-content:center!important;
  background:linear-gradient(135deg,#fff1f1,#fff)!important;
  box-shadow:inset 0 0 0 1px rgba(227,6,19,.08)!important;
  opacity:1!important;
}
.lp-service-text-card__ill svg{width:72px!important;height:72px!important;stroke:#E30613!important;fill:none!important;stroke-width:2!important;}

/* Characteristics: larger SVG, more readable */
.lp-service-spec__icon{width:50px!important;height:50px!important;flex-basis:50px!important;border-radius:14px!important;}
.lp-service-spec__icon svg{width:25px!important;height:25px!important;}

/* Calculator: lower height, narrower vertical borders, still emphasized */
.lp-calc-section{
  padding:34px 0 32px!important;
  background:
    radial-gradient(circle at 16% 18%, rgba(227,6,19,.075), transparent 22%),
    radial-gradient(circle at 88% 76%, rgba(227,6,19,.065), transparent 26%),
    linear-gradient(180deg,#fff8f8 0%,#fff1f1 100%) !important;
}
.lp-calc-section::before{font-size:112px!important;left:8%!important;top:18%!important;color:rgba(227,6,19,.055)!important;}
.lp-calc-section::after{font-size:126px!important;right:8%!important;bottom:4%!important;color:rgba(227,6,19,.055)!important;}
.lp-calc-section .section-title{font-size:clamp(23px,2.2vw,30px)!important;margin-bottom:4px!important;}
.lp-calc-section .section-title::after{width:42px!important;height:3px!important;margin-top:8px!important;}
.lp-calc-section .section-subtitle{font-size:14px!important;margin-bottom:14px!important;}
.lp-calc-box--featured{
  max-width:760px!important;
  margin-top:14px!important;
  padding:18px 20px!important;
  border-radius:18px!important;
  box-shadow:0 14px 38px rgba(70,22,22,.10)!important;
}
.lp-calc-box--featured input,
.lp-calc-box--featured select,
.lp-calc-box--featured textarea,
.lp-calc-box--featured button{min-height:31px!important;font-size:12.5px!important;}
.lp-calc-box--featured label,
.lp-calc-box--featured .ccb-field-title,
.lp-calc-box--featured .calc-item-title{font-size:12.5px!important;}
.lp-calc-actions{display:flex!important;justify-content:center!important;margin:12px 0 0!important;}
.lp-calc-order-btn{min-width:220px!important;padding:11px 20px!important;border-radius:10px!important;font-size:14px!important;}
.lp-calc-note--featured{
  display:flex!important;align-items:center!important;justify-content:center!important;gap:8px!important;
  width:max-content!important;max-width:100%!important;
  margin:12px auto 0!important;
  padding:8px 14px!important;
  font-size:13px!important;
  border-radius:999px!important;
}
.lp-calc-note__icon{width:22px!important;height:22px!important;font-size:12px!important;}

@media(max-width:900px){
  .lp-svc-hero.lp-svc-hero--image-bg .lp-svc-hero-facts{grid-template-columns:1fr!important;max-width:100%!important;}
  .lp-svc-hero.lp-svc-hero--image-bg .lp-svc-hero-fact + .lp-svc-hero-fact{border-top:0!important;}
  .lp-service-text-card{grid-template-columns:1fr!important;min-height:0!important;padding:22px!important;}
  .lp-service-text-card h2{min-height:0!important;}
  .lp-service-text-card__ill{width:92px!important;height:92px!important;justify-self:end!important;}
  .lp-calc-box--featured{max-width:100%!important;padding:16px!important;}
  .lp-calc-section{padding:30px 0!important;}
}


/* === LOCALPRINT v17: правки карточек, калькулятора и телефона === */

/* Карточки с пояснениями: иллюстрации как в согласованном визуале */
.lp-service-text-card--with-ill{
  position:relative!important;
  display:grid!important;
  grid-template-columns:1fr 132px!important;
  gap:18px!important;
  align-items:stretch!important;
  min-height:190px!important;
  overflow:hidden!important;
}
.lp-service-text-card__content{
  display:flex!important;
  flex-direction:column!important;
}
.lp-service-text-card__content h2{
  min-height:58px!important;
  display:flex!important;
  align-items:flex-start!important;
  margin-bottom:10px!important;
}
.lp-service-text-card__content p{
  flex:1!important;
}
.lp-service-text-card__ill{
  align-self:end!important;
  justify-self:end!important;
  width:132px!important;
  height:118px!important;
  right:auto!important;
  bottom:auto!important;
  opacity:1!important;
  transform:none!important;
}
.lp-service-text-card__ill svg{
  width:132px!important;
  height:118px!important;
  overflow:visible!important;
  filter:drop-shadow(0 16px 20px rgba(0,0,0,.10));
}
.lp-service-text-card__ill--promo,
.lp-service-text-card__ill--formats,
.lp-service-text-card__ill--print{
  background:transparent!important;
  border:0!important;
}

/* Калькулятор: кнопка в итоговом блоке */
.lp-calc-actions--inside-summary{
  display:flex!important;
  justify-content:stretch!important;
  width:100%!important;
  margin:14px 0 0!important;
}
.lp-calc-actions--inside-summary .lp-calc-order-btn{
  width:100%!important;
  min-width:0!important;
  padding:12px 18px!important;
  border-radius:10px!important;
  font-size:14px!important;
}

/* Если JS не успел перенести — кнопка не должна раздувать блок */
.lp-calc-actions:not(.lp-calc-actions--inside-summary){
  margin:10px auto 0!important;
  max-width:280px!important;
}

/* Поле телефона во всех формах */
.wpcf7 .lp-phone-field{
  margin:0 0 10px!important;
}
.wpcf7 .lp-phone-field input[type="tel"]{
  width:100%!important;
  min-height:44px!important;
  border:1px solid rgba(255,255,255,.14);
  border-radius:10px;
  padding:10px 12px;
}
.lp-order-form-shell .lp-phone-field input[type="tel"]{
  background:rgba(255,255,255,.06)!important;
  color:#fff!important;
  border-color:rgba(255,255,255,.16)!important;
}
.lp-order-form-shell .lp-phone-field input[type="tel"]::placeholder{
  color:rgba(255,255,255,.45)!important;
}
.lp-contacts-form-box .lp-phone-field input[type="tel"],
.wpcf7 .lp-phone-field input[type="tel"]{
  background:#fff;
  color:#1A1A1A;
  border:1px solid #D8D8D8;
}

/* Дополнительная мобильная нормализация */
@media(max-width:900px){
  .lp-service-text-card--with-ill{
    grid-template-columns:1fr!important;
    min-height:0!important;
    padding-bottom:18px!important;
  }
  .lp-service-text-card__content h2{
    min-height:0!important;
  }
  .lp-service-text-card__ill{
    width:116px!important;
    height:100px!important;
    margin-left:auto!important;
  }
  .lp-service-text-card__ill svg{
    width:116px!important;
    height:100px!important;
  }
}


/* === LOCALPRINT FINAL: калькулятор — кнопка внутри итогового расчёта + выравнивание высот === */

/* Контейнер калькулятора — flex-строка, чтобы дочерние блоки растягивались по высоте */
.lp-calc-box--featured{
  display:block!important;
}
@media(min-width: 768px){
  /* Ищем внутренний двухколоночный враппер плагина и делаем его flex */
  .lp-calc-box--featured .calc-container,
  .lp-calc-box--featured .ccb-wrapper,
  .lp-calc-box--featured .ccb-main-container,
  .lp-calc-box--featured form{
    display:flex!important;
    flex-wrap:wrap!important;
    align-items:stretch!important;
  }
  /* Левый блок (поля) и правый блок (итог) — одинаковая высота через align-self:stretch */
  .lp-calc-box--featured .lp-calc-equal-left,
  .lp-calc-box--featured .lp-calc-equal-right{
    align-self:stretch!important;
    display:flex!important;
    flex-direction:column!important;
  }
}

/* Итоговый блок — flex-колонка, кнопка прижата к низу */
.lp-calc-box--featured .lp-calc-summary-card{
  display:flex!important;
  flex-direction:column!important;
  align-self:stretch!important;
  height:100%!important;
}

/* Кнопка внутри итогового блока — растянута на всю ширину, прижата к низу */
.lp-calc-box--featured .lp-calc-summary-card .lp-calc-actions{
  display:flex!important;
  width:100%!important;
  margin:auto 0 0!important;    /* margin-top:auto прижимает к низу */
  padding-top:16px!important;
  border-top:1px solid rgba(15,23,42,.08)!important;
}
.lp-calc-box--featured .lp-calc-summary-card .lp-calc-order-btn{
  width:100%!important;
  min-width:0!important;
  padding:12px 18px!important;
  border-radius:10px!important;
  text-align:center!important;
  justify-content:center!important;
  font-size:14px!important;
}

/* Кнопка снаружи итогового блока (до отработки JS) — скрываем, чтобы не мигала */
.lp-calc-box--featured .lp-calc-actions:not(.lp-calc-actions--inside-summary){
  max-width:260px!important;
  margin:14px auto 0!important;
}

.lp-calc-box--featured .lp-calc-note--featured{
  display:block!important;
  width:100%!important;
  max-width:100%!important;
  margin:14px auto 0!important;
  padding:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
  color:#6b7280!important;
  font-size:13px!important;
  font-weight:700!important;
  line-height:1.35!important;
  text-align:center!important;
}
.lp-calc-box--featured .lp-calc-note--featured .lp-calc-note__icon{
  display:none!important;
}


/* =========================================================
   LOCALPRINT v18 — выверка страницы «Листовки»
   ========================================================= */

/* 1) Политика конфиденциальности: утверждённый вид, без откатов */
.lp-order-section .lp-privacy-inline,
.lp-order-card .lp-privacy-inline,
.wpcf7 .lp-privacy-inline{
  display:flex!important;
  align-items:flex-start!important;
  gap:10px!important;
  margin:8px 0 12px!important;
  color:rgba(255,255,255,.88)!important;
  font-size:13px!important;
  line-height:1.32!important;
  font-weight:600!important;
}
.lp-privacy-inline .wpcf7-acceptance,
.lp-privacy-inline .wpcf7-list-item,
.lp-privacy-inline .wpcf7-list-item label{
  margin:0!important;
  padding:0!important;
  display:inline-flex!important;
  align-items:center!important;
}
.lp-privacy-inline input[type="checkbox"]{
  width:16px!important;
  height:16px!important;
  margin:1px 0 0!important;
  flex:0 0 auto!important;
}
.lp-privacy-text{
  display:block!important;
  color:rgba(255,255,255,.88)!important;
}
.lp-privacy-prefix{
  color:rgba(255,255,255,.88)!important;
}
.lp-privacy-link,
.lp-privacy-text a{
  color:#4da3ff!important;
  text-decoration:underline!important;
  text-underline-offset:2px!important;
  font-weight:700!important;
}
.lp-contacts-form-box .lp-privacy-inline,
.lp-contacts-form-box .lp-privacy-text,
.lp-contacts-form-box .lp-privacy-prefix{
  color:#334155!important;
}

/* 2) Блок преимуществ под Hero: ровная сетка и одинаковые карточки */
.lp-service-benefits-section{
  padding-top:26px!important;
  padding-bottom:28px!important;
}
.lp-service-benefits-grid{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:18px!important;
  align-items:stretch!important;
}
.lp-service-benefit-card{
  height:100%!important;
  min-height:142px!important;
  display:grid!important;
  grid-template-columns:62px 1fr!important;
  gap:16px!important;
  align-items:start!important;
  padding:22px!important;
  border-radius:20px!important;
}
.lp-service-benefit-icon{
  width:62px!important;
  height:62px!important;
  border-radius:18px!important;
}
.lp-service-benefit-icon svg{
  width:32px!important;
  height:32px!important;
}
.lp-service-benefit-card h3{
  min-height:44px!important;
  display:flex!important;
  align-items:flex-start!important;
  margin-bottom:8px!important;
}
.lp-service-benefit-card p{
  min-height:42px!important;
}

/* 3) Три информационные карточки — крупная иллюстрация, как в согласованном визуале */
.lp-service-text-grid{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:22px!important;
  align-items:stretch!important;
}
.lp-service-text-card--with-ill{
  display:flex!important;
  flex-direction:column!important;
  min-height:390px!important;
  padding:0!important;
  border-radius:22px!important;
  overflow:hidden!important;
  background:#fff!important;
}
.lp-service-text-card__ill{
  order:0!important;
  position:relative!important;
  inset:auto!important;
  width:100%!important;
  height:168px!important;
  border-radius:0!important;
  background:
    radial-gradient(circle at 76% 30%, rgba(227,6,19,.18), transparent 38%),
    linear-gradient(135deg,#fff8f8 0%,#fdeaea 100%)!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
}
.lp-service-text-card__ill::before{
  content:''!important;
  position:absolute!important;
  width:116px!important;
  height:116px!important;
  border-radius:50%!important;
  background:rgba(227,6,19,.08)!important;
  right:24px!important;
  top:20px!important;
}
.lp-service-text-card__ill svg{
  position:relative!important;
  z-index:2!important;
  width:190px!important;
  height:145px!important;
  max-width:92%!important;
  fill:none!important;
  stroke:#E30613!important;
  stroke-width:2.8!important;
  stroke-linecap:round!important;
  stroke-linejoin:round!important;
}
.lp-service-text-card__content{
  order:1!important;
  padding:24px 24px 26px!important;
  display:flex!important;
  flex-direction:column!important;
  flex:1 1 auto!important;
}
.lp-service-text-card__content h2{
  min-height:54px!important;
  margin:0 0 14px!important;
  display:flex!important;
  align-items:flex-start!important;
  font-size:22px!important;
  line-height:1.18!important;
}
.lp-service-text-card__content p{
  margin:0!important;
  font-size:15px!important;
  line-height:1.62!important;
  color:#334155!important;
}

/* 4) Характеристики: крупнее SVG и выразительнее карточки */
.lp-service-spec-grid{
  max-width:1040px!important;
  gap:18px!important;
}
.lp-service-spec{
  min-height:108px!important;
  padding:22px!important;
  border-radius:20px!important;
  gap:18px!important;
}
.lp-service-spec__icon{
  width:62px!important;
  height:62px!important;
  flex:0 0 62px!important;
  border-radius:18px!important;
  background:linear-gradient(135deg,#fff1f1,#ffe0e2)!important;
}
.lp-service-spec__icon svg{
  width:34px!important;
  height:34px!important;
}

/* 5) Калькулятор: компактнее, симметричнее, кнопка — внутри итогового блока */
.lp-calc-section{
  padding:34px 0 38px!important;
  background:
    radial-gradient(circle at 12% 18%, rgba(227,6,19,.075), transparent 26%),
    radial-gradient(circle at 88% 78%, rgba(227,6,19,.075), transparent 28%),
    linear-gradient(180deg,#fff8f8 0%,#fff1f1 100%)!important;
}
.lp-calc-section::before{
  font-size:128px!important;
  left:6%!important;
  top:12%!important;
}
.lp-calc-section::after{
  font-size:142px!important;
  right:7%!important;
  bottom:6%!important;
}
.lp-calc-section .section-title{
  font-size:clamp(24px,2.4vw,34px)!important;
  margin-bottom:4px!important;
}
.lp-calc-section .section-subtitle{
  margin-bottom:16px!important;
  font-size:14px!important;
}
.lp-calc-box--featured{
  max-width:860px!important;
  padding:20px!important;
  border-radius:20px!important;
  box-shadow:0 16px 44px rgba(70,22,22,.10)!important;
}
.lp-calc-box--featured input,
.lp-calc-box--featured select,
.lp-calc-box--featured textarea,
.lp-calc-box--featured button{
  min-height:34px!important;
  font-size:13px!important;
}
.lp-calc-box--featured label,
.lp-calc-box--featured .ccb-field-title,
.lp-calc-box--featured .calc-item-title{
  font-size:13px!important;
}
.lp-calc-box--featured .lp-calc-summary-card--v18,
.lp-calc-box--featured .lp-calc-summary-card{
  display:flex!important;
  flex-direction:column!important;
  justify-content:flex-start!important;
  border-radius:14px!important;
}
.lp-calc-box--featured .lp-calc-summary-card .lp-calc-actions{
  display:flex!important;
  width:100%!important;
  margin:14px 0 0!important;
  padding-top:14px!important;
  border-top:1px solid rgba(15,23,42,.10)!important;
}
.lp-calc-box--featured .lp-calc-summary-card .lp-calc-order-btn{
  width:100%!important;
  min-width:0!important;
  padding:12px 18px!important;
  border-radius:11px!important;
  font-size:14px!important;
  font-weight:850!important;
}
.lp-calc-box--featured > .lp-calc-actions:not(.lp-calc-actions--inside-summary){
  display:none!important;
}
.lp-calc-box--featured .lp-calc-note--featured{
  width:100%!important;
  margin:14px auto 0!important;
  padding:10px 14px!important;
  border-radius:14px!important;
  background:#fff8f8!important;
  border:1px solid rgba(227,6,19,.15)!important;
  color:#5b2b2f!important;
  font-size:13px!important;
  font-weight:750!important;
  line-height:1.35!important;
  text-align:center!important;
  box-shadow:none!important;
}
.lp-calc-box--featured .lp-calc-note__icon{
  display:inline-flex!important;
  width:22px!important;
  height:22px!important;
  margin-right:6px!important;
  font-size:12px!important;
}

/* 6) Телефон в формах */
.lp-phone-field input[type="tel"]{
  width:100%!important;
}

/* 7) Адаптив */
@media(max-width: 900px){
  .lp-service-benefits-grid,
  .lp-service-text-grid,
  .lp-service-spec-grid{
    grid-template-columns:1fr!important;
  }
  .lp-service-benefit-card,
  .lp-service-text-card--with-ill{
    min-height:0!important;
  }
  .lp-service-text-card__ill{
    height:150px!important;
  }
  .lp-service-text-card__content h2{
    min-height:0!important;
  }
  .lp-calc-box--featured{
    max-width:100%!important;
    padding:16px!important;
  }
}
@media(max-width: 640px){
  .lp-service-benefit-card{
    grid-template-columns:54px 1fr!important;
    padding:18px!important;
  }
  .lp-service-benefit-icon{
    width:54px!important;
    height:54px!important;
  }
  .lp-service-text-card__ill{
    height:135px!important;
  }
  .lp-service-text-card__ill svg{
    width:160px!important;
    height:122px!important;
  }
}


/* === LOCALPRINT v19: финальная компоновка формы, карточек и графика === */
.lp-order-card--contacts .lp-phone-field{
  order:2!important;
}
.lp-order-card--contacts p:has(input[name="your-name"]),
.lp-order-card--contacts p:has(input[name*="name"]){order:1!important;}
.lp-order-card--contacts p:has(input[type="email"]){order:3!important;}
.lp-order-card--contacts p:has(input[name*="subject"]),
.lp-order-card--contacts p:has(input[name*="theme"]){order:4!important;}
.lp-order-card--contacts{display:flex!important;flex-direction:column!important;}
.lp-phone-field label{display:block!important;color:inherit!important;font-weight:750!important;}
.lp-phone-field input[type="tel"]{width:100%!important;}

/* Три карточки: фото-рендеры под текстом, как в согласованном референсе */
.lp-service-text-grid--photo{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:24px!important;
  align-items:stretch!important;
}
.lp-service-text-card--photo{
  min-height:0!important;
  padding:0!important;
  overflow:hidden!important;
  border-radius:22px!important;
  background:#fff!important;
  border:1px solid rgba(15,23,42,.075)!important;
  box-shadow:0 18px 45px rgba(15,23,42,.055)!important;
  display:flex!important;
  flex-direction:column!important;
}
.lp-service-text-card--photo .lp-service-text-card__content{
  padding:26px 26px 18px!important;
  min-height:286px!important;
  display:flex!important;
  flex-direction:column!important;
}
.lp-service-text-card--photo .lp-service-text-card__content h2{
  min-height:56px!important;
  margin:0 0 14px!important;
  font-size:22px!important;
  line-height:1.15!important;
  display:flex!important;
  align-items:flex-start!important;
  color:#111827!important;
}
.lp-service-text-card--photo .lp-service-text-card__content p{
  margin:0!important;
  font-size:15px!important;
  line-height:1.62!important;
  color:#334155!important;
}
.lp-service-text-card__photo{
  margin:auto 0 0!important;
  height:142px!important;
  position:relative!important;
  overflow:hidden!important;
  background:linear-gradient(135deg,#fff7f7 0%,#fdecec 100%)!important;
  border-top:1px solid rgba(227,6,19,.08)!important;
}
.lp-service-text-card__photo::before{
  content:''!important;
  position:absolute!important;
  width:134px!important;
  height:134px!important;
  border-radius:50%!important;
  right:18px!important;
  top:-22px!important;
  background:rgba(227,6,19,.09)!important;
  z-index:1!important;
}
.lp-service-text-card__photo img{
  position:absolute!important;
  right:14px!important;
  bottom:0!important;
  z-index:2!important;
  width:58%!important;
  max-width:230px!important;
  height:128px!important;
  object-fit:cover!important;
  object-position:center!important;
  border-radius:16px 16px 0 0!important;
  box-shadow:0 12px 30px rgba(15,23,42,.13)!important;
  transform:rotate(-2deg)!important;
}
.lp-service-text-card--photo:nth-child(2) .lp-service-text-card__photo img{width:62%!important;transform:rotate(0deg)!important;}
.lp-service-text-card--photo:nth-child(3) .lp-service-text-card__photo img{width:60%!important;transform:rotate(3deg)!important;}

/* График работы в футере: ровная сетка */
.lp-footer-hours{
  display:grid!important;
  grid-template-columns:minmax(46px,max-content) max-content!important;
  column-gap:14px!important;
  row-gap:4px!important;
  align-items:baseline!important;
  line-height:1.35!important;
}
.lp-footer-hours span:nth-child(odd){color:rgba(255,255,255,.65)!important;}
.lp-footer-hours span:nth-child(even){color:rgba(255,255,255,.82)!important;text-align:left!important;}

@media(max-width: 900px){
  .lp-service-text-grid--photo{grid-template-columns:1fr!important;}
  .lp-service-text-card--photo .lp-service-text-card__content{min-height:0!important;}
  .lp-service-text-card--photo .lp-service-text-card__content h2{min-height:0!important;}
  .lp-service-text-card__photo{height:150px!important;}
  .lp-service-text-card__photo img{width:50%!important;height:136px!important;}
}
@media(max-width: 560px){
  .lp-service-text-card--photo .lp-service-text-card__content{padding:22px 20px 16px!important;}
  .lp-service-text-card__photo img{width:68%!important;}
}



/* =========================================================
   LOCALPRINT v22 — own calculator shell + approved privacy
   ========================================================= */

/* Approved privacy layout */
.wpcf7 .lp-privacy-inline--v22,
.lp-order-card .lp-privacy-inline--v22,
.lp-order-section .lp-privacy-inline--v22{
  display:flex!important;
  align-items:flex-start!important;
  gap:10px!important;
  margin:8px 0 12px!important;
  font-size:13px!important;
  line-height:1.32!important;
  font-weight:600!important;
}
.lp-privacy-inline--v22 .wpcf7-acceptance,
.lp-privacy-inline--v22 .wpcf7-list-item,
.lp-privacy-inline--v22 .wpcf7-list-item label{
  display:inline-flex!important;
  align-items:center!important;
  margin:0!important;
  padding:0!important;
}
.lp-privacy-inline--v22 input[type="checkbox"]{
  width:16px!important;
  height:16px!important;
  margin:1px 0 0!important;
  flex:0 0 auto!important;
}
.lp-privacy-inline--v22 .lp-privacy-text{
  display:block!important;
  color:rgba(255,255,255,.88)!important;
}
.lp-privacy-inline--v22 .lp-privacy-prefix{
  color:rgba(255,255,255,.88)!important;
}
.lp-privacy-inline--v22 .lp-privacy-link{
  color:#4da3ff!important;
  text-decoration:underline!important;
  text-underline-offset:2px!important;
  font-weight:700!important;
}
.lp-contacts-form-box .lp-privacy-inline--v22 .lp-privacy-text,
.lp-contacts-form-box .lp-privacy-inline--v22 .lp-privacy-prefix{
  color:#334155!important;
}

/* Calculator shell */
.lp-calc-section{
  padding:32px 0 30px!important;
}
.lp-calc-section .section-title{
  margin-bottom:4px!important;
}
.lp-calc-section .section-subtitle{
  margin-bottom:14px!important;
}
.lp-calc-box--shell{
  max-width:820px!important;
  margin:14px auto 0!important;
  padding:18px!important;
  border-radius:18px!important;
  box-shadow:0 16px 42px rgba(80,20,20,.10)!important;
  overflow:visible!important;
}
.lp-calc-plugin-source--empty{
  display:none!important;
}
.lp-calc-shell{
  display:grid!important;
  grid-template-columns:minmax(0,1.55fr) minmax(280px,.95fr)!important;
  gap:18px!important;
  align-items:stretch!important;
  width:100%!important;
}
.lp-calc-shell__col{
  min-width:0!important;
  align-self:stretch!important;
  background:#fff!important;
  border:1px solid rgba(15,23,42,.08)!important;
  border-radius:14px!important;
  box-shadow:0 10px 28px rgba(15,23,42,.045)!important;
  padding:18px!important;
  box-sizing:border-box!important;
  display:flex!important;
  flex-direction:column!important;
}
.lp-calc-shell__placeholder{
  color:#94a3b8!important;
  font-size:13px!important;
}
.lp-calc-fields-card--v22,
.lp-calc-summary-card--v22{
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  box-shadow:none!important;
  border:0!important;
  background:transparent!important;
  padding:0!important;
}
.lp-calc-summary-card--v22{
  display:flex!important;
  flex-direction:column!important;
  flex:1 1 auto!important;
  min-height:100%!important;
}
.lp-calc-summary-card--v22 *{
  max-width:100%!important;
  word-break:normal!important;
  overflow-wrap:normal!important;
}

/* Compact controls */
.lp-calc-box--shell input,
.lp-calc-box--shell select,
.lp-calc-box--shell textarea{
  min-height:34px!important;
  font-size:13px!important;
}
.lp-calc-box--shell label,
.lp-calc-box--shell .ccb-field-title,
.lp-calc-box--shell .calc-item-title{
  font-size:13px!important;
  margin-bottom:6px!important;
}
.lp-calc-box--shell .ccb-field,
.lp-calc-box--shell .calc-item,
.lp-calc-box--shell .ccb-field-wrapper{
  margin-bottom:12px!important;
}

/* Button inside right column, pinned to bottom */
.lp-calc-shell__right .lp-calc-actions--v22{
  display:flex!important;
  width:100%!important;
  margin:auto 0 0!important;
  padding-top:16px!important;
  border-top:1px solid rgba(15,23,42,.08)!important;
}
.lp-calc-shell__right .lp-calc-order-btn--v22{
  width:100%!important;
  min-width:0!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  padding:13px 18px!important;
  border-radius:10px!important;
  font-size:15px!important;
  font-weight:700!important;
  text-align:center!important;
  white-space:nowrap!important;
}

/* Plain note under shell */
.lp-calc-box--shell .lp-calc-note--v22,
.lp-calc-box--shell .lp-calc-note--featured.lp-calc-note--v22{
  display:block!important;
  width:100%!important;
  max-width:100%!important;
  margin:16px auto 0!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
  box-shadow:none!important;
  border-radius:0!important;
  font-size:13px!important;
  line-height:1.35!important;
  color:#888!important;
  font-weight:500!important;
  text-align:center!important;
}
.lp-calc-box--shell .lp-calc-note--v22 .lp-calc-note__icon{
  display:none!important;
}

@media(max-width:780px){
  .lp-calc-box--shell{
    max-width:100%!important;
    padding:14px!important;
  }
  .lp-calc-shell{
    grid-template-columns:1fr!important;
    gap:12px!important;
  }
  .lp-calc-shell__col{
    padding:14px!important;
  }
}


/* === LOCALPRINT v23-FINAL: inject-кнопка в summary CCB + сноска plain === */

/* Обёртка кнопки внутри summary CCB — margin-top:auto прижимает к низу */
.lp-calc-btn-wrap{
  margin-top:auto!important;
  padding-top:16px!important;
  border-top:1px solid rgba(15,23,42,.08)!important;
  width:100%!important;
  display:flex!important;
  box-sizing:border-box!important;
}
.lp-calc-btn-wrap--injected{
  margin-top:auto!important;
}

/* Кнопка — 100% ширины */
.lp-calc-btn-wrap .lp-calc-order-btn{
  width:100%!important;
  min-width:0!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  padding:13px 18px!important;
  border-radius:10px!important;
  font-size:15px!important;
  font-weight:700!important;
  text-align:center!important;
  white-space:nowrap!important;
  box-sizing:border-box!important;
}

/* Сноска — plain text, без плашки */
.lp-calc-note--plain{
  display:block!important;
  width:100%!important;
  max-width:100%!important;
  margin:16px auto 0!important;
  padding:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
  font-size:13px!important;
  color:#888888!important;
  font-weight:400!important;
  text-align:center!important;
  line-height:1.4!important;
}

/* Шаблон кнопки скрыт — он только для JS cloneNode */
.lp-calc-btn-inject{
  display:none!important;
}

/* Шаблон информационного текста скрыт — только для JS cloneNode */
.lp-calc-info-inject{
  display:none!important;
}

/* Информационный блок внутри левой колонки CCB */
.lp-calc-info{
  margin-top:20px!important;
  padding-top:16px!important;
  border-top:1px solid rgba(15,23,42,.07)!important;
}
.lp-calc-info p{
  margin:0 0 10px!important;
  font-size:13px!important;
  line-height:1.55!important;
  color:#6b7280!important;
  font-weight:400!important;
}
.lp-calc-info p:last-child{
  margin-bottom:0!important;
}

@media(max-width:780px){
  .lp-calc-btn-wrap{
    padding-top:12px!important;
  }
}

/* === LOCALPRINT v24: info-row, modal, privacy, file button === */

/* ── 1. Информационный блок под калькулятором — левая половина ── */
.lp-calc-info-row{
  display:grid;
  grid-template-columns:minmax(0,1.55fr) minmax(280px,.95fr);
  gap:18px;
  margin-top:14px;
}
.lp-calc-info-row .lp-calc-info{
  margin-top:0!important;
  padding-top:0!important;
  border-top:0!important;
  padding:16px 20px;
  background:#f8f9fa;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.06);
}
.lp-calc-info-row .lp-calc-info p{
  font-size:13px!important;
  line-height:1.6!important;
  color:#6b7280!important;
  margin:0 0 10px!important;
}
.lp-calc-info-row .lp-calc-info p:last-child{
  margin-bottom:0!important;
}
.lp-calc-info-spacer{
  /* пустая правая ячейка — выравниваем info по левой колонке */
}
@media(max-width:780px){
  .lp-calc-info-row{
    grid-template-columns:1fr;
  }
  .lp-calc-info-spacer{
    display:none;
  }
}

/* ── 2. Privacy — две строки, ссылка синяя курсив ── */
.lp-privacy-prefix{
  display:block!important;
  color:inherit!important;
  font-style:normal!important;
}
.lp-privacy-link{
  display:block!important;
  color:#1a6fd4!important;
  font-style:italic!important;
  text-decoration:underline!important;
  text-underline-offset:2px!important;
  font-weight:500!important;
}
.lp-order-card .lp-privacy-link{
  color:#6EB6FF!important;
}
/* Убираем глобальный запрет на br в privacy */
.wpcf7 .lp-privacy-inline br{
  display:block!important;
}
.lp-privacy-text{
  display:flex!important;
  flex-direction:column!important;
  gap:0!important;
}

/* ── 3. Модальное окно «Получить расчёт» ── */
.lp-modal{
  position:fixed;
  inset:0;
  z-index:99999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
}
.lp-modal[hidden]{
  display:none!important;
}
.lp-modal__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(3px);
}
.lp-modal__box{
  position:relative;
  z-index:1;
  background:#fff;
  border-radius:20px;
  padding:32px;
  width:100%;
  max-width:440px;
  box-shadow:0 24px 64px rgba(0,0,0,.18);
}
.lp-modal__close{
  position:absolute;
  top:16px;
  right:18px;
  background:none;
  border:0;
  font-size:22px;
  line-height:1;
  color:#888;
  cursor:pointer;
  padding:4px 8px;
}
.lp-modal__close:hover{color:#1A1A1A;}
.lp-modal__title{
  font-size:22px;
  font-weight:800;
  color:#1A1A1A;
  margin:0 0 6px;
}
.lp-modal__sub{
  font-size:14px;
  color:#6b7280;
  margin:0 0 22px;
}
.lp-modal__form{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.lp-modal__field{
  display:flex;
  flex-direction:column;
  gap:5px;
  position:relative;
}
.lp-modal__field label{
  font-size:13px;
  font-weight:600;
  color:#374151;
}
.lp-modal__req{
  color:#E30613;
}
.lp-modal__field input{
  width:100%;
  padding:11px 14px;
  border:1px solid #d1d5db;
  border-radius:10px;
  font-size:14px;
  color:#1A1A1A;
  background:#fff;
  outline:none;
  transition:border-color .18s;
  box-sizing:border-box;
}
.lp-modal__field input:focus{
  border-color:#E30613;
  box-shadow:0 0 0 3px rgba(227,6,19,.12);
}
.lp-modal__field input.lp-modal--invalid{
  border-color:#E30613!important;
}
.lp-modal__err{
  display:none;
  font-size:12px;
  color:#E30613;
  margin-top:2px;
}
.lp-modal__err--contact{
  display:none;
  font-size:13px;
  color:#E30613;
  margin-top:0;
  margin-bottom:4px;
  font-weight:500;
}
.lp-modal__err.lp-modal--show,
.lp-modal__err--contact.lp-modal--show{
  display:block;
}
.lp-modal__submit{
  width:100%;
  padding:13px;
  font-size:15px;
  font-weight:700;
  border-radius:10px;
  margin-top:4px;
  border:0;
  cursor:pointer;
}
.lp-modal__success{
  text-align:center;
  color:#16a34a;
  font-size:15px;
  font-weight:600;
  padding:10px 0;
  margin:0;
}
@media(max-width:480px){
  .lp-modal__box{padding:24px 18px;}
  .lp-modal__title{font-size:19px;}
}

/* ── 4. Кнопка «Выберите файл» в стиле сайта ── */
.lp-order-card input[type="file"],
.wpcf7 input[type="file"]{
  font-size:13px!important;
  cursor:pointer!important;
}
/* Скрываем нативный input, показываем стилизованную кнопку через label */
.lp-file-field{
  display:flex!important;
  flex-direction:column!important;
  gap:6px!important;
}
.lp-file-field label{
  display:flex!important;
  flex-direction:column!important;
  gap:6px!important;
}
/* Стилизованная кнопка выбора файла */
.lp-file-btn-label{
  display:inline-flex!important;
  align-items:center!important;
  gap:8px!important;
  background:#E30613!important;
  color:#fff!important;
  border-radius:10px!important;
  padding:10px 18px!important;
  font-size:14px!important;
  font-weight:600!important;
  cursor:pointer!important;
  width:max-content!important;
  max-width:100%!important;
  line-height:1.2!important;
  border:0!important;
  transition:background .18s!important;
}
.lp-file-btn-label:hover{
  background:#c0000e!important;
}
.lp-file-name-display{
  display:block!important;
  font-size:13px!important;
  color:rgba(255,255,255,.6)!important;
  margin-top:2px!important;
}
.lp-order-form-shell--light .lp-file-name-display{
  color:#6b7280!important;
}
/* Нативный input[type=file] скрываем визуально, доступность сохраняем */
.lp-file-field input[type="file"]{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  opacity:0!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
  white-space:nowrap!important;
  pointer-events:none!important;
  min-height:0!important;
  padding:0!important;
  margin:0!important;
  border:0!important;
}

/* === LOCALPRINT: иконки преимуществ из архива (64×64 со своим фоном) === */
.lp-service-benefit-icon--svg{
  background:none!important;
  box-shadow:none!important;
  width:64px!important;
  height:64px!important;
  border-radius:0!important;
  padding:0!important;
  flex:0 0 64px!important;
}
.lp-service-benefit-icon--svg svg{
  width:64px!important;
  height:64px!important;
  stroke:none!important;
  fill:none!important;
}

/* === LOCALPRINT v12: SVG-иконки из архива внутри lp-svc-hero-facts === */
.lp-svc-hero-fact__icon--svg{
  background:none!important;
  width:42px!important;
  height:42px!important;
  padding:0!important;
  box-shadow:none!important;
}
.lp-svc-hero-fact__icon--svg svg{
  width:42px!important;
  height:42px!important;
  stroke:none!important;
  fill:none!important;
}

/* === LOCALPRINT v12c: компактные SVG-иконки в hero-facts ===
   Уменьшаем до размера эталонных иконок листовок (36px) */
.lp-svc-hero-fact__icon--svg{
  width:36px!important;
  height:36px!important;
  border-radius:10px!important;
  overflow:hidden!important;
}
.lp-svc-hero-fact__icon--svg svg{
  width:36px!important;
  height:36px!important;
}

/* === LOCALPRINT v13: точное приведение к эталону листовок ===
   Таргетируем только блок услуг (не листовки) через aria-label */

/* Карточка — такие же отступы как эталон */
[aria-label="Преимущества услуги"] .lp-svc-hero-fact {
  padding: 14px 16px !important;
  gap: 11px !important;
}

/* Иконка — точно под размер эталонной */
[aria-label="Преимущества услуги"] .lp-svc-hero-fact__icon--svg {
  width: 36px !important;
  height: 36px !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  flex: 0 0 36px !important;
}
[aria-label="Преимущества услуги"] .lp-svc-hero-fact__icon--svg svg {
  width: 36px !important;
  height: 36px !important;
  display: block !important;
}

/* Текст — соответствует эталону */
[aria-label="Преимущества услуги"] .lp-svc-hero-fact strong {
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
}
[aria-label="Преимущества услуги"] .lp-svc-hero-fact small {
  font-size: 12px !important;
  margin-top: 2px !important;
  line-height: 1.25 !important;
}

/* Мобильные — сохраняем корректный стек */
@media (max-width: 640px) {
  [aria-label="Преимущества услуги"] .lp-svc-hero-fact {
    padding: 12px 14px !important;
  }
}

/* === LOCALPRINT v23-FINAL: hero-подложка — исправленный путь и CSS ===
   Файлы: /assets/img/hero-bg/*.svg
   Переменная: --lp-svc-hero-bg  */

.lp-page-hero.lp-svc-hero.lp-svc-hero--svc-bg{
  overflow:visible !important;
  position:relative !important;
  padding:38px 0 34px !important;
  border-bottom:1px solid rgba(0,0,0,.06) !important;
  background-color:transparent !important;
  background-image:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.96) 0%,
      rgba(255,255,255,0.88) 42%,
      rgba(255,255,255,0.52) 68%,
      rgba(255,255,255,0.15) 100%
    ),
    var(--lp-svc-hero-bg) !important;
  background-size:auto, cover !important;
  background-position:left center, center center !important;
  background-repeat:no-repeat, no-repeat !important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--svc-bg .lp-svc-hero__inner{
  position:relative !important;
  z-index:2 !important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--svc-bg::after{
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:1;
  background:radial-gradient(circle at 78% 44%, rgba(227,6,19,.07), transparent 34%);
}
@media(max-width:900px){
  .lp-page-hero.lp-svc-hero.lp-svc-hero--svc-bg{
    background-image:
      linear-gradient(rgba(255,255,255,.97), rgba(255,255,255,.92)),
      var(--lp-svc-hero-bg) !important;
    background-size:auto, cover !important;
    background-position:center, center center !important;
  }
}

/* === LOCALPRINT v25: единый hero услуг по согласованному эталону ===
   Не SVG-паттерн и не отдельная подложка, а цельная hero-композиция:
   текст слева, изображение услуги как общий фон справа, правая media-картинка скрыта.
*/
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified{
  position:relative !important;
  min-height:390px !important;
  padding:34px 0 28px !important;
  overflow:hidden !important;
  border-bottom:1px solid rgba(0,0,0,.06) !important;
  background-color:#fff !important;
  background-image:
    linear-gradient(90deg,
      rgba(255,255,255,.99) 0%,
      rgba(255,255,255,.96) 35%,
      rgba(255,255,255,.75) 58%,
      rgba(255,255,255,.18) 100%
    ),
    var(--lp-svc-hero-bg) !important;
  background-size:auto, cover !important;
  background-position:left center, center right !important;
  background-repeat:no-repeat, no-repeat !important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified::after{
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:1;
  background:radial-gradient(circle at 78% 48%, rgba(227,6,19,.10), transparent 36%) !important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified .container,
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero__inner{
  position:relative !important;
  z-index:2 !important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero__inner{
  display:block !important;
  max-width:1240px !important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero__content{
  width:min(560px,100%) !important;
  padding:18px 0 8px !important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero__media{
  display:none !important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-page-hero__title{
  font-size:clamp(34px,4.4vw,56px) !important;
  line-height:1.03 !important;
  margin-bottom:14px !important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-page-hero__sub{
  max-width:520px !important;
  margin-bottom:22px !important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero__btns{
  margin-bottom:24px !important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-facts{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:10px !important;
  max-width:640px !important;
  padding:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  border:0 !important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact{
  min-width:0 !important;
  min-height:72px !important;
  padding:12px 14px !important;
  border:1px solid rgba(227,6,19,.10) !important;
  border-radius:14px !important;
  background:rgba(255,255,255,.92) !important;
  box-shadow:0 10px 24px rgba(0,0,0,.06) !important;
  display:grid !important;
  grid-template-columns:34px 1fr !important;
  align-items:center !important;
  gap:10px !important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact + .lp-svc-hero-fact{
  border-left:1px solid rgba(227,6,19,.10) !important;
}
@media(max-width:900px){
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified{
    min-height:auto !important;
    padding:28px 0 24px !important;
    background-image:
      linear-gradient(rgba(255,255,255,.97), rgba(255,255,255,.92)),
      var(--lp-svc-hero-bg) !important;
    background-position:center, center center !important;
  }
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-facts{
    grid-template-columns:1fr !important;
    max-width:100% !important;
  }
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact + .lp-svc-hero-fact{
    border-left:1px solid rgba(227,6,19,.10) !important;
  }
}

/* === LOCALPRINT v32: hero quick facts like approved mockup ===
   Верхний блок быстрых характеристик под кнопками: без бледных карточек,
   с крупными красными outline-иконками и вертикальными разделителями. */
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-facts{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:0!important;
  max-width:760px!important;
  margin-top:26px!important;
  padding:0!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  overflow:visible!important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact{
  min-height:68px!important;
  padding:8px 28px 8px 0!important;
  display:grid!important;
  grid-template-columns:46px minmax(0,1fr)!important;
  gap:14px!important;
  align-items:center!important;
  background:transparent!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact + .lp-svc-hero-fact{
  border-left:1px solid rgba(17,24,39,.18)!important;
  padding-left:28px!important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact__icon,
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact__icon--svg{
  width:46px!important;
  height:46px!important;
  min-width:46px!important;
  flex:0 0 46px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  background:transparent!important;
  border-radius:0!important;
  box-shadow:none!important;
  color:#E30613!important;
  overflow:visible!important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact__icon svg,
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact__icon--svg svg{
  width:34px!important;
  height:34px!important;
  display:block!important;
  stroke:#E30613!important;
  fill:none!important;
  stroke-width:2.25!important;
  stroke-linecap:round!important;
  stroke-linejoin:round!important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact__icon svg rect[fill],
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact__icon--svg svg rect[fill]{
  fill:transparent!important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact strong{
  display:block!important;
  margin:0 0 5px!important;
  font-size:16px!important;
  line-height:1.15!important;
  font-weight:800!important;
  color:#111827!important;
  letter-spacing:-.01em!important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact small{
  display:block!important;
  margin:0!important;
  font-size:13px!important;
  line-height:1.35!important;
  color:#4b5563!important;
  font-weight:500!important;
}
@media(max-width:900px){
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-facts{
    grid-template-columns:1fr!important;
    max-width:100%!important;
    margin-top:22px!important;
    gap:12px!important;
  }
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact{
    padding:12px 14px!important;
    grid-template-columns:42px minmax(0,1fr)!important;
    background:rgba(255,255,255,.90)!important;
    border:1px solid rgba(227,6,19,.10)!important;
    border-radius:14px!important;
    box-shadow:0 10px 24px rgba(0,0,0,.05)!important;
  }
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact + .lp-svc-hero-fact{
    border-left:1px solid rgba(227,6,19,.10)!important;
    padding-left:14px!important;
  }
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact__icon,
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact__icon--svg{
    width:42px!important;
    height:42px!important;
    min-width:42px!important;
  }
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact__icon svg,
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact__icon--svg svg{
    width:30px!important;
    height:30px!important;
  }
}

/* === LOCALPRINT v33: hero quick facts wider and lower ===
   Верхний блок быстрых характеристик: ниже по высоте, шире по горизонтали,
   ближе к утверждённому макету. */
@media (min-width: 901px){
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-facts{
    max-width:900px!important;
    margin-top:24px!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
  }
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact{
    min-height:58px!important;
    padding:5px 34px 5px 0!important;
    grid-template-columns:42px minmax(0,1fr)!important;
    gap:18px!important;
    align-items:center!important;
  }
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact + .lp-svc-hero-fact{
    padding-left:34px!important;
    border-left:1px solid rgba(17,24,39,.16)!important;
  }
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact__icon,
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact__icon--svg{
    width:42px!important;
    height:42px!important;
    min-width:42px!important;
    flex-basis:42px!important;
  }
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact__icon svg,
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact__icon--svg svg{
    width:34px!important;
    height:34px!important;
  }
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact strong{
    font-size:15px!important;
    line-height:1.12!important;
    margin-bottom:3px!important;
    font-weight:800!important;
  }
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact small{
    font-size:12px!important;
    line-height:1.22!important;
    color:#4b5563!important;
  }
}

/* === LOCALPRINT v34: hero quick facts final horizontal layout ===
   Верхний блок быстрых характеристик: иконка слева, текст справа,
   широкий и низкий формат без узких переносов. */
@media (min-width: 901px){
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero__content{
    overflow:visible!important;
  }
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-facts{
    width:min(880px, calc(100vw - 120px))!important;
    max-width:none!important;
    margin-top:24px!important;
    display:grid!important;
    grid-template-columns:repeat(3,minmax(240px,1fr))!important;
    gap:0!important;
    padding:0!important;
    background:transparent!important;
    border:0!important;
    box-shadow:none!important;
    overflow:visible!important;
  }
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact{
    min-height:70px!important;
    padding:8px 30px 8px 0!important;
    display:flex!important;
    flex-direction:row!important;
    align-items:center!important;
    justify-content:flex-start!important;
    gap:16px!important;
    background:transparent!important;
    border:0!important;
    border-radius:0!important;
    box-shadow:none!important;
    min-width:0!important;
  }
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact + .lp-svc-hero-fact{
    border-left:1px solid rgba(17,24,39,.16)!important;
    padding-left:30px!important;
  }
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact__icon,
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact__icon--svg{
    width:38px!important;
    height:38px!important;
    min-width:38px!important;
    flex:0 0 38px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    background:transparent!important;
    border-radius:0!important;
    box-shadow:none!important;
    color:#E30613!important;
    overflow:visible!important;
  }
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact__icon svg,
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact__icon--svg svg{
    width:32px!important;
    height:32px!important;
    display:block!important;
    stroke:#E30613!important;
    fill:none!important;
    stroke-width:2.25!important;
    stroke-linecap:round!important;
    stroke-linejoin:round!important;
  }
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact__icon svg rect[fill],
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact__icon--svg svg rect[fill]{
    fill:transparent!important;
  }
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact span:last-child{
    display:block!important;
    min-width:0!important;
    max-width:190px!important;
  }
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact strong{
    display:block!important;
    margin:0 0 4px!important;
    font-size:15px!important;
    line-height:1.18!important;
    font-weight:800!important;
    color:#111827!important;
    letter-spacing:-.01em!important;
    white-space:normal!important;
  }
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified .lp-svc-hero-fact small{
    display:block!important;
    margin:0!important;
    font-size:12px!important;
    line-height:1.3!important;
    color:#4b5563!important;
    font-weight:500!important;
    white-space:normal!important;
  }
}

/* === v35: Characteristics + mockup requirements visual system ===
   - red outline icons without pale-pink icon backgrounds
   - characteristics: 6 cards in one horizontal row on desktop
   - requirements: keep 2x2 grid, same icon treatment
*/
@media (min-width: 1101px){
  .lp-service-spec-grid{
    display:grid!important;
    grid-template-columns:repeat(6,minmax(0,1fr))!important;
    gap:12px!important;
    max-width:1180px!important;
    width:100%!important;
    margin-left:auto!important;
    margin-right:auto!important;
  }
  .lp-service-spec{
    min-height:86px!important;
    padding:16px 14px!important;
    border-radius:18px!important;
    display:flex!important;
    align-items:center!important;
    gap:10px!important;
    background:#fff!important;
    border:1px solid rgba(15,23,42,.07)!important;
    box-shadow:0 12px 30px rgba(15,23,42,.045)!important;
  }
}

.lp-service-spec__icon{
  width:36px!important;
  height:36px!important;
  flex:0 0 36px!important;
  border-radius:0!important;
  background:transparent!important;
  background-image:none!important;
  box-shadow:none!important;
  color:#E30613!important;
}
.lp-service-spec__icon svg{
  width:30px!important;
  height:30px!important;
  fill:none!important;
  stroke:#E30613!important;
  stroke-width:2.25!important;
  stroke-linecap:round!important;
  stroke-linejoin:round!important;
}
.lp-service-spec span:not(.lp-service-spec__icon){
  display:block!important;
  margin:0 0 4px!important;
  font-size:10px!important;
  line-height:1.1!important;
  font-weight:850!important;
  letter-spacing:.075em!important;
  text-transform:uppercase!important;
  color:#6b7280!important;
}
.lp-service-spec strong{
  display:block!important;
  font-size:13px!important;
  line-height:1.2!important;
  font-weight:900!important;
  letter-spacing:-.15px!important;
  color:#111827!important;
}

.lp-req-grid--service .lp-req-item{
  background:#fff!important;
  border:1px solid rgba(15,23,42,.07)!important;
  box-shadow:0 12px 30px rgba(15,23,42,.045)!important;
  border-radius:18px!important;
  padding:22px 24px!important;
  align-items:center!important;
}
.lp-req-grid--service .lp-req-icon{
  width:42px!important;
  height:42px!important;
  flex:0 0 42px!important;
  border-radius:0!important;
  background:transparent!important;
  background-image:none!important;
  box-shadow:none!important;
  color:#E30613!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
}
.lp-req-grid--service .lp-req-icon svg{
  width:32px!important;
  height:32px!important;
  fill:none!important;
  stroke:#E30613!important;
  stroke-width:2.25!important;
  stroke-linecap:round!important;
  stroke-linejoin:round!important;
}
.lp-req-grid--service .lp-req-title{
  font-size:15px!important;
  line-height:1.25!important;
  font-weight:850!important;
  color:#111827!important;
  margin-bottom:5px!important;
}
.lp-req-grid--service .lp-req-desc{
  font-size:14px!important;
  line-height:1.45!important;
  color:#64748b!important;
}

@media (min-width: 701px) and (max-width: 1100px){
  .lp-service-spec-grid{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    max-width:900px!important;
  }
}
@media (max-width: 700px){
  .lp-service-spec-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:12px!important;
  }
  .lp-service-spec{
    min-height:78px!important;
    padding:14px!important;
    gap:10px!important;
  }
  .lp-req-grid--service{
    grid-template-columns:1fr!important;
  }
}

/* === LOCALPRINT v36: expert service cards polish === */
.lp-service-text-grid--photo{
  gap:22px!important;
  align-items:stretch!important;
}
.lp-service-text-card--photo{
  min-height:0!important;
  height:auto!important;
  border-radius:22px!important;
  overflow:hidden!important;
  background:#fff!important;
  box-shadow:0 16px 38px rgba(15,23,42,.052)!important;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease!important;
}
.lp-service-text-card--photo:hover{
  transform:translateY(-3px)!important;
  box-shadow:0 22px 52px rgba(15,23,42,.075)!important;
  border-color:rgba(227,6,19,.14)!important;
}
.lp-service-text-card--photo .lp-service-text-card__content{
  padding:24px 28px 28px!important;
  min-height:232px!important;
  display:flex!important;
  flex-direction:column!important;
}
.lp-service-text-card--photo .lp-service-text-card__content h2{
  min-height:48px!important;
  margin:0 0 16px!important;
  font-size:21px!important;
  line-height:1.14!important;
  font-weight:900!important;
  letter-spacing:-.25px!important;
}
.lp-service-text-card--photo .lp-service-text-card__content p{
  font-size:15px!important;
  line-height:1.58!important;
  color:#475569!important;
}
.lp-service-text-card__photo{
  order:-1!important;
  margin:0!important;
  height:156px!important;
  background:linear-gradient(135deg,#fff8f8 0%,#fdeaea 100%)!important;
  border-top:0!important;
  border-bottom:1px solid rgba(227,6,19,.075)!important;
}
.lp-service-text-card__photo::before{
  width:156px!important;
  height:156px!important;
  right:10px!important;
  top:-38px!important;
  background:rgba(227,6,19,.065)!important;
}
.lp-service-text-card__photo img{
  right:20px!important;
  bottom:0!important;
  width:66%!important;
  max-width:260px!important;
  height:146px!important;
  object-fit:cover!important;
  border-radius:16px 16px 0 0!important;
  box-shadow:0 12px 26px rgba(15,23,42,.12)!important;
}
.lp-service-text-card--photo:nth-child(2) .lp-service-text-card__photo img{width:68%!important;max-width:270px!important;transform:rotate(0deg)!important;}
.lp-service-text-card--photo:nth-child(3) .lp-service-text-card__photo img{width:66%!important;max-width:260px!important;transform:rotate(2deg)!important;}

@media(max-width:900px){
  .lp-service-text-card--photo .lp-service-text-card__content{min-height:0!important;padding:22px 22px 24px!important;}
  .lp-service-text-card__photo{height:150px!important;}
  .lp-service-text-card__photo img{height:140px!important;width:58%!important;}
}
@media(max-width:560px){
  .lp-service-text-card__photo{height:140px!important;}
  .lp-service-text-card__photo img{height:130px!important;width:72%!important;right:14px!important;}
  .lp-service-text-card--photo .lp-service-text-card__content h2{font-size:20px!important;min-height:0!important;}
  .lp-service-text-card--photo:hover{transform:none!important;}
}
/* v37 expert cards layout */
.lp-service-text-card--photo{position:relative!important;}
.lp-service-text-card--photo .lp-service-text-card__content{padding:26px 150px 26px 28px!important;min-height:250px!important;}
.lp-service-text-card__photo{position:absolute!important;right:18px!important;bottom:18px!important;top:auto!important;height:110px!important;width:120px!important;background:none!important;border:0!important;order:0!important;}
.lp-service-text-card__photo::before{display:none!important;}
.lp-service-text-card__photo img{position:absolute!important;right:0!important;bottom:0!important;width:120px!important;height:90px!important;border-radius:12px!important;box-shadow:0 10px 20px rgba(15,23,42,.12)!important;transform:none!important;}
@media(max-width:900px){.lp-service-text-card--photo .lp-service-text-card__content{padding-right:28px!important;min-height:0!important}.lp-service-text-card__photo{position:relative!important;right:auto!important;bottom:auto!important;width:100%!important;height:120px!important}.lp-service-text-card__photo img{width:120px!important}}

/* === LOCALPRINT v38: экспертные карточки — текст обтекает изображение === */
.lp-service-text-grid--photo{
  align-items:stretch!important;
}
.lp-service-text-card--photo{
  position:relative!important;
  display:block!important;
  min-height:220px!important;
  padding:0!important;
  overflow:hidden!important;
}
.lp-service-text-card--photo .lp-service-text-card__content{
  display:block!important;
  min-height:220px!important;
  padding:26px 24px 24px!important;
}
.lp-service-text-card--photo .lp-service-text-card__content h2{
  min-height:0!important;
  display:block!important;
  margin:0 0 16px!important;
  font-size:22px!important;
  line-height:1.12!important;
  font-weight:900!important;
  letter-spacing:-.35px!important;
}
.lp-service-text-card--photo .lp-service-text-card__content p{
  display:block!important;
  margin:0!important;
  font-size:15px!important;
  line-height:1.62!important;
  color:#465267!important;
}
.lp-service-text-card__photo{
  position:static!important;
  float:right!important;
  width:132px!important;
  height:96px!important;
  margin:8px -2px 0 18px!important;
  background:transparent!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  overflow:visible!important;
}
.lp-service-text-card__photo::before{display:none!important;}
.lp-service-text-card__photo img{
  position:static!important;
  display:block!important;
  width:132px!important;
  height:96px!important;
  max-width:none!important;
  object-fit:cover!important;
  border-radius:12px!important;
  box-shadow:0 14px 24px rgba(15,23,42,.13)!important;
  transform:none!important;
  opacity:1!important;
}
.lp-service-text-card--photo:nth-child(2) .lp-service-text-card__photo img,
.lp-service-text-card--photo:nth-child(3) .lp-service-text-card__photo img{
  width:132px!important;
  height:96px!important;
  max-width:none!important;
  transform:none!important;
}
.lp-service-text-card--photo:hover{
  transform:translateY(-3px)!important;
  box-shadow:0 20px 48px rgba(15,23,42,.08)!important;
}
@media(max-width:900px){
  .lp-service-text-card--photo{min-height:0!important;}
  .lp-service-text-card--photo .lp-service-text-card__content{min-height:0!important;padding:22px!important;}
  .lp-service-text-card__photo{float:none!important;width:120px!important;height:88px!important;margin:14px 0 0 auto!important;}
  .lp-service-text-card__photo img,
  .lp-service-text-card--photo:nth-child(2) .lp-service-text-card__photo img,
  .lp-service-text-card--photo:nth-child(3) .lp-service-text-card__photo img{width:120px!important;height:88px!important;}
}

/* === LOCALPRINT v39: neutral hero overlay (remove red/pink tint) ===
   Keep the left-side white gradient for text readability, but remove the
   brand-red radial tint that made hero photos look pink/faded.
*/
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified,
.lp-page-hero.lp-svc-hero.lp-svc-hero--svc-bg,
.lp-svc-hero.lp-svc-hero--image-bg{
  background-image:
    linear-gradient(90deg,
      rgba(255,255,255,.99) 0%,
      rgba(255,255,255,.96) 34%,
      rgba(255,255,255,.78) 56%,
      rgba(255,255,255,.18) 100%
    ),
    var(--lp-svc-hero-bg) !important;
  background-size:auto, cover !important;
  background-position:left center, center right !important;
  background-repeat:no-repeat, no-repeat !important;
}

.lp-page-hero.lp-svc-hero.lp-svc-hero--unified::after,
.lp-page-hero.lp-svc-hero.lp-svc-hero--svc-bg::after,
.lp-svc-hero.lp-svc-hero--image-bg::after{
  background:none !important;
}

@media(max-width:900px){
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified,
  .lp-page-hero.lp-svc-hero.lp-svc-hero--svc-bg,
  .lp-svc-hero.lp-svc-hero--image-bg{
    background-image:
      linear-gradient(rgba(255,255,255,.97), rgba(255,255,255,.92)),
      var(--lp-svc-hero-bg) !important;
    background-size:auto, cover !important;
    background-position:center, center center !important;
  }
}


/* === LOCALPRINT v40: expert cards final micro-polish + client logos contain === */
.lp-service-text-card--photo .lp-service-text-card__content{
  padding:26px 30px 24px!important;
}
.lp-service-text-card__photo{
  width:142px!important;
  height:104px!important;
  margin:8px 0 10px 22px!important;
}
.lp-service-text-card__photo img,
.lp-service-text-card--photo:nth-child(2) .lp-service-text-card__photo img,
.lp-service-text-card--photo:nth-child(3) .lp-service-text-card__photo img{
  width:142px!important;
  height:104px!important;
  max-width:none!important;
  object-fit:cover!important;
  object-position:center!important;
  border-radius:13px!important;
}
#clients .lp-client-logo img,
.lp-client-logo img{
  object-fit:contain!important;
  object-position:center center!important;
  width:100%!important;
  height:100%!important;
  max-width:100%!important;
  max-height:100%!important;
}
@media(max-width:900px){
  .lp-service-text-card--photo .lp-service-text-card__content{padding:22px 24px!important;}
  .lp-service-text-card__photo{float:none!important;width:132px!important;height:96px!important;margin:14px 0 0 auto!important;}
  .lp-service-text-card__photo img,
  .lp-service-text-card--photo:nth-child(2) .lp-service-text-card__photo img,
  .lp-service-text-card--photo:nth-child(3) .lp-service-text-card__photo img{width:132px!important;height:96px!important;}
}

/* === LOCALPRINT v42: calculator section white background + red separators === */
.lp-calc-section{
  background:#fff!important;
  border-top:6px solid #E30613!important;
  border-bottom:6px solid #E30613!important;
  box-shadow:none!important;
}
.lp-calc-section::before,
.lp-calc-section::after{
  color:#E30613!important;
  opacity:.16!important;
  text-shadow:none!important;
}
.lp-calc-section::before{
  font-size:132px!important;
  left:6%!important;
  top:14%!important;
}
.lp-calc-section::after{
  font-size:146px!important;
  right:7%!important;
  bottom:6%!important;
}
.lp-calc-box--featured{
  background:#fff!important;
  border:1px solid rgba(227,6,19,.12)!important;
  box-shadow:0 18px 44px rgba(15,23,42,.08)!important;
}
.lp-calc-section .section-title::after{
  background:#E30613!important;
}
.lp-calc-note--featured{
  background:#fff!important;
  border-color:rgba(227,6,19,.20)!important;
  box-shadow:0 10px 26px rgba(227,6,19,.10)!important;
}
.lp-calc-note__icon,
.lp-calc-note--featured .lp-calc-note__icon{
  background:#E30613!important;
  color:#fff!important;
}
@media(max-width:900px){
  .lp-calc-section::before{font-size:92px!important;left:-4%!important;top:10%!important;opacity:.12!important;}
  .lp-calc-section::after{font-size:104px!important;right:-3%!important;bottom:4%!important;opacity:.12!important;}
}


/* === LOCALPRINT v43: final calculator polish + unified home calculator + elegant service hero buttons + contacts phone fix === */

/* 1) Calculator: cleaner white section with elegant red separators */
.lp-calc-section,
#lp-calc.lp-calc-section{
  position:relative!important;
  background:#fff!important;
  border-top:3px solid #E30613!important;
  border-bottom:3px solid #E30613!important;
  box-shadow:none!important;
  overflow:hidden!important;
}
.lp-calc-section::before,
.lp-calc-section::after,
#lp-calc.lp-calc-section::before,
#lp-calc.lp-calc-section::after{
  content:'₽'!important;
  position:absolute!important;
  z-index:0!important;
  display:block!important;
  pointer-events:none!important;
  font-weight:900!important;
  line-height:1!important;
  color:#E30613!important;
  opacity:.095!important;
  text-shadow:none!important;
}
.lp-calc-section::before,
#lp-calc.lp-calc-section::before{
  font-size:108px!important;
  left:7.5%!important;
  top:18%!important;
  transform:rotate(-9deg)!important;
}
.lp-calc-section::after,
#lp-calc.lp-calc-section::after{
  font-size:118px!important;
  right:8.5%!important;
  bottom:8%!important;
  transform:rotate(8deg)!important;
}
.lp-calc-section > .container,
#lp-calc.lp-calc-section > .container{
  position:relative!important;
  z-index:1!important;
}
.lp-calc-box--featured,
.lp-calc-box--home,
#lp-calc .lp-calc-box{
  background:#fff!important;
  border:1px solid rgba(227,6,19,.10)!important;
  box-shadow:0 22px 56px rgba(15,23,42,.10), 0 8px 22px rgba(227,6,19,.055)!important;
}
.lp-calc-section .section-title::after,
#lp-calc .section-title::after{
  background:#E30613!important;
}
#lp-calc .lp-calc-wrap{
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
}
#lp-calc .lp-calc-header{
  text-align:center!important;
}
#lp-calc .lp-calc-box{
  max-width:920px!important;
  margin:22px auto 0!important;
  padding:22px!important;
  border-radius:20px!important;
}
#lp-calc .lp-calc-note{
  display:block!important;
  margin:16px auto 0!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
  box-shadow:none!important;
  max-width:760px!important;
  color:#888!important;
  font-size:13px!important;
  text-align:center!important;
  line-height:1.4!important;
}

/* 2) Service hero buttons: slightly lighter, cleaner and more premium */
.lp-svc-hero__btns{
  gap:22px!important;
  margin-bottom:28px!important;
}
.lp-svc-hero__btns .btn{
  min-height:0!important;
  padding:13px 22px!important;
  border-radius:12px!important;
  font-size:15px!important;
  font-weight:750!important;
  line-height:1.2!important;
  letter-spacing:.01em!important;
  box-shadow:0 10px 24px rgba(15,23,42,.10)!important;
  transition:transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease!important;
}
.lp-svc-hero__btns .btn-primary{
  background:#E30613!important;
  border-color:#E30613!important;
  box-shadow:0 12px 28px rgba(227,6,19,.20)!important;
}
.lp-svc-hero__btns .btn-primary:hover{
  background:#C90011!important;
  border-color:#C90011!important;
  transform:translateY(-2px)!important;
  box-shadow:0 16px 34px rgba(227,6,19,.24)!important;
}
.lp-svc-hero__btns .btn-wa{
  background:#22C55E!important;
  border-color:#22C55E!important;
  box-shadow:0 12px 28px rgba(34,197,94,.18)!important;
}
.lp-svc-hero__btns .btn-wa:hover{
  background:#16A34A!important;
  border-color:#16A34A!important;
  transform:translateY(-2px)!important;
  box-shadow:0 16px 34px rgba(34,197,94,.22)!important;
}
.lp-svc-hero__btns .btn svg{
  width:18px!important;
  height:18px!important;
}

/* 3) Contacts page phone field: visible immediately, not only after focus */
.lp-contacts-form-box .lp-phone-field,
.lp-contacts-form-box p.lp-phone-field,
.lp-contacts-form-box .wpcf7-form-control-wrap[data-name="your-phone"],
.lp-contacts-form-box .wpcf7-form-control-wrap:has(input[type="tel"]){
  display:block!important;
  visibility:visible!important;
  opacity:1!important;
  width:100%!important;
  height:auto!important;
  min-height:0!important;
  margin:0 0 14px!important;
  overflow:visible!important;
}
.lp-contacts-form-box .lp-phone-field label{
  display:block!important;
  visibility:visible!important;
  opacity:1!important;
  color:#333!important;
  font-weight:750!important;
  line-height:1.35!important;
}
.lp-contacts-form-box input[type="tel"],
.lp-contacts-form-box .lp-phone-field input[type="tel"],
.lp-contacts-form-box .wpcf7-tel{
  display:block!important;
  visibility:visible!important;
  opacity:1!important;
  width:100%!important;
  min-height:44px!important;
  height:44px!important;
  padding:11px 14px!important;
  border:1px solid #D8D8D8!important;
  border-radius:10px!important;
  background:#fff!important;
  color:#1A1A1A!important;
  box-shadow:none!important;
  box-sizing:border-box!important;
  appearance:auto!important;
  -webkit-appearance:none!important;
}
.lp-contacts-form-box input[type="tel"]::placeholder,
.lp-contacts-form-box .wpcf7-tel::placeholder{
  color:#9CA3AF!important;
  opacity:1!important;
}
.lp-contacts-form-box input[type="tel"]:focus,
.lp-contacts-form-box .wpcf7-tel:focus{
  border-color:rgba(227,6,19,.55)!important;
  box-shadow:0 0 0 3px rgba(227,6,19,.08)!important;
  outline:none!important;
}

@media(max-width:900px){
  .lp-calc-section,
  #lp-calc.lp-calc-section{
    border-top-width:2px!important;
    border-bottom-width:2px!important;
  }
  .lp-calc-section::before,
  #lp-calc.lp-calc-section::before{font-size:78px!important;left:-2%!important;top:12%!important;opacity:.075!important;}
  .lp-calc-section::after,
  #lp-calc.lp-calc-section::after{font-size:88px!important;right:-3%!important;bottom:4%!important;opacity:.075!important;}
  .lp-svc-hero__btns{gap:12px!important;}
  .lp-svc-hero__btns .btn{padding:13px 18px!important;}
  #lp-calc .lp-calc-box{padding:18px!important;border-radius:18px!important;}
}

/* === LOCALPRINT v44: strict UI fixes — calculator consistency, buttons, contacts phone === */

/* Calculator: identical, centered header and elegant separators */
.lp-calc-section,
#lp-calc.lp-calc-section,
#lp-svc-calc.lp-calc-section{
  background:#fff!important;
  border-top:2px solid #E30613!important;
  border-bottom:2px solid #E30613!important;
  padding:42px 0 38px!important;
  overflow:hidden!important;
}
.lp-calc-section .container{position:relative!important;z-index:1!important;}
.lp-calc-section .lp-calc-header,
#lp-calc .lp-calc-header,
#lp-svc-calc .container > .section-title,
#lp-svc-calc .container > .section-subtitle{
  text-align:center!important;
}
.lp-calc-section .section-title,
#lp-calc .section-title,
#lp-svc-calc .section-title{
  display:block!important;
  width:100%!important;
  max-width:100%!important;
  margin-left:auto!important;
  margin-right:auto!important;
  text-align:center!important;
  font-size:clamp(26px,2.4vw,36px)!important;
  line-height:1.12!important;
  margin-bottom:8px!important;
}
.lp-calc-section .section-title::after,
#lp-calc .section-title::after,
#lp-svc-calc .section-title::after{
  content:''!important;
  display:block!important;
  width:42px!important;
  height:3px!important;
  border-radius:999px!important;
  background:#E30613!important;
  margin:12px auto 0!important;
}
.lp-calc-section .section-subtitle,
#lp-calc .section-subtitle,
#lp-svc-calc .section-subtitle{
  display:block!important;
  width:100%!important;
  max-width:100%!important;
  margin:0 auto 22px!important;
  text-align:center!important;
  color:#747B86!important;
  font-size:14px!important;
}
.lp-calc-section::before,
.lp-calc-section::after,
#lp-calc.lp-calc-section::before,
#lp-calc.lp-calc-section::after,
#lp-svc-calc.lp-calc-section::before,
#lp-svc-calc.lp-calc-section::after{
  content:'₽'!important;
  position:absolute!important;
  z-index:0!important;
  pointer-events:none!important;
  color:#E30613!important;
  opacity:.075!important;
  font-weight:900!important;
  line-height:1!important;
  text-shadow:none!important;
}
.lp-calc-section::before,
#lp-calc.lp-calc-section::before,
#lp-svc-calc.lp-calc-section::before{
  font-size:102px!important;
  left:8%!important;
  top:18%!important;
  transform:rotate(-9deg)!important;
}
.lp-calc-section::after,
#lp-calc.lp-calc-section::after,
#lp-svc-calc.lp-calc-section::after{
  font-size:112px!important;
  right:9%!important;
  bottom:9%!important;
  transform:rotate(8deg)!important;
}
.lp-calc-box--featured,
.lp-calc-box--home,
#lp-calc .lp-calc-box,
#lp-svc-calc .lp-calc-box{
  max-width:920px!important;
  margin:22px auto 0!important;
  padding:24px!important;
  border-radius:22px!important;
  background:#fff!important;
  border:1px solid rgba(227,6,19,.12)!important;
  box-shadow:0 22px 58px rgba(15,23,42,.095), 0 8px 22px rgba(227,6,19,.045)!important;
}
#lp-calc .lp-calc-wrap{background:transparent!important;border:0!important;box-shadow:none!important;}
#lp-calc .lp-calc-note,
#lp-svc-calc .lp-calc-note--plain,
.lp-calc-note--plain{
  display:block!important;
  max-width:820px!important;
  margin:16px auto 0!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
  box-shadow:none!important;
  text-align:center!important;
  color:#8A8F98!important;
  font-size:13px!important;
  line-height:1.45!important;
}
/* Button injected into calculator summary */
.lp-calc-btn-wrap,
.lp-calc-btn-wrap--injected,
.lp-calc-btn-wrap--v44{
  display:flex!important;
  width:100%!important;
  margin-top:16px!important;
  padding-top:16px!important;
  border-top:1px solid rgba(15,23,42,.08)!important;
  box-sizing:border-box!important;
}
.lp-calc-btn-wrap .lp-calc-order-btn,
.lp-calc-btn-wrap--v44 .lp-calc-order-btn{
  width:100%!important;
  min-width:0!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  padding:13px 18px!important;
  border-radius:12px!important;
  background:#E30613!important;
  border-color:#E30613!important;
  color:#fff!important;
  font-size:14px!important;
  font-weight:800!important;
  line-height:1.2!important;
  text-align:center!important;
  box-shadow:0 12px 28px rgba(227,6,19,.18)!important;
}
.lp-calc-btn-wrap .lp-calc-order-btn:hover,
.lp-calc-btn-wrap--v44 .lp-calc-order-btn:hover{
  background:#C90011!important;
  border-color:#C90011!important;
  transform:translateY(-1px)!important;
  box-shadow:0 16px 32px rgba(227,6,19,.22)!important;
}

/* Service Hero buttons: final elegant pass */
.lp-svc-hero__btns{
  display:flex!important;
  align-items:center!important;
  gap:18px!important;
  margin-bottom:30px!important;
}
.lp-svc-hero__btns .btn{
  min-height:46px!important;
  padding:13px 24px!important;
  border-radius:14px!important;
  font-size:14.5px!important;
  font-weight:800!important;
  line-height:1.15!important;
  letter-spacing:.005em!important;
  box-shadow:0 9px 22px rgba(15,23,42,.10)!important;
  transition:transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease!important;
}
.lp-svc-hero__btns .btn-primary{
  background:#E30613!important;
  border-color:#E30613!important;
  box-shadow:0 12px 28px rgba(227,6,19,.18)!important;
}
.lp-svc-hero__btns .btn-primary:hover{
  background:#C90011!important;
  border-color:#C90011!important;
  transform:translateY(-2px)!important;
  box-shadow:0 16px 34px rgba(227,6,19,.23)!important;
}
.lp-svc-hero__btns .btn-wa{
  background:#22C55E!important;
  border-color:#22C55E!important;
  box-shadow:0 12px 28px rgba(34,197,94,.16)!important;
}
.lp-svc-hero__btns .btn-wa:hover{
  background:#16A34A!important;
  border-color:#16A34A!important;
  transform:translateY(-2px)!important;
  box-shadow:0 16px 34px rgba(34,197,94,.21)!important;
}
.lp-svc-hero__btns .btn svg{width:18px!important;height:18px!important;}

/* Contacts phone field: force stable visible input in light contact card */
.lp-contacts-form-box .lp-phone-field,
.lp-contacts-form-box p.lp-phone-field,
.lp-contacts-form-box .lp-contact-phone-fixed,
.lp-contacts-form-box .wpcf7-form-control-wrap[data-name="your-phone"],
.lp-contacts-form-box .wpcf7-form-control-wrap:has(input[type="tel"]){
  display:block!important;
  visibility:visible!important;
  opacity:1!important;
  width:100%!important;
  height:auto!important;
  margin:0 0 14px!important;
  overflow:visible!important;
}
.lp-contacts-form-box .lp-phone-field label,
.lp-contacts-form-box .lp-contact-phone-fixed label{
  display:block!important;
  visibility:visible!important;
  opacity:1!important;
  color:#333!important;
  font-weight:750!important;
  line-height:1.35!important;
}
.lp-contacts-form-box input[type="tel"],
.lp-contacts-form-box .wpcf7-tel,
.lp-contacts-form-box input[name="your-phone"],
.lp-contacts-form-box input[name*="phone"],
.lp-contacts-form-box input[name*="tel"]{
  display:block!important;
  visibility:visible!important;
  opacity:1!important;
  width:100%!important;
  min-height:44px!important;
  height:44px!important;
  margin-top:8px!important;
  padding:11px 14px!important;
  border:1px solid #D8D8D8!important;
  border-radius:10px!important;
  background:#fff!important;
  color:#1A1A1A!important;
  box-shadow:none!important;
  box-sizing:border-box!important;
  -webkit-appearance:none!important;
  appearance:none!important;
}
.lp-contacts-form-box input[type="tel"]::placeholder,
.lp-contacts-form-box .wpcf7-tel::placeholder{color:#9CA3AF!important;opacity:1!important;}
.lp-contacts-form-box input[type="tel"]:focus,
.lp-contacts-form-box .wpcf7-tel:focus{border-color:rgba(227,6,19,.55)!important;box-shadow:0 0 0 3px rgba(227,6,19,.08)!important;outline:none!important;}

@media(max-width:900px){
  .lp-calc-section,#lp-calc.lp-calc-section,#lp-svc-calc.lp-calc-section{padding:34px 0 32px!important;border-top-width:2px!important;border-bottom-width:2px!important;}
  .lp-calc-section::before,#lp-calc.lp-calc-section::before,#lp-svc-calc.lp-calc-section::before{font-size:78px!important;left:-3%!important;top:12%!important;opacity:.06!important;}
  .lp-calc-section::after,#lp-calc.lp-calc-section::after,#lp-svc-calc.lp-calc-section::after{font-size:88px!important;right:-3%!important;bottom:5%!important;opacity:.06!important;}
  .lp-calc-box--featured,#lp-calc .lp-calc-box,#lp-svc-calc .lp-calc-box{padding:18px!important;border-radius:18px!important;}
  .lp-svc-hero__btns{gap:12px!important;}
  .lp-svc-hero__btns .btn{min-height:46px!important;padding:13px 18px!important;}
}

/* === LOCALPRINT v45: final surgical UI fixes === */
/* Service calculator: never show duplicate order buttons inside service calc */
#lp-svc-calc .lp-calc-box--featured .lp-calc-btn-wrap--v44 + .lp-calc-btn-wrap--v44,
#lp-svc-calc .lp-calc-box--featured .lp-calc-btn-wrap--injected + .lp-calc-btn-wrap--v44,
#lp-svc-calc .lp-calc-box--featured .lp-calc-actions--inside-summary + .lp-calc-btn-wrap--v44{
  display:none!important;
}

/* Contacts page phone field: same visual language as the other contact inputs */
.lp-contacts-form-box .lp-contact-phone-fixed-final,
.lp-contacts-form-box p.lp-contact-phone-fixed-final,
.lp-contacts-form-box .lp-phone-field,
.lp-contacts-form-box p.lp-phone-field{
  margin:0 0 12px!important;
  padding:0!important;
  display:block!important;
  width:100%!important;
}
.lp-contacts-form-box .lp-contact-phone-fixed-final label,
.lp-contacts-form-box .lp-phone-field label{
  display:block!important;
  margin:0!important;
  padding:0!important;
  font-size:13px!important;
  font-weight:750!important;
  line-height:1.35!important;
  color:#333!important;
}
.lp-contacts-form-box input.lp-contact-phone-input-final,
.lp-contacts-form-box .lp-phone-field input[type="tel"],
.lp-contacts-form-box input[type="tel"],
.lp-contacts-form-box input[name="your-phone"]{
  display:block!important;
  width:100%!important;
  height:44px!important;
  min-height:44px!important;
  margin:7px 0 0!important;
  padding:10px 14px!important;
  border:1px solid #D8D8D8!important;
  border-radius:10px!important;
  background:#F7F7F7!important;
  color:#1A1A1A!important;
  font-size:14px!important;
  line-height:1.2!important;
  box-shadow:none!important;
  box-sizing:border-box!important;
  -webkit-appearance:none!important;
  appearance:none!important;
}
.lp-contacts-form-box input.lp-contact-phone-input-final::placeholder,
.lp-contacts-form-box .lp-phone-field input[type="tel"]::placeholder,
.lp-contacts-form-box input[type="tel"]::placeholder{
  color:#A3A3A3!important;
  opacity:1!important;
}
.lp-contacts-form-box input.lp-contact-phone-input-final:focus,
.lp-contacts-form-box .lp-phone-field input[type="tel"]:focus,
.lp-contacts-form-box input[type="tel"]:focus{
  background:#fff!important;
  border-color:#CFCFCF!important;
  box-shadow:0 0 0 3px rgba(227,6,19,.06)!important;
  outline:none!important;
}

/* Service Hero buttons: visibly more elegant, lighter and less blocky */
.lp-svc-hero__btns{
  gap:24px!important;
  margin-top:20px!important;
  margin-bottom:30px!important;
}
.lp-svc-hero__btns .btn,
.lp-svc-hero__btns .btn.btn-lg{
  min-height:40px!important;
  height:auto!important;
  padding:10px 20px!important;
  border-radius:10px!important;
  font-size:14px!important;
  font-weight:760!important;
  line-height:1.15!important;
  letter-spacing:.005em!important;
  border-width:1px!important;
  box-shadow:0 8px 18px rgba(15,23,42,.09)!important;
  transform:translateZ(0);
  transition:transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease!important;
}
.lp-svc-hero__btns .btn-primary,
.lp-svc-hero__btns .btn.btn-primary{
  background:#E51B16!important;
  border-color:#E51B16!important;
  box-shadow:0 9px 20px rgba(227,6,19,.16)!important;
}
.lp-svc-hero__btns .btn-primary:hover,
.lp-svc-hero__btns .btn.btn-primary:hover{
  background:#C90011!important;
  border-color:#C90011!important;
  transform:translateY(-2px)!important;
  box-shadow:0 13px 26px rgba(227,6,19,.22)!important;
}
.lp-svc-hero__btns .btn-wa,
.lp-svc-hero__btns .btn.btn-wa{
  background:#21BF5B!important;
  border-color:#21BF5B!important;
  box-shadow:0 9px 20px rgba(33,191,91,.15)!important;
}
.lp-svc-hero__btns .btn-wa:hover,
.lp-svc-hero__btns .btn.btn-wa:hover{
  background:#18A34A!important;
  border-color:#18A34A!important;
  transform:translateY(-2px)!important;
  box-shadow:0 13px 26px rgba(24,163,74,.21)!important;
}
.lp-svc-hero__btns .btn svg{
  width:17px!important;
  height:17px!important;
  margin-right:7px!important;
}
@media(max-width:900px){
  .lp-svc-hero__btns{gap:12px!important;margin-top:18px!important;}
  .lp-svc-hero__btns .btn,
  .lp-svc-hero__btns .btn.btn-lg{min-height:42px!important;padding:11px 17px!important;font-size:14px!important;}
}

/* =========================================
   ABOUT PAGE — RELAUNCH
========================================= */
.lp-about2-hero {
  background: #fff;
  padding: 56px 0 64px;
  border-bottom: 1px solid rgba(15,23,42,.08);
}

.lp-about2-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 44px;
  align-items: center;
}

.lp-about2-hero__content {
  max-width: 560px;
}

.lp-about2-hero__title {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -0.055em;
  font-weight: 800;
  color: #0f172a;
}

.lp-about2-hero__text {
  margin: 0;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.65;
  color: #374151;
}

.lp-about2-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.lp-about2-hero__image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 22px 60px rgba(15, 23, 42, .12);
  min-height: 390px;
}

.lp-about2-hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.12), rgba(227,6,19,.08));
  pointer-events: none;
}

.lp-about2-hero__image img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: block;
  object-fit: cover;
  object-position: center 34%;
}

.lp-about2-section {
  padding: 70px 0;
  background: #fff;
}

.lp-about2-section--soft {
  background: #f7f7f8;
}

.lp-section-kicker {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lp-about2-title {
  margin: 0;
  color: #111827;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.lp-about2-intro {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: start;
}

.lp-about2-text {
  max-width: 720px;
  color: #374151;
  font-size: 17px;
  line-height: 1.8;
}

.lp-about2-text p {
  margin: 0 0 18px;
}

.lp-about2-text p:last-child {
  margin-bottom: 0;
}

.lp-about2-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.lp-about2-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.lp-about2-card {
  min-height: 230px;
  padding: 30px 28px;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
}

.lp-about2-card__icon,
.lp-about2-service__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 16px;
  background: #e30613;
  color: #fff;
  box-shadow: 0 12px 28px rgba(227, 6, 19, .20);
}

.lp-about2-card__icon svg,
.lp-about2-service__icon svg {
  width: 27px;
  height: 27px;
  stroke: currentColor;
  stroke-width: 3.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-about2-card h3 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 21px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.lp-about2-card p {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
}

.lp-about2-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.lp-about2-service {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 112px;
  padding: 20px;
  color: #111827;
  text-decoration: none;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15,23,42,.05);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.lp-about2-service:hover {
  color: #111827;
  transform: translateY(-3px);
  border-color: rgba(227,6,19,.25);
  box-shadow: 0 18px 44px rgba(15,23,42,.09);
}

.lp-about2-service__icon {
  flex: 0 0 48px;
  margin-bottom: 0;
  background: #fff1f1;
  color: #e30613;
  box-shadow: none;
}

.lp-about2-service strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lp-about2-service small {
  display: block;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.35;
}

.lp-about2-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.lp-about2-step {
  position: relative;
  padding: 26px 22px;
  min-height: 190px;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  background: #fff;
}

.lp-about2-step__num {
  margin-bottom: 18px;
  color: rgba(227,6,19,.22);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.lp-about2-step h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.lp-about2-step p {
  margin: 0;
  color: #5f6b7a;
  font-size: 14px;
  line-height: 1.6;
}

.lp-about2-visit {
  padding: 64px 0;
  background: linear-gradient(135deg, #191919 0%, #242424 58%, #7f090f 100%);
  color: #fff;
}

.lp-about2-visit__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.lp-about2-visit h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.lp-about2-visit p {
  margin: 0;
  max-width: 650px;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.7;
}

.lp-about2-visit .lp-section-kicker {
  color: #ff4b4b;
}

.lp-about2-visit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .lp-about2-hero__grid,
  .lp-about2-intro {
    grid-template-columns: 1fr;
  }

  .lp-about2-hero__image,
  .lp-about2-hero__image img {
    min-height: 320px;
  }

  .lp-about2-cards,
  .lp-about2-services,
  .lp-about2-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-about2-visit__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .lp-about2-hero {
    padding: 34px 0 44px;
  }

  .lp-about2-section {
    padding: 48px 0;
  }

  .lp-about2-hero__actions,
  .lp-about2-visit__actions {
    width: 100%;
  }

  .lp-about2-hero__actions .btn,
  .lp-about2-visit__actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }

  .lp-about2-cards,
  .lp-about2-services,
  .lp-about2-steps {
    grid-template-columns: 1fr;
  }

  .lp-about2-card,
  .lp-about2-step {
    min-height: auto;
  }

  .lp-about2-hero__image,
  .lp-about2-hero__image img {
    min-height: 250px;
  }
}

/* LocalPrint release v1 generated page content */
.lp-release-page .lead{font-size:20px;line-height:1.55;color:#2b2b2b;max-width:900px;margin:0 auto 24px}.lp-release-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;margin-top:24px}.lp-release-card{background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:18px;padding:24px;box-shadow:0 8px 24px rgba(0,0,0,.04)}.lp-release-card h3{margin:0 0 10px;font-size:20px}.lp-release-card p{margin:0;color:#555;line-height:1.55}.lp-release-page section{margin:42px 0}.lp-release-table{width:100%;border-collapse:separate;border-spacing:0;background:#fff;border-radius:16px;overflow:hidden;border:1px solid rgba(0,0,0,.08)}.lp-release-table th,.lp-release-table td{padding:16px 18px;border-bottom:1px solid rgba(0,0,0,.06);text-align:left}.lp-release-faq details{background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:14px;padding:16px 18px;margin:10px 0}.lp-release-faq summary{font-weight:700;cursor:pointer}.lp-release-links ul{display:flex;flex-wrap:wrap;gap:12px;padding:0;margin:16px 0;list-style:none}.lp-release-links a{display:inline-block;padding:10px 14px;border-radius:999px;background:#fff1f1;color:#d71914;text-decoration:none;font-weight:700}.lp-release-promo{background:#fff1f1;border:1px solid rgba(239,29,22,.18);border-radius:20px;padding:24px;margin:24px 0}.lp-release-cta{background:#151515;color:#fff;border-radius:24px;padding:30px}.lp-release-cta h2,.lp-release-cta p{color:#fff}@media(max-width:768px){.lp-release-grid{grid-template-columns:1fr}.lp-release-page .lead{font-size:17px}.lp-release-card{padding:18px}.lp-release-page section{margin:30px 0}}

/* LocalPrint Release v1.3 */
.lp-release-accordion{margin:40px 0;padding:28px;border-radius:24px;background:#fff;box-shadow:0 12px 34px rgba(15,23,42,.08)}
.lp-release-accordion h2{margin:0 0 18px;font-size:clamp(24px,3vw,34px)}
.lp-release-accordion details{border:1px solid rgba(15,23,42,.12);border-radius:16px;background:#fafafa;margin:10px 0;overflow:hidden;transition:background .2s,border-color .2s}
.lp-release-accordion details[open]{background:#fff;border-color:rgba(220,38,38,.28)}
.lp-release-accordion summary{cursor:pointer;list-style:none;padding:18px 20px;font-weight:800;color:#111827;display:flex;align-items:center;justify-content:space-between;gap:16px}
.lp-release-accordion summary::-webkit-details-marker{display:none}
.lp-release-accordion summary:after{content:'+';font-size:24px;line-height:1;color:#dc2626;font-weight:700}
.lp-release-accordion details[open] summary:after{content:'−'}
.lp-release-accordion details p{margin:0;padding:0 20px 20px;color:#4b5563;line-height:1.65}
.lp-dropdown .menu-item a,.lp-nav .sub-menu a{white-space:nowrap}
@media(max-width:768px){.lp-release-accordion{padding:20px;border-radius:18px}.lp-release-accordion summary{padding:16px}.lp-release-accordion details p{padding:0 16px 16px}}

/* === LOCALPRINT RELEASE v1.6: compact menu and new SEO hero assets === */
.lp-header{overflow:visible!important;}
.lp-header .container{max-width:1320px!important;padding-left:20px!important;padding-right:20px!important;}
.lp-header__inner{gap:18px!important;}
.lp-header__logo{position:relative!important;z-index:5!important;margin-right:12px!important;}
.lp-header__logo img{max-width:170px!important;height:48px!important;}
.lp-nav{min-width:0!important;flex:1 1 auto!important;}
.lp-nav__list{justify-content:flex-end!important;gap:6px!important;}
.lp-nav__link{font-size:13px!important;font-weight:750!important;padding:9px 8px!important;white-space:nowrap!important;}
.lp-nav__item:first-child .lp-nav__link{padding-left:10px!important;}
.lp-dropdown,.lp-nav .sub-menu{min-width:260px!important;z-index:9999!important;}
.lp-header__actions{flex-shrink:0!important;margin-left:10px!important;}
.lp-header__actions .btn{padding:12px 18px!important;font-size:13px!important;border-radius:10px!important;}
@media(max-width:1220px){
  .lp-header__logo img{max-width:150px!important;height:44px!important;}
  .lp-nav__list{gap:2px!important;}
  .lp-nav__link{font-size:12px!important;padding:8px 6px!important;}
  .lp-header__actions .btn{padding:10px 14px!important;}
}
@media(max-width:1060px){
  .lp-nav{display:none!important;}
  .lp-burger{display:flex!important;}
}
.lp-svc-hero--image-bg{background-size:cover!important;background-position:center right!important;background-repeat:no-repeat!important;}
.lp-svc-hero--image-bg:before{content:''!important;position:absolute!important;inset:0!important;background:linear-gradient(90deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.94) 34%,rgba(255,255,255,.72) 58%,rgba(255,255,255,.18) 100%)!important;pointer-events:none!important;}
.lp-svc-hero--image-bg .container{position:relative!important;z-index:2!important;}
.lp-svc-hero-facts{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:0!important;margin-top:30px!important;max-width:980px!important;background:rgba(255,255,255,.86)!important;backdrop-filter:blur(4px)!important;border-radius:0!important;box-shadow:none!important;}
.lp-svc-hero-fact{display:flex!important;align-items:center!important;gap:16px!important;padding:18px 24px!important;border-right:1px solid rgba(15,23,42,.10)!important;}
.lp-svc-hero-fact:last-child{border-right:0!important;}
.lp-svc-hero-fact__icon{display:flex!important;align-items:center!important;justify-content:center!important;width:32px!important;height:32px!important;flex:0 0 32px!important;color:#E30613!important;}
.lp-svc-hero-fact__icon svg{width:28px!important;height:28px!important;fill:none!important;stroke:currentColor!important;stroke-width:2!important;stroke-linecap:round!important;stroke-linejoin:round!important;}
.lp-svc-hero-fact__title{display:block!important;font-weight:850!important;font-size:15px!important;color:#111827!important;line-height:1.18!important;}
.lp-svc-hero-fact__sub{display:block!important;font-size:12px!important;color:#6B7280!important;line-height:1.25!important;margin-top:3px!important;}
@media(max-width:820px){
  .lp-svc-hero-facts{grid-template-columns:1fr!important;margin-top:22px!important;border-radius:16px!important;overflow:hidden!important;}
  .lp-svc-hero-fact{border-right:0!important;border-bottom:1px solid rgba(15,23,42,.08)!important;padding:16px 18px!important;}
  .lp-svc-hero-fact:last-child{border-bottom:0!important;}
  .lp-svc-hero--image-bg:before{background:rgba(255,255,255,.92)!important;}
}

/* === LOCALPRINT RELEASE v1.7: Poligraphiya hub and grouped service menu === */
.lp-dropdown .lp-menu-section-title > a,
.lp-nav .sub-menu .lp-menu-section-title > a{
  font-weight:900!important;
  color:#111827!important;
  background:#fff1f1!important;
  border-left:3px solid #E30613!important;
  pointer-events:auto!important;
  margin-top:4px!important;
}
.lp-dropdown .lp-menu-section-title--mt > a,
.lp-nav .sub-menu .lp-menu-section-title--mt > a{margin-top:12px!important;}
.lp-dropdown .lp-menu-subitem > a,
.lp-nav .sub-menu .lp-menu-subitem > a{padding-left:24px!important;font-size:13px!important;}
.lp-hub-intro .lead{max-width:1000px!important;}
.lp-section-head{margin-bottom:22px;max-width:920px;}
.lp-section-head h2{font-size:clamp(28px,3vw,42px);margin:0 0 10px;color:#111827;}
.lp-section-head p{font-size:17px;line-height:1.6;color:#4b5563;margin:0;}
.lp-hub-service-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;margin-top:24px;}
.lp-hub-service-card{display:flex;flex-direction:column;min-height:100%;background:#fff;border:1px solid rgba(15,23,42,.10);border-radius:22px;overflow:hidden;text-decoration:none;color:#111827;box-shadow:0 12px 30px rgba(15,23,42,.06);transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;}
.lp-hub-service-card:hover{transform:translateY(-3px);box-shadow:0 18px 44px rgba(15,23,42,.11);border-color:rgba(227,6,19,.28);}
.lp-hub-service-card img{width:100%;height:190px;object-fit:cover;background:#f5f5f5;display:block;}
.lp-hub-service-card span{display:block;font-size:21px;font-weight:900;margin:18px 20px 6px;}
.lp-hub-service-card small{display:block;font-size:14px;line-height:1.5;color:#5b6472;margin:0 20px 20px;}
.lp-hub-gallery-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:24px;}
.lp-hub-gallery-grid figure{margin:0;position:relative;overflow:hidden;border-radius:22px;background:#111827;box-shadow:0 14px 36px rgba(15,23,42,.12);}
.lp-hub-gallery-grid img{width:100%;height:230px;object-fit:cover;display:block;transition:transform .25s ease;}
.lp-hub-gallery-grid figure:hover img{transform:scale(1.04);}
.lp-hub-gallery-grid figcaption{position:absolute;left:14px;bottom:14px;padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.92);font-weight:850;color:#111827;box-shadow:0 8px 20px rgba(0,0,0,.12);}
.lp-poligraphiya-hub .lp-release-card{min-height:100%;}
.lp-hub-cta .btn-outline{display:inline-flex;align-items:center;justify-content:center;margin-left:10px;border:1px solid rgba(255,255,255,.55);color:#fff!important;background:transparent;border-radius:12px;padding:12px 18px;text-decoration:none;font-weight:800;}
.lp-hub-cta .btn-outline:hover{background:rgba(255,255,255,.12);}
@media(max-width:900px){
  .lp-hub-service-grid,.lp-hub-gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:640px){
  .lp-hub-service-grid,.lp-hub-gallery-grid{grid-template-columns:1fr;}
  .lp-hub-service-card img,.lp-hub-gallery-grid img{height:210px;}
  .lp-hub-cta .btn-outline{margin-left:0;margin-top:10px;width:100%;}
}


/* === LOCALPRINT v1.8.1: Poligraphiya hero image + quick facts style fix === */
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified[style*="hero-polighrafiia.webp"]{
  min-height:430px!important;
  background-position:center right!important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified[style*="hero-polighrafiia.webp"] .lp-svc-hero__content{
  width:min(620px,100%)!important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified[style*="hero-polighrafiia.webp"] .lp-svc-hero-facts{
  width:min(900px, calc(100vw - 140px))!important;
  max-width:none!important;
  margin-top:24px!important;
  display:grid!important;
  grid-template-columns:repeat(3,minmax(240px,1fr))!important;
  gap:0!important;
  background:transparent!important;
  box-shadow:none!important;
  border:0!important;
  overflow:visible!important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified[style*="hero-polighrafiia.webp"] .lp-svc-hero-fact{
  min-height:70px!important;
  display:flex!important;
  flex-direction:row!important;
  align-items:center!important;
  gap:16px!important;
  padding:8px 30px 8px 0!important;
  background:transparent!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified[style*="hero-polighrafiia.webp"] .lp-svc-hero-fact + .lp-svc-hero-fact{
  border-left:1px solid rgba(17,24,39,.16)!important;
  padding-left:30px!important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified[style*="hero-polighrafiia.webp"] .lp-svc-hero-fact__icon{
  width:38px!important;height:38px!important;min-width:38px!important;
  background:transparent!important;box-shadow:none!important;color:#E30613!important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified[style*="hero-polighrafiia.webp"] .lp-svc-hero-fact__icon svg{
  width:32px!important;height:32px!important;stroke:#E30613!important;fill:none!important;stroke-width:2.25!important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified[style*="hero-polighrafiia.webp"] .lp-svc-hero-fact strong{
  font-size:15px!important;line-height:1.18!important;font-weight:800!important;color:#111827!important;margin:0 0 4px!important;
}
.lp-page-hero.lp-svc-hero.lp-svc-hero--unified[style*="hero-polighrafiia.webp"] .lp-svc-hero-fact small{
  font-size:12px!important;line-height:1.3!important;color:#4b5563!important;margin:0!important;
}
@media(max-width:900px){
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified[style*="hero-polighrafiia.webp"]{min-height:auto!important;}
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified[style*="hero-polighrafiia.webp"] .lp-svc-hero-facts{grid-template-columns:1fr!important;width:100%!important;gap:12px!important;}
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified[style*="hero-polighrafiia.webp"] .lp-svc-hero-fact{background:rgba(255,255,255,.90)!important;border:1px solid rgba(227,6,19,.10)!important;border-radius:14px!important;padding:12px 14px!important;}
  .lp-page-hero.lp-svc-hero.lp-svc-hero--unified[style*="hero-polighrafiia.webp"] .lp-svc-hero-fact + .lp-svc-hero-fact{border-left:1px solid rgba(227,6,19,.10)!important;padding-left:14px!important;}
}

/* =====================================================================
   LocalPrint v1.8.2 — Hub page styles (/polighrafiia)
   ===================================================================== */

/* Общие секции хаба */
.lp-hub-v18 .lp-hub-section { padding: 60px 0; }
.lp-hub-v18 .lp-hub-section.section-bg { background: #f8fafc; }

/* Заголовок секции */
.lp-hub-head { text-align: center; margin-bottom: 40px; }
.lp-hub-head__title { font-size: 28px; font-weight: 800; color: #111827; margin: 0 0 12px; }
.lp-hub-head__sub { font-size: 16px; color: #6b7280; margin: 0 auto; max-width: 600px; }

/* === Карточки услуг === */
.lp-hub-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-hub-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .22s, transform .22s;
}
.lp-hub-card:hover {
  box-shadow: 0 8px 32px rgba(17,24,39,.10);
  transform: translateY(-3px);
  text-decoration: none;
}
.lp-hub-card__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f3f4f6;
}
.lp-hub-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.lp-hub-card:hover .lp-hub-card__img-wrap img { transform: scale(1.04); }
.lp-hub-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.lp-hub-card__title { font-size: 17px; font-weight: 700; color: #111827; }
.lp-hub-card__desc { font-size: 14px; color: #6b7280; margin: 0; flex: 1; }
.lp-hub-card__link { font-size: 14px; font-weight: 600; color: #ef1d16; margin-top: 8px; }

/* === Почему выбирают === */
.lp-hub-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.lp-hub-why-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid #e5e7eb;
  text-align: center;
}
.lp-hub-why-card__icon { margin: 0 auto 16px; display: flex; justify-content: center; }
.lp-hub-why-card__title { font-size: 15px; font-weight: 700; color: #111827; margin: 0 0 8px; }
.lp-hub-why-card__text { font-size: 14px; color: #6b7280; margin: 0; }

/* === Галерея === */
.lp-hub-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp-hub-gallery-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
}
.lp-hub-gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.lp-hub-gallery-item figcaption {
  text-align: center;
  font-size: 14px;
  color: #6b7280;
  padding: 10px 0;
}

/* === Варианты сотрудничества === */
.lp-hub-coop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-hub-coop-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid #e5e7eb;
}
.lp-hub-coop-card--link { border-color: #ef1d16; }
.lp-hub-coop-card__title { font-size: 17px; font-weight: 700; color: #111827; margin: 0 0 12px; }
.lp-hub-coop-card__text { font-size: 15px; color: #6b7280; margin: 0 0 16px; }
.lp-hub-coop-card__cta { font-size: 14px; font-weight: 600; color: #ef1d16; text-decoration: none; }
.lp-hub-coop-card__cta:hover { text-decoration: underline; }

/* Адаптивность */
@media (max-width: 1024px) {
  .lp-hub-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .lp-hub-cards-grid,
  .lp-hub-gallery-grid,
  .lp-hub-coop-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-hub-why-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-hub-head__title { font-size: 22px; }
}
@media (max-width: 540px) {
  .lp-hub-cards-grid,
  .lp-hub-gallery-grid,
  .lp-hub-coop-grid,
  .lp-hub-why-grid { grid-template-columns: 1fr; }
  .lp-hub-v18 .lp-hub-section { padding: 40px 0; }
}

/* LocalPrint v1.8.4 — simplified SEO hub for /polighrafiia */
.lp-polighrafiia-seo-simple .lp-hub-section{padding:64px 0;}
.lp-polighrafiia-seo-simple .lp-hub-text-wrap{max-width:980px;margin:0 auto;}
.lp-polighrafiia-seo-simple .lp-hub-seo-text{font-size:17px;line-height:1.78;color:#444;}
.lp-polighrafiia-seo-simple .lp-hub-seo-text p{margin:0 0 18px;}
.lp-polighrafiia-seo-simple .lp-hub-service-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:28px;}
.lp-polighrafiia-seo-simple .lp-hub-service-card{display:flex;flex-direction:column;gap:10px;padding:24px;border-radius:20px;background:#fff;border:1px solid rgba(0,0,0,.08);box-shadow:0 14px 36px rgba(0,0,0,.055);text-decoration:none;color:#1A1A1A;transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;min-height:145px;}
.lp-polighrafiia-seo-simple .lp-hub-service-card:hover{transform:translateY(-3px);box-shadow:0 18px 44px rgba(0,0,0,.08);border-color:rgba(227,6,19,.22);}
.lp-polighrafiia-seo-simple .lp-hub-service-card__label{font-size:20px;font-weight:850;line-height:1.2;}
.lp-polighrafiia-seo-simple .lp-hub-service-card__text{font-size:15px;line-height:1.55;color:#666;}
.lp-polighrafiia-seo-simple .lp-hub-service-card:after{content:'Подробнее →';margin-top:auto;color:#E30613;font-weight:800;font-size:14px;}
@media (max-width: 900px){.lp-polighrafiia-seo-simple .lp-hub-service-grid{grid-template-columns:repeat(2,minmax(0,1fr));}.lp-polighrafiia-seo-simple .lp-hub-section{padding:48px 0;}}
@media (max-width: 560px){.lp-polighrafiia-seo-simple .lp-hub-service-grid{grid-template-columns:1fr;}.lp-polighrafiia-seo-simple .lp-hub-seo-text{font-size:16px;}.lp-polighrafiia-seo-simple .lp-hub-service-card{min-height:0;padding:20px;}}


/* LocalPrint v1.8.5 — final polish for /polighrafiia SEO hub */
.lp-polighrafiia-seo-simple .lp-hub-section{padding:54px 0!important;}
.lp-polighrafiia-seo-simple .lp-hub-section--seo-text{padding-top:62px!important;padding-bottom:36px!important;}
.lp-polighrafiia-seo-simple .lp-hub-text-wrap{max-width:940px!important;margin:0 auto!important;}
.lp-polighrafiia-seo-simple .lp-hub-seo-text{font-size:17px!important;line-height:1.78!important;color:#3f4652!important;display:grid!important;gap:22px!important;margin-top:22px!important;}
.lp-polighrafiia-seo-simple .lp-hub-seo-block{padding:0!important;}
.lp-polighrafiia-seo-simple .lp-hub-seo-block h3{margin:0 0 8px!important;font-size:22px!important;line-height:1.25!important;color:#111827!important;font-weight:900!important;}
.lp-polighrafiia-seo-simple .lp-hub-seo-block p{margin:0!important;}
.lp-polighrafiia-seo-simple .lp-hub-section--services{padding-top:38px!important;padding-bottom:54px!important;}
.lp-polighrafiia-seo-simple .lp-hub-section--services .container{max-width:1080px!important;}
.lp-polighrafiia-seo-simple .lp-hub-service-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:20px!important;margin-top:28px!important;}
.lp-polighrafiia-seo-simple .lp-hub-service-card{min-height:172px!important;padding:28px!important;border-radius:22px!important;}
.lp-polighrafiia-seo-simple .lp-hub-service-card__label{font-size:21px!important;font-weight:900!important;}
.lp-polighrafiia-seo-simple .lp-hub-service-card__text{font-size:15px!important;line-height:1.55!important;}
.lp-polighrafiia-seo-simple .lp-hub-section--faq{padding-top:50px!important;padding-bottom:62px!important;}
.lp-polighrafiia-seo-simple .lp-faq--modern{max-width:980px!important;gap:14px!important;}
.lp-polighrafiia-seo-simple .lp-faq--modern .lp-faq-item{border-radius:18px!important;box-shadow:0 14px 36px rgba(15,23,42,.055)!important;}
.lp-polighrafiia-seo-simple .lp-faq--modern .lp-faq-q{padding:20px 24px!important;}
.lp-polighrafiia-seo-simple .lp-faq--modern .lp-faq-a-inner{padding:0 24px 22px!important;}
@media (max-width:900px){
  .lp-polighrafiia-seo-simple .lp-hub-service-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  .lp-polighrafiia-seo-simple .lp-hub-section{padding:44px 0!important;}
}
@media (max-width:560px){
  .lp-polighrafiia-seo-simple .lp-hub-service-grid{grid-template-columns:1fr!important;}
  .lp-polighrafiia-seo-simple .lp-hub-seo-text{font-size:16px!important;gap:18px!important;}
  .lp-polighrafiia-seo-simple .lp-hub-seo-block h3{font-size:20px!important;}
  .lp-polighrafiia-seo-simple .lp-hub-service-card{min-height:0!important;padding:22px!important;}
}

/* polish patch */
.lp-hub-service-grid{align-items:stretch}.lp-hub-service-card{height:100%}
.lp-hub-service-grid .lp-hub-service-card:nth-child(n){margin-top:0!important}
.lp-release-accordion{padding:0;background:transparent;box-shadow:none}
.lp-release-accordion details{margin:12px 0;border-radius:14px}

/* v1.8.7 polish */
.lp-polighrafiia-seo-simple .lp-hub-service-grid{display:grid!important;grid-template-columns:repeat(3,1fr)!important;gap:24px!important;align-items:stretch!important}.lp-polighrafiia-seo-simple .lp-hub-service-card{height:100%!important;min-height:220px!important}.lp-polighrafiia-seo-simple .lp-hub-service-card:nth-child(n){margin:0!important;transform:none!important}.lp-release-accordion{padding:0!important;background:transparent!important;box-shadow:none!important}.lp-release-accordion h2{display:none}.lp-release-accordion details{margin:10px 0!important}.site-footer+.site-footer{display:none!important}

/* =====================================================================
   LocalPrint v1.8.2 — Hub modal + SEO text
   ===================================================================== */

/* Модальное окно */
.lp-hub-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.lp-hub-modal.open { display: flex; }
.lp-hub-modal__box {
  background: #fff;
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 560px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.lp-hub-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none;
  cursor: pointer; color: #6b7280;
  padding: 4px;
}
.lp-hub-modal__close:hover { color: #111; }
.lp-hub-modal__title { font-size: 22px; font-weight: 800; margin: 0 0 8px; color: #111827; }
.lp-hub-modal__sub { font-size: 15px; color: #6b7280; margin: 0 0 24px; }

/* SEO-текст */
.lp-hub-seo-text { background: #f8fafc; }
.lp-hub-seo-text__inner {
  max-width: 860px;
  margin: 0 auto;
}
.lp-hub-seo-text__inner h2 {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 20px;
}
.lp-hub-seo-text__inner p {
  font-size: 15px;
  line-height: 1.75;
  color: #374151;
  margin: 0 0 16px;
}
.lp-hub-seo-text__inner a {
  color: #ef1d16;
  text-decoration: none;
  border-bottom: 1px solid rgba(239,29,22,.3);
}
.lp-hub-seo-text__inner a:hover { border-color: #ef1d16; }

@media (max-width: 768px) {
  .lp-hub-modal__box { padding: 28px 20px; }
  .lp-hub-seo-text__inner h2 { font-size: 20px; }
}

/* LocalPrint v1.8.8 — real /polighrafiia hub layout fix */
.lp-polighrafiia-hub-final{position:relative;}
.lp-polighrafiia-hub-final--seo{padding-top:58px!important;padding-bottom:44px!important;background:#fff!important;}
.lp-polighrafiia-seo-panel{max-width:960px;margin:0 auto;font-size:16px;line-height:1.78;color:#374151;}
.lp-polighrafiia-seo-panel h2{margin:0 0 18px;font-size:clamp(24px,3vw,32px);font-weight:850;line-height:1.25;color:#111827;text-align:center;}
.lp-polighrafiia-seo-panel p{margin:0 0 16px;}
.lp-polighrafiia-seo-panel p:last-child{margin-bottom:0;}
.lp-polighrafiia-seo-panel a{color:#ef1d16;text-decoration:none;border-bottom:1px solid rgba(239,29,22,.28);}
.lp-polighrafiia-seo-panel a:hover{border-bottom-color:#ef1d16;}
.lp-polighrafiia-hub-final--services{padding-top:56px!important;padding-bottom:64px!important;}
.lp-polighrafiia-hub-final--services .container{max-width:1120px!important;}
.lp-hub-cards-grid--fixed-3x2{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:24px!important;align-items:stretch!important;justify-items:stretch!important;}
.lp-hub-cards-grid--fixed-3x2 .lp-hub-card{height:100%!important;min-height:0!important;margin:0!important;transform:none;display:flex!important;flex-direction:column!important;border-radius:18px!important;background:#fff!important;box-shadow:0 14px 34px rgba(15,23,42,.06)!important;}
.lp-hub-cards-grid--fixed-3x2 .lp-hub-card:hover{transform:translateY(-3px)!important;box-shadow:0 18px 44px rgba(15,23,42,.10)!important;}
.lp-hub-cards-grid--fixed-3x2 .lp-hub-card__img-wrap{height:190px!important;aspect-ratio:auto!important;flex:0 0 auto!important;background:#f3f4f6!important;}
.lp-hub-cards-grid--fixed-3x2 .lp-hub-card__img-wrap img{display:block!important;width:100%!important;height:100%!important;object-fit:cover!important;}
.lp-hub-cards-grid--fixed-3x2 .lp-hub-card__body{flex:1 1 auto!important;display:flex!important;flex-direction:column!important;padding:20px!important;min-height:172px!important;}
.lp-hub-cards-grid--fixed-3x2 .lp-hub-card__title{font-size:18px!important;font-weight:850!important;line-height:1.25!important;margin:0!important;}
.lp-hub-cards-grid--fixed-3x2 .lp-hub-card__desc{font-size:14px!important;line-height:1.6!important;margin:0!important;color:#5f6875!important;flex:1 1 auto!important;}
.lp-hub-cards-grid--fixed-3x2 .lp-hub-card__link{margin-top:14px!important;}
.lp-polighrafiia-hub-final--faq{padding-top:58px!important;padding-bottom:64px!important;background:#fff!important;}
.lp-polighrafiia-hub-final--faq .lp-faq--modern{max-width:900px!important;margin-left:auto!important;margin-right:auto!important;}
.lp-footer + .lp-footer{display:none!important;}
@media (max-width:900px){
  .lp-hub-cards-grid--fixed-3x2{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  .lp-polighrafiia-hub-final--seo,.lp-polighrafiia-hub-final--services,.lp-polighrafiia-hub-final--faq{padding-top:44px!important;padding-bottom:48px!important;}
}
@media (max-width:560px){
  .lp-hub-cards-grid--fixed-3x2{grid-template-columns:1fr!important;gap:18px!important;}
  .lp-hub-cards-grid--fixed-3x2 .lp-hub-card__img-wrap{height:170px!important;}
  .lp-hub-cards-grid--fixed-3x2 .lp-hub-card__body{min-height:0!important;padding:18px!important;}
}


/* === LOCALPRINT MOBILE UX RELEASE v1.9.0 — burger + compact home === */
@media (max-width: 980px) {
  html.lp-menu-open,
  body.lp-menu-open { overflow: hidden !important; }

  .lp-topbar { display: none !important; }

  .lp-header {
    height: 58px !important;
    min-height: 58px !important;
    padding: 0 !important;
    background: #fff !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    box-shadow: 0 6px 22px rgba(0,0,0,.08) !important;
    overflow: visible !important;
  }
  .lp-header .container { padding-left: 14px !important; padding-right: 14px !important; }
  .lp-header__inner { min-height: 58px !important; height: 58px !important; display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 12px !important; }
  .lp-header__logo { display: inline-flex !important; align-items: center !important; flex: 0 0 auto !important; }
  .lp-header__logo img { height: 34px !important; width: auto !important; max-width: 142px !important; display: block !important; }

  .lp-nav { display: none !important; }
  .lp-header__actions { display: flex !important; align-items: center !important; margin-left: auto !important; gap: 0 !important; min-width: auto !important; }
  .lp-header__actions > .btn { display: none !important; }
  .lp-burger {
    display: inline-flex !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: #f4f4f4 !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1002 !important;
  }
  .lp-burger span { width: 22px !important; height: 2px !important; background: #111827 !important; border-radius: 3px !important; display: block !important; transition: transform .22s ease, opacity .22s ease !important; }
  .lp-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg) !important; }
  .lp-burger.active span:nth-child(2) { opacity: 0 !important; }
  .lp-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) !important; }

  .lp-mobile-menu {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: min(86vw, 360px) !important;
    height: 100vh !important;
    height: 100dvh !important;
    padding-top: 64px !important;
    background: #fff !important;
    z-index: 1001 !important;
    overflow-y: auto !important;
    box-shadow: -18px 0 48px rgba(0,0,0,.18) !important;
    transition: right .28s ease !important;
  }
  .lp-mobile-menu.open { right: 0 !important; }
  .lp-mobile-menu__inner { padding: 14px 18px 24px !important; }
  .lp-mobile-nav,
  .lp-mobile-nav ul,
  .lp-mobile-nav li { list-style: none !important; margin: 0 !important; padding: 0 !important; }
  .lp-mobile-nav { display: flex !important; flex-direction: column !important; gap: 0 !important; }
  .lp-mobile-nav > li > a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 44px !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(0,0,0,.08) !important;
    color: #151515 !important;
    font-size: 16px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
    text-decoration: none !important;
  }
  .lp-mobile-nav .sub-menu,
  .lp-mobile-nav .lp-dropdown { display: block !important; position: static !important; opacity: 1 !important; visibility: visible !important; transform: none !important; box-shadow: none !important; border: 0 !important; padding: 6px 0 8px 12px !important; background: transparent !important; min-width: 0 !important; }
  .lp-mobile-nav .sub-menu a,
  .lp-mobile-nav .lp-dropdown a {
    display: block !important;
    min-height: 36px !important;
    padding: 8px 0 !important;
    border-bottom: 0 !important;
    color: #5f6368 !important;
    font-size: 14px !important;
    font-weight: 650 !important;
    text-decoration: none !important;
  }

  .lp-mobile-menu__contacts { margin-top: 18px !important; padding-top: 16px !important; border-top: 1px solid rgba(0,0,0,.08) !important; }
  .lp-mobile-menu__contacts-title { margin-bottom: 10px !important; font-size: 13px !important; font-weight: 900 !important; text-transform: uppercase !important; letter-spacing: .06em !important; color: #111 !important; }
  .lp-mobile-menu__contacts-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 9px !important; }
  .lp-mobile-contact { display: flex !important; align-items: center !important; justify-content: center !important; min-height: 42px !important; padding: 9px 10px !important; border-radius: 12px !important; font-size: 13px !important; font-weight: 850 !important; text-decoration: none !important; color: #fff !important; text-align: center !important; }
  .lp-mobile-contact--phone,
  .lp-mobile-contact--order { background: #E30613 !important; }
  .lp-mobile-contact--wa { background: #25D366 !important; }
  .lp-mobile-contact--tg { background: #229ED9 !important; }
  .lp-mobile-contact--max { background: linear-gradient(135deg,#27C6F7,#3156FF 55%,#A73BF2) !important; }
  .lp-mobile-contact--order { grid-column: 1 / -1 !important; }

  .lp-overlay {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 1000 !important;
    background: rgba(0,0,0,.46) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity .25s ease, visibility .25s ease !important;
  }
  .lp-overlay.open { opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; }
}

@media (max-width: 640px) {
  /* Главная: компактный первый экран */
  .home .lp-hero--slider,
  body:not(.page):not(.single) .lp-hero--slider { min-height: 330px !important; height: auto !important; }
  .home .lp-hero__inner--slider,
  body:not(.page):not(.single) .lp-hero__inner--slider { min-height: 330px !important; padding: 34px 0 42px !important; align-items: center !important; }
  .home .lp-hero__content,
  body:not(.page):not(.single) .lp-hero__content { max-width: 100% !important; padding: 0 !important; }
  .home .lp-hero__eyebrow,
  body:not(.page):not(.single) .lp-hero__eyebrow { margin-bottom: 10px !important; padding: 0 !important; background: transparent !important; border: 0 !important; font-size: 10px !important; line-height: 1.25 !important; letter-spacing: .08em !important; }
  .home .lp-hero__title,
  body:not(.page):not(.single) .lp-hero__title { max-width: 310px !important; margin-bottom: 10px !important; font-size: 28px !important; line-height: 1.04 !important; letter-spacing: -.7px !important; }
  .home .lp-hero__sub,
  body:not(.page):not(.single) .lp-hero__sub { max-width: 300px !important; margin-bottom: 14px !important; font-size: 14px !important; line-height: 1.35 !important; }
  .home .lp-hero__btns,
  body:not(.page):not(.single) .lp-hero__btns { display: flex !important; margin-bottom: 0 !important; }
  .home .lp-hero__btns .btn-wa,
  .home .lp-hero__btns .btn-tg,
  body:not(.page):not(.single) .lp-hero__btns .btn-wa,
  body:not(.page):not(.single) .lp-hero__btns .btn-tg { display: none !important; }
  .home .lp-hero__btns .btn-primary,
  body:not(.page):not(.single) .lp-hero__btns .btn-primary { width: auto !important; min-height: 42px !important; padding: 12px 18px !important; border-radius: 12px !important; font-size: 14px !important; }
  .home .lp-hero__badges,
  body:not(.page):not(.single) .lp-hero__badges { display: none !important; }
  .home .lp-hero-dots-outer,
  body:not(.page):not(.single) .lp-hero-dots-outer { display: none !important; }
  .home #services,
  body:not(.page):not(.single) #services { display: none !important; }

  /* Мобильный футер — компактнее, без потери информации */
  .lp-footer { padding-top: 30px !important; }
  .lp-footer__top { grid-template-columns: 1fr !important; gap: 22px !important; padding-bottom: 24px !important; }
  .lp-footer__logo { margin-bottom: 8px !important; }
  .lp-footer__logo img { height: 32px !important; }
  .lp-footer__desc { margin-bottom: 12px !important; font-size: 13px !important; line-height: 1.45 !important; }
  .lp-footer__socials { gap: 8px !important; }
  .lp-footer__social { width: 32px !important; height: 32px !important; }
  .lp-footer__col-title { margin-bottom: 9px !important; font-size: 12px !important; }
  .lp-footer__links { gap: 6px !important; }
  .lp-footer__links a { font-size: 13px !important; }
  .lp-footer__contacts { gap: 8px !important; }
  .lp-footer__contacts li { font-size: 13px !important; line-height: 1.35 !important; }
  .lp-footer__requisites { margin-top: 12px !important; font-size: 12px !important; line-height: 1.35 !important; }
  .lp-footer__bottom { padding: 14px 0 18px !important; gap: 8px !important; }
  .lp-footer__copy,
  .lp-footer__bottom-links a { font-size: 12px !important; }
}


/* lp-mobile-css-v191: mobile release correction, see wp_head critical styles in functions.php */


/* === LOCALPRINT v1.9.3 — FINAL MOBILE POLISH === */
@media (max-width: 980px) {
  html.lp-menu-open,
  body.lp-menu-open { overflow: hidden !important; }

  .lp-topbar { display: none !important; }

  .lp-header {
    height: 58px !important;
    min-height: 58px !important;
    padding: 0 !important;
    background: #fff !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 10010 !important;
    box-shadow: 0 6px 20px rgba(0,0,0,.08) !important;
    overflow: visible !important;
  }
  .lp-header .container { padding-left: 14px !important; padding-right: 14px !important; }
  .lp-header__inner {
    min-height: 58px !important;
    height: 58px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
  }
  .lp-header__logo { display: inline-flex !important; align-items: center !important; flex: 0 0 auto !important; position: relative !important; z-index: 10012 !important; }
  .lp-header__logo img { height: 34px !important; width: auto !important; max-width: 145px !important; display: block !important; }
  .lp-nav { display: none !important; }
  .lp-header__actions { display: flex !important; align-items: center !important; justify-content: flex-end !important; margin-left: auto !important; gap: 0 !important; min-width: auto !important; }
  .lp-header__actions > .btn { display: none !important; }
  #lp-burger,
  .lp-burger {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 14px !important;
    background: #f3f4f6 !important;
    box-shadow: 0 4px 14px rgba(0,0,0,.08) !important;
    position: relative !important;
    right: auto !important;
    top: auto !important;
    z-index: 10030 !important;
  }
  #lp-burger span,
  .lp-burger span { display: block !important; width: 23px !important; height: 2px !important; background: #111827 !important; border-radius: 4px !important; transition: transform .22s ease, opacity .22s ease !important; }
  #lp-burger.active span:nth-child(1), .lp-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg) !important; }
  #lp-burger.active span:nth-child(2), .lp-burger.active span:nth-child(2) { opacity: 0 !important; }
  #lp-burger.active span:nth-child(3), .lp-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) !important; }

  #lp-overlay,
  .lp-overlay {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 10040 !important;
    background: rgba(0,0,0,.72) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity .24s ease, visibility .24s ease !important;
  }
  #lp-overlay.open,
  .lp-overlay.open { opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; }

  #lp-mobile-menu,
  .lp-mobile-menu {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: min(90vw, 390px) !important;
    height: 100vh !important;
    height: 100dvh !important;
    padding-top: 58px !important;
    background: #fff !important;
    z-index: 10050 !important;
    overflow-y: auto !important;
    box-shadow: -18px 0 52px rgba(0,0,0,.28) !important;
    transition: right .26s ease !important;
  }
  #lp-mobile-menu.open,
  .lp-mobile-menu.open { right: 0 !important; }
  .lp-mobile-menu__inner { padding: 14px 18px 24px !important; }
  .lp-mobile-nav,
  .lp-mobile-nav ul,
  .lp-mobile-nav li { list-style: none !important; margin: 0 !important; padding: 0 !important; }
  .lp-mobile-nav { display: flex !important; flex-direction: column !important; gap: 0 !important; }
  .lp-mobile-nav > li > a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 42px !important;
    padding: 11px 0 !important;
    border-bottom: 1px solid rgba(0,0,0,.08) !important;
    color: #151515 !important;
    font-size: 16px !important;
    line-height: 1.25 !important;
    font-weight: 850 !important;
    text-decoration: none !important;
  }
  .lp-mobile-nav .sub-menu,
  .lp-mobile-nav .lp-dropdown { display: block !important; position: static !important; opacity: 1 !important; visibility: visible !important; transform: none !important; box-shadow: none !important; border: 0 !important; background: transparent !important; padding: 6px 0 8px 14px !important; margin: 0 !important; min-width: 0 !important; }
  .lp-mobile-nav .sub-menu a,
  .lp-mobile-nav .lp-dropdown a { display: block !important; min-height: 34px !important; padding: 7px 0 !important; border: 0 !important; color: #626262 !important; font-size: 14px !important; font-weight: 650 !important; line-height: 1.25 !important; text-decoration: none !important; }
  .lp-mobile-menu__contacts { margin-top: 16px !important; padding-top: 14px !important; border-top: 1px solid rgba(0,0,0,.08) !important; }
  .lp-mobile-menu__contacts-title { margin-bottom: 10px !important; font-size: 13px !important; font-weight: 900 !important; text-transform: uppercase !important; letter-spacing: .06em !important; color: #111 !important; }
  .lp-mobile-menu__contacts-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .lp-mobile-contact { display: flex !important; align-items: center !important; justify-content: center !important; min-height: 46px !important; padding: 10px 12px !important; border-radius: 14px !important; font-size: 14px !important; font-weight: 850 !important; line-height: 1.15 !important; text-decoration: none !important; color: #fff !important; text-align: center !important; }
  .lp-mobile-contact--phone,
  .lp-mobile-contact--order { background: #E30613 !important; }
  .lp-mobile-contact--wa { background: #25D366 !important; }
  .lp-mobile-contact--tg { background: #229ED9 !important; }
  .lp-mobile-contact--max { background: linear-gradient(135deg,#27C6F7,#3156FF 55%,#A73BF2) !important; }
  .lp-mobile-contact--order { grid-column: 1 / -1 !important; }
}

@media (max-width: 640px) {
  /* Главная: компактный первый экран */
  #lp-hero-slider,
  .home #lp-hero-slider,
  body.home #lp-hero-slider,
  body.front-page #lp-hero-slider,
  body:not(.page):not(.single) #lp-hero-slider,
  .home .lp-hero--slider,
  body.home .lp-hero--slider,
  body.front-page .lp-hero--slider,
  body:not(.page):not(.single) .lp-hero--slider {
    min-height: 360px !important;
    height: 360px !important;
    max-height: 360px !important;
    overflow: hidden !important;
  }
  #lp-hero-slider .lp-hero__inner--slider,
  .home .lp-hero__inner--slider,
  body.home .lp-hero__inner--slider,
  body.front-page .lp-hero__inner--slider,
  body:not(.page):not(.single) .lp-hero__inner--slider {
    min-height: 360px !important;
    height: 360px !important;
    max-height: 360px !important;
    padding: 30px 0 34px !important;
    align-items: center !important;
  }
  #lp-hero-slider .lp-hero__content,
  .home .lp-hero__content,
  body.home .lp-hero__content,
  body.front-page .lp-hero__content,
  body:not(.page):not(.single) .lp-hero__content { max-width: 100% !important; padding: 0 !important; }
  #lp-hero-slider .lp-hero__eyebrow,
  .home .lp-hero__eyebrow,
  body.home .lp-hero__eyebrow,
  body.front-page .lp-hero__eyebrow,
  body:not(.page):not(.single) .lp-hero__eyebrow { margin-bottom: 9px !important; padding: 0 !important; background: transparent !important; border: 0 !important; font-size: 10px !important; line-height: 1.25 !important; letter-spacing: .08em !important; }
  #lp-hero-slider .lp-hero__title,
  .home .lp-hero__title,
  body.home .lp-hero__title,
  body.front-page .lp-hero__title,
  body:not(.page):not(.single) .lp-hero__title { max-width: 315px !important; margin-bottom: 9px !important; font-size: 27px !important; line-height: 1.04 !important; letter-spacing: -.7px !important; }
  #lp-hero-slider .lp-hero__sub,
  .home .lp-hero__sub,
  body.home .lp-hero__sub,
  body.front-page .lp-hero__sub,
  body:not(.page):not(.single) .lp-hero__sub { max-width: 310px !important; margin-bottom: 12px !important; font-size: 14px !important; line-height: 1.35 !important; }
  #lp-hero-slider .lp-hero__btns,
  .home .lp-hero__btns,
  body.home .lp-hero__btns,
  body.front-page .lp-hero__btns,
  body:not(.page):not(.single) .lp-hero__btns { display: flex !important; margin-bottom: 0 !important; }
  #lp-hero-slider .lp-hero__btns .btn:not(.btn-primary),
  .home .lp-hero__btns .btn-wa,
  .home .lp-hero__btns .btn-tg,
  body.home .lp-hero__btns .btn-wa,
  body.home .lp-hero__btns .btn-tg,
  body.front-page .lp-hero__btns .btn-wa,
  body.front-page .lp-hero__btns .btn-tg,
  body:not(.page):not(.single) .lp-hero__btns .btn-wa,
  body:not(.page):not(.single) .lp-hero__btns .btn-tg { display: none !important; }
  #lp-hero-slider .lp-hero__btns .btn-primary,
  .home .lp-hero__btns .btn-primary,
  body.home .lp-hero__btns .btn-primary,
  body.front-page .lp-hero__btns .btn-primary,
  body:not(.page):not(.single) .lp-hero__btns .btn-primary { width: auto !important; min-height: 40px !important; padding: 11px 16px !important; border-radius: 12px !important; font-size: 14px !important; }
  #lp-hero-slider .lp-hero__badges,
  .home .lp-hero__badges,
  body.home .lp-hero__badges,
  body.front-page .lp-hero__badges,
  body:not(.page):not(.single) .lp-hero__badges,
  #lp-hero-slider .lp-hero-dots-outer,
  .home .lp-hero-dots-outer,
  body.home .lp-hero-dots-outer,
  body.front-page .lp-hero-dots-outer,
  body:not(.page):not(.single) .lp-hero-dots-outer { display: none !important; }

  /* Главная: скрыть дубль навигации */
  body.home #services,
  body.front-page #services,
  body:not(.page):not(.single) #services,
  #services.section { display: none !important; }

  /* Мобильный футер: плотнее, без удаления информации */
  .lp-footer { padding-top: 24px !important; }
  .lp-footer__top { grid-template-columns: 1fr !important; gap: 16px !important; padding-bottom: 18px !important; }
  .lp-footer__logo { margin-bottom: 7px !important; }
  .lp-footer__logo img { height: 30px !important; }
  .lp-footer__desc { margin-bottom: 10px !important; font-size: 12.5px !important; line-height: 1.4 !important; }
  .lp-footer__socials { gap: 7px !important; }
  .lp-footer__social { width: 31px !important; height: 31px !important; }
  .lp-footer__col-title { margin-bottom: 7px !important; font-size: 12px !important; }
  .lp-footer__links { gap: 4px !important; }
  .lp-footer__links a { font-size: 12.5px !important; line-height: 1.35 !important; }
  .lp-footer__contacts { gap: 6px !important; }
  .lp-footer__contacts li { font-size: 12.5px !important; line-height: 1.32 !important; }
  .lp-footer__requisites { margin-top: 10px !important; font-size: 11.5px !important; line-height: 1.32 !important; }
  .lp-footer__bottom { padding: 12px 0 14px !important; gap: 6px !important; }
  .lp-footer__copy,
  .lp-footer__bottom-links a { font-size: 11.5px !important; }
}


.lp-promo-card--delivery .lp-promo-card__body{display:flex;flex-direction:column;height:100%}
.lp-promo-card--delivery .lp-promo-card__footer{margin-top:auto;display:flex;align-items:center;justify-content:space-between}
.lp-promo-card--delivery .lp-promo-card__discount{font-size:32px;line-height:1;font-weight:700}
.lp-promo-card--delivery .btn{min-width:170px}
.lp-promos-grid .lp-promo-card{height:100%}



/* ── Чекбокс согласия в lp-calc-modal ── */
.lp-modal__field--checkbox { display:flex; flex-direction:column; gap:4px; }
.lp-modal__checkbox-label { display:flex !important; flex-direction:row !important; align-items:flex-start !important; gap:8px !important; cursor:pointer; font-size:13px; color:#444; }
.lp-modal__checkbox-label input[type="checkbox"] { width:16px !important; height:16px !important; margin-top:2px !important; flex-shrink:0 !important; cursor:pointer; }
.lp-modal__checkbox-label a, .lp-modal__checkbox-label a:visited, .lp-modal__checkbox-label a:hover { color:#1a6fc4 !important; font-style:italic !important; text-decoration:underline !important; }

/* ── Чекбокс согласия: финальный фикс ── */
.lp-modal__field--checkbox { text-align:left !important; }
.lp-modal__checkbox-label { display:flex !important; flex-direction:row !important; align-items:flex-start !important; justify-content:flex-start !important; gap:10px; width:100%; }
.lp-modal__checkbox-label input { margin-top:3px; flex:0 0 auto; }
.lp-modal__checkbox-label span { flex:1; }
.lp-modal__box .lp-modal__checkbox-label a,
.lp-modal__box .lp-modal__checkbox-label a:visited,
.lp-modal__box .lp-modal__checkbox-label a:hover { color:#1a6fc4 !important; text-decoration:underline; font-style:italic; }

/* ── Чекбокс: перебиваем .lp-modal__field label ── */
.lp-modal__field.lp-modal__field--checkbox label.lp-modal__checkbox-label { display:flex !important; flex-direction:row !important; align-items:flex-start !important; justify-content:flex-start !important; gap:10px !important; width:100%; font-weight:normal; }
.lp-modal__field.lp-modal__field--checkbox label.lp-modal__checkbox-label input { margin-top:3px; flex:0 0 auto; }
.lp-modal__field.lp-modal__field--checkbox label.lp-modal__checkbox-label span { flex:1; }
.lp-modal__field.lp-modal__field--checkbox label.lp-modal__checkbox-label a { color:#1a6fc4 !important; text-decoration:underline !important; font-style:italic !important; }
