*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body {
  background: #fff;
  overflow: hidden;
}

body.scrollable {
  overflow: visible;
}

.intro {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Артборд — относительный контейнер как на Tilda (1200x495) */
.artboard {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 495px;
}

/* ── Зона печати: содержит logo_blue_fon + маска поверх ── */
.art__print-area {
  position: absolute;
  top: 260px;
  left: 487px;
  width: 225px;
  height: 44px;
  z-index: 1;
  overflow: hidden;
}

.art__logo-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 225px;
  height: auto;
}

/* Белая маска поверх logo_blue_fon — сдвигается вниз, открывая картинку сверху */
.art__print-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 2;
}

/* ── Принтерная головка (точные размеры с Tilda: 411x160) ── */
.art__head {
  position: absolute;
  top: 211px;
  left: -1812px;
  width: 411px;
  height: auto;
  z-index: 6;
}

/* ── Круг под логотипом ── */
.art__circle {
  position: absolute;
  top: 114px;
  left: 541px;
  width: 118px;
  height: 118px;
  z-index: 2;
}

/* ── Тень логотипа (круг чуть больше лого, с box-shadow) ── */
.art__logo-shadow {
  position: absolute;
  top: 108px;
  left: 535px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 8px 20px -2px rgba(0,0,0,0.18);
  z-index: 2;
  transform-origin: center center;
  pointer-events: none;
}

/* ── Логотип ── */
.art__logo {
  position: absolute;
  top: 114px;
  left: 541px;
  width: 118px;
  height: auto;
  z-index: 3;
  transform-origin: center center;
}

/* ── Белая маска (имитирует приклеивание) — скрыта до конца pop-анимации ── */
.art__mask {
  position: absolute;
  top: 251px;
  left: 366px;
  width: 472px;
  height: 100px;
  background: #fff;
  z-index: 3;
  opacity: 0;
}

/* ── Тень руки (точная копия Tilda: 423x791, blur 15, opacity 0.15, rotate -10°) ── */
.art__hand-shadow {
  position: absolute;
  top: 655px;
  left: 859px;
  width: 423px;
  height: 791px;
  z-index: 4;
  opacity: 0.08;
  filter: blur(15px) brightness(0);
  transform: rotate(-10deg);
  transform-origin: center center;
  pointer-events: none;
}

/* ── Рука с ракелем ── */
.art__hand {
  position: absolute;
  top: 660px;
  left: 847px;
  width: 390px;
  height: auto;
  z-index: 5;
  transform-origin: center center;
}

/* ── Белый размытый овал — прикрывает низ руки ── */
.art__cover {
  position: absolute;
  top: 407px;
  left: 524px;
  width: 645px;
  height: 253px;
  background: #ffffff;
  border-radius: 3000px;
  filter: blur(13px);
  z-index: 6;
}

/* ── Навигация-пилюли — контейнер внизу intro ── */
.art__nav-bar {
  position: absolute;
  bottom: auto;
  top: calc(100% + 100px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 42px;
  z-index: 8;
  transition: top 0.4s ease;
}

.art__nav-bar.visible {
  top: max(calc(100% - 240px), calc(50% + 100px));
}

.art__nav-pill {
  position: relative;
  width: 20px;
  height: 90px;
  border-radius: 30px;
  background-color: color-mix(in srgb, var(--pill) 20%, transparent);
  outline: 2px solid var(--pill);
  outline-offset: 2px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.2s, outline-color 0.2s;
  cursor: pointer;
}

.art__nav-pill:hover {
  background-color: var(--pill);
}

.art__nav-icon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s, transform 0.15s;
}

.art__nav-pill:hover .art__nav-icon {
  opacity: 1;
  transform: translateX(-50%) scale(1.6);
  filter: drop-shadow(0 4px 3px rgba(0,0,0,0.2));
}

.art__nav-label {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.art__nav-pill:hover .art__nav-label {
  opacity: 1;
}

/* ── Гамбургер-меню (мобилка) ── */

.hamburger {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 100;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 60px;
}

.mobile-menu__link {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu__link:hover {
  color: #1ec9e8;
}

.mobile-menu__footer {
  text-align: center;
}

.mobile-menu__phone {
  display: block;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1ec9e8;
  text-decoration: none;
  margin-bottom: 8px;
}

.mobile-menu__schedule {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 14px;
  color: #999;
}

@media screen and (max-width: 639px) {
  .hamburger { display: block; }
  .art__nav-bar { display: none !important; }
}

.art__nav-pill--soon {
  pointer-events: none;
  opacity: 0.1 !important;
}

/* ═══════════════════════════════════════════
   СЕКЦИИ СТРАНИЦЫ (бывший попап)
   ═══════════════════════════════════════════ */
.page-section {
  background: #fff;
}

.page-section__content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 30px 120px;
  font-family: 'Manrope', Arial, sans-serif;
  color: #222;
  overflow: hidden;
}

.page-section__subtitle {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.page-section__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #000;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.page-section__block {
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.page-section__subtitle.visible,
.page-section__title.visible,
.page-section__block.visible {
  opacity: 1;
  transform: translateY(0);
}

.text-center { text-align: center; }

/* Контейнер заголовка блока — фиксированной высоты, чтобы курсив, который чуть крупнее, не двигал контент ниже */
.page-section__block-head {
  height: 60px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.page-section__block-head h3 {
  margin: 0;
}

.page-section__block h3 {
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  color: #000;
  padding-left: 28px;
  position: relative;
  /* Семейство, наклон и вес меняем; размер шрифта (font-size) тоже разрешаем — высота контейнера зафиксирована */
  transition: font-family 0.4s ease, font-style 0.4s ease, font-weight 0.4s ease, font-size 0.4s ease, letter-spacing 0.4s ease;
}

/* При наведении на блок заголовок переключается на курсив Cormorant Garamond.
   Размер увеличиваем на ~18%, чтобы визуальная высота строки совпадала с Manrope.
   Контент блока не дёргается, т.к. .page-section__block-head зафиксирован по высоте. */
.page-section__block:hover h3:not(.text-center) {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 45px;
  letter-spacing: 0.005em;
}

.page-section__block h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.page-section__block:nth-child(3) h3::before { background: #f54e72; }
.page-section__block:nth-child(4) h3::before { background: #ffc11e; }
.page-section__block:nth-child(5) h3::before { background: #1ec9e8; }
.page-section__block:nth-child(6) h3::before { background: #000; }

.page-section__block h3.text-center {
  padding-left: 0;
}

.page-section__block h3.text-center::before {
  display: none;
}

.page-section__block p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #444;
}

.page-section__block ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.page-section__block ul li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 6px;
}

.page-section__block ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #ccc;
}

.page-section__block ul li strong {
  font-weight: 500;
  color: #222;
}

/* ── Карточки «Почему выбирают нас» ── */

.page-cards {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.page-card {
  flex: 1;
  background: #f5f5f5;
  border-radius: 12px;
  padding: 63px 24px 28px;
  text-align: center;
  width: 360px;
  min-height: 380px;
  flex-shrink: 0;
}

.page-card__icon {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px #fff, 0 8px 24px 6px rgba(0,0,0,0.14);
}

.page-card__icon svg,
.page-card__icon-img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 3px 4px rgba(0,0,0,0.25));
}

.page-card__icon--blue   { background: #1ec9e8; }
.page-card__icon--pink   { background: #e84f8a; }
.page-card__icon--yellow { background: #ffc930; }

/* ── Анимации иконок «Почему выбирают нас» ── */

/* Карточка целиком реагирует на наведение */
.page-card {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, background 0.3s ease;
}
.page-card:hover {
  transform: translateY(-6px) scale(1.04);
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
  z-index: 2;
  position: relative;
}

/* Иконка-кружок мягко поднимается синхронно с карточкой */
.page-card__icon {
  position: relative;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.45s ease;
}
.page-card__icon svg,
.page-card__icon-img {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}
.page-card:hover .page-card__icon {
  box-shadow: 0 0 0 10px #fff, 0 14px 32px 8px rgba(0,0,0,0.18);
}

/* СИНЯЯ — «опыт растёт»: заметное покачивание + дрейф стрелки вверх-вправо */
.page-card__icon--blue {
  animation: floatBlue 4s ease-in-out 0.6s infinite;
}
.page-card__icon--blue svg {
  animation: arrowDrift 3.5s ease-in-out 0.6s infinite;
}
.page-card:hover .page-card__icon--blue svg {
  animation: arrowLaunch 0.9s ease-out forwards;
}
@keyframes floatBlue {
  0%, 100% { transform: translateY(0)    rotate(0); }
  50%      { transform: translateY(-10px) rotate(-3deg); }
}
@keyframes arrowDrift {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(3px, -3px); }
}
@keyframes arrowLaunch {
  0%   { transform: translate(0, 0) scale(1); }
  35%  { transform: translate(-2px, 2px) scale(0.92); }
  100% { transform: translate(8px, -8px) scale(1.1); }
}

/* РОЗОВАЯ — спокойное «дыхание», без кольца и сильного пульса */
.page-card__icon--pink {
  animation: breathe 5s ease-in-out 0.9s infinite;
}
.page-card:hover .page-card__icon--pink svg {
  animation: stampCheck 0.6s cubic-bezier(0.4, 1.5, 0.5, 1) forwards;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.025); }
}
@keyframes stampCheck {
  0%   { transform: scale(1) rotate(0); }
  40%  { transform: scale(0.85) rotate(-10deg); }
  100% { transform: scale(1.1) rotate(0); }
}

/* ЖЁЛТАЯ — пазл медленно крутится, при наведении собирается рывком */
.page-card__icon--yellow img {
  animation: rotateSlow 14s linear 1.2s infinite;
}
.page-card:hover .page-card__icon--yellow img {
  animation: snapTogether 0.7s cubic-bezier(0.4, 1.6, 0.5, 1) forwards;
}
@keyframes rotateSlow {
  0%   { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}
@keyframes snapTogether {
  0%   { transform: rotate(0)      scale(1); }
  35%  { transform: rotate(-12deg) scale(0.86); }
  65%  { transform: rotate(8deg)   scale(1.12); }
  100% { transform: rotate(0)      scale(1); }
}

/* Уважаем системную настройку «уменьшить анимации» */
@media (prefers-reduced-motion: reduce) {
  .page-card,
  .page-card__icon,
  .page-card__icon--blue,
  .page-card__icon--blue svg,
  .page-card__icon--pink,
  .page-card__icon--yellow img,
  .page-card__icon svg,
  .page-card__icon-img {
    animation: none !important;
    transition: none !important;
  }
}

.page-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
  white-space: nowrap;
}

.page-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.page-card p strong {
  font-weight: 600;
  color: #333;
}

.page-card__divider {
  width: 2px;
  height: 300px;
  background: #ddd;
  align-self: center;
  flex-shrink: 0;
}

/* ── Сетка станков — иконки в ряд ── */

.equip-grid {
  margin-top: 40px;
}

.equip-row {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.equip-card {
  width: 100px;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  padding: 8px;
  border-radius: 12px;
  border: 2px solid transparent;
}

.equip-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.equip-card:hover,
.equip-card.active {
  border-color: #1ec9e8;
  background: rgba(30, 201, 232, 0.05);
}

.equip-card__img {
  width: 100%;
  height: 70px;
  object-fit: contain;
}

.equip-card h4 {
  display: none;
}

.equip-card__tooltip {
  display: none;
}

/* ── Spotlight — раскрывается под иконками ── */

.equip-spotlight {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin 0.4s ease;
  margin-top: 0;
}

.equip-spotlight.visible {
  max-height: 400px;
  opacity: 1;
  margin-top: 30px;
}

.equip-spotlight__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.14);
  padding: 32px 40px;
  position: relative;
}

.equip-spotlight__inner::after {
  content: '';
  position: absolute;
  inset: 5px;
  border: 2px dashed rgba(0,0,0,0.15);
  border-radius: 15px;
  pointer-events: none;
}

.equip-spotlight__img {
  flex-shrink: 0;
  width: 280px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.12));
}

.equip-spotlight__info {
  flex: 1;
  text-align: left;
}

.equip-spotlight__info h3 {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin: 0 0 6px;
  padding-left: 0;
  text-align: left;
}

.equip-spotlight__info h3::before {
  display: none;
}

.equip-spotlight__info h4 {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1ec9e8;
  margin: 0 0 16px;
}

.equip-spotlight__info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.equip-spotlight__info ul li {
  position: relative;
  padding-left: 20px;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 6px;
}

.equip-spotlight__info ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  font-weight: 700;
}

.equip-spotlight__info ul li:nth-child(1)::before { color: #1ec9e8; }
.equip-spotlight__info ul li:nth-child(2)::before { color: #e84f8a; }
.equip-spotlight__info ul li:nth-child(3)::before { color: #ffc930; }

@media screen and (max-width: 959px) {
  .intro { height: 60vh; min-height: 400px; }
  .gallery-nav__tab { font-size: 14px; margin: 0 8px; }
  .page-cards { gap: 14px; }
  .page-card { width: auto; min-height: auto; padding: 40px 20px 24px; }
  .page-card__icon { width: 90px; height: 90px; margin-bottom: 40px; }
  .page-card__icon svg, .page-card__icon-img { width: 42px; height: 42px; }
  .page-card__divider { height: 200px; }
  .page-card h4 { font-size: 16px; }
  .equip-spotlight__inner { flex-direction: column; gap: 20px; padding: 24px; }
  .equip-spotlight__img { width: 100%; height: 180px; }
  .footer { padding: 60px 20px 0; }
  .footer__content { gap: 40px; }
  .footer__link, .footer__address, .footer__schedule { font-size: 16px; }
}

@media screen and (max-width: 639px) {
  .intro { height: 50vh; min-height: 340px; }
  .gallery { max-height: 50vh; }
  .gallery__item { height: 90px; }
  .gallery-nav__tab { font-size: 13px; margin: 0 6px; }
  .page-section__title { font-size: 28px; }
  .page-section__subtitle { font-size: 12px; letter-spacing: 1px; }
  .page-section__content { padding: 50px 16px 60px; }
  .page-section__block h3 { font-size: 24px; padding-left: 22px; }
  .page-section__block h3::before { width: 10px; height: 10px; }
  .page-section__block p { font-size: 14px; }
  .page-section__block ul li { font-size: 14px; }
  .page-cards { flex-direction: column; align-items: center; }
  .page-card__divider { width: 200px; height: 2px; }
  .page-card { width: 100%; }
  .page-card__icon { width: 80px; height: 80px; margin-bottom: 30px; }
  .page-card__icon svg, .page-card__icon-img { width: 36px; height: 36px; }
  .page-card h4 { font-size: 15px; }
  .page-card p { font-size: 14px; }
  .equip-row { flex-wrap: wrap; gap: 8px; }
  .equip-card { width: 70px; }
  .equip-card__img { height: 50px; }
  .equip-spotlight__inner { flex-direction: column; gap: 16px; padding: 20px; }
  .equip-spotlight__img { width: 100%; height: 140px; }
  .equip-spotlight__info h3 { font-size: 18px; }
  .equip-spotlight__info ul li { font-size: 13px; }
  .footer { padding: 40px 16px 0; }
  .footer__content { flex-direction: column; gap: 30px; }
  .footer__title { font-size: 12px; margin-bottom: 12px; }
  .footer__link, .footer__address, .footer__schedule { font-size: 15px; }
  .cta-float { bottom: 16px; right: 16px; }
  .cta-float__btn { width: 48px; height: 48px; }
  .cta-float__btn svg { width: 22px; height: 22px; }
  .cta-float__popup { width: 240px; padding: 16px; }
}

@media screen and (max-width: 479px) {
  .intro { height: 45vh; min-height: 280px; }
  .gallery__item { height: 70px; }
  .gallery-nav__tab { font-size: 12px; margin: 0 5px; }
  .page-section__title { font-size: 24px; }
  .page-section__block h3 { font-size: 20px; }
}

/* ═══ RESPONSIVE — АРТБОРД ═══ */
@media screen and (max-width: 479px) {
  .artboard { transform: translate(-50%, -50%) scale(0.6); }
}

/* ═══════════════════════════════════════════
   ФУТЕР / КОНТАКТЫ
   ═══════════════════════════════════════════ */
.footer {
  background: #111;
  color: #fff;
  padding: 80px 30px 0;
  font-family: 'Manrope', Arial, sans-serif;
}

.footer__content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__col {
  flex: 0 1 auto;
}

.footer__title {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer__link {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer__link:hover {
  color: #1ec9e8;
}

.footer__address {
  font-style: normal;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.footer__schedule {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}

.footer__schedule--off {
  color: rgba(255,255,255,0.4);
}

.footer__bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

@media screen and (max-width: 639px) {
  .footer__content {
    flex-direction: column;
    gap: 40px;
  }
}

/* ═══════════════════════════════════════════
   ПЛАВАЮЩАЯ КНОПКА СВЯЗИ
   ═══════════════════════════════════════════ */
.cta-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9000;
}

.cta-float__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: #1ec9e8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}

.cta-float__btn svg {
  width: 26px;
  height: 26px;
}

.cta-float.open .cta-float__btn {
  background: #333;
}

.cta-float__popup {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.16);
  padding: 20px;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cta-float.open .cta-float__popup {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.cta-float__popup::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 100%;
  height: 40px;
}

.cta-float__schedule {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 13px;
  color: #888;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee;
  line-height: 1.5;
}

.cta-float__schedule svg {
  margin-top: 2px;
  flex-shrink: 0;
}

.cta-float__schedule-off {
  color: #bbb;
}

.cta-float__action {
  display: block;
  width: 100%;
  padding: 12px 0;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, transform 0.1s;
  margin-bottom: 8px;
}

.cta-float__action:last-child {
  margin-bottom: 0;
}

.cta-float__action--max {
  background: #fff;
  color: #333;
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #00BFFF, #7B2BFC);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-float__action--max:hover {
  background-image: linear-gradient(#f5f0ff, #f5f0ff), linear-gradient(135deg, #00BFFF, #7B2BFC);
}

.cta-float__max-icon {
  width: 20px;
  height: 20px;
}

.cta-float__action--phone {
  background: #f5f5f5;
  color: #000;
}

.cta-float__action--phone:hover {
  background: #eee;
}

@media screen and (max-width: 479px) {
  .cta-float {
    bottom: 16px;
    right: 16px;
  }
  .cta-float__popup {
    width: 240px;
  }
}

/* ═══════════════════════════════════════════
   ГРАДИЕНТНАЯ ПОЛОСА-РАЗДЕЛИТЕЛЬ
   ═══════════════════════════════════════════ */
.divider {
  position: relative;
  height: 120px;
  background: #fff;
  display: none;
  opacity: 0;
}

.divider__line {
  position: absolute;
  top: 79px;
  left: 0;
  width: 100%;
  height: 30px;
  background: linear-gradient(to top, #fff, #e9e9e9);
}

/* ═══════════════════════════════════════════
   НАВИГАЦИЯ — ТАБЫ
   ═══════════════════════════════════════════ */
.gallery-nav {
  display: none;
  opacity: 0;
  height: 50px;
  background: #fff;
  text-align: center;
  padding-top: 9px;
}

.gallery-nav__tab {
  display: inline-block;
  position: relative;
  font-family: 'Manrope', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #000;
  text-decoration: none;
  margin: 0 10px;
  cursor: pointer;
}

.gallery-nav__tab.active-tab {
  font-weight: 600;
  pointer-events: none;
}

.gallery-nav__tab.active-tab::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: -5px;
  animation: lineIn 0.4s ease forwards;
}

@keyframes lineIn {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

/* ═══════════════════════════════════════════
   ГАЛЕРЕЯ (justified-сетка, как t979)
   ═══════════════════════════════════════════ */
.gallery {
  background: #fff;
  padding: 15px 0 0;
  max-height: 70vh;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.4s;
  scrollbar-width: thin;
  scrollbar-color: #ddd #fff;
}

.gallery::-webkit-scrollbar {
  width: 6px;
}

.gallery::-webkit-scrollbar-track {
  background: #fff;
}

.gallery::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 3px;
}

.gallery::-webkit-scrollbar-thumb:hover {
  background: #bbb;
}

.gallery.visible {
  opacity: 1;
}

.gallery__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px 30px;
}

.gallery__grid::after {
  content: '';
  flex-grow: 999;
}

.gallery__item {
  height: 120px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  cursor: pointer;
}

.gallery__item.animated {
  opacity: 1;
  transform: translateY(0);
}

.gallery__item img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════
   ЛАЙТБОКС (белый фон, стрелки, зум)
   ═══════════════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.lightbox.open {
  display: flex;
}

.lightbox__img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: auto;
  cursor: zoom-in;
}

.lightbox__img-wrap.zoomed {
  cursor: none;
  overflow: hidden;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  transition: transform 0.3s ease;
  user-select: none;
  -webkit-user-drag: none;
  transform-origin: center center;
}

.lightbox__img-wrap.zoomed .lightbox__img {
  max-width: none;
  max-height: none;
  cursor: none;
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  opacity: 0.4;
  transition: opacity 0.2s;
}

.lightbox__close:hover { opacity: 1; }

.lightbox__close::before,
.lightbox__close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 1.5px;
  background: #000;
}

.lightbox__close::before { transform: translate(-50%,-50%) rotate(45deg); }
.lightbox__close::after  { transform: translate(-50%,-50%) rotate(-45deg); }

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  opacity: 0.35;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__arrow:hover { opacity: 0.9; }

.lightbox__arrow--prev { left: 20px; }
.lightbox__arrow--next { right: 20px; }

.lightbox__arrow svg {
  width: 28px;
  height: 28px;
  stroke: #000;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #999;
  z-index: 10001;
  user-select: none;
}

/* ═══ RESPONSIVE — ЛАЙТБОКС ═══ */
@media screen and (max-width: 639px) {
  .lightbox__arrow { width: 36px; height: 60px; }
  .lightbox__arrow--prev { left: 8px; }
  .lightbox__arrow--next { right: 8px; }
  .lightbox__arrow svg { width: 22px; height: 22px; }
}

/* ═══════════════════════════════════════════
   ВИТРИНА-ПРЕВЬЮ ПОРТФОЛИО на главной (Linea-style)
   ═══════════════════════════════════════════ */
.pf-showcase {
  background: #fff;
  padding: 80px 0 100px;
  overflow: hidden;
}

.pf-showcase__head {
  max-width: 1280px;
  margin: 0 auto -90px;
  padding: 0 40px;
  position: relative;
  z-index: 5;
  pointer-events: none;
}
.pf-showcase__head > * { pointer-events: auto; }

.pf-showcase__eyebrow {
  display: inline-block;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1ec9e8;
  margin-bottom: 24px;
}

.pf-showcase__title {
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 7vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #111;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.28em;
  max-width: 11ch;
}

.pf-showcase__title .pf-w {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.pf-showcase.is-in .pf-showcase__title .pf-w { opacity: 1; transform: translateY(0); }
.pf-showcase.is-in .pf-showcase__title .pf-w:nth-child(1) { transition-delay: 0.00s; }
.pf-showcase.is-in .pf-showcase__title .pf-w:nth-child(2) { transition-delay: 0.05s; }
.pf-showcase.is-in .pf-showcase__title .pf-w:nth-child(3) { transition-delay: 0.10s; }
.pf-showcase.is-in .pf-showcase__title .pf-w:nth-child(4) { transition-delay: 0.15s; }

.pf-showcase__title .pf-w--italic {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.15em;
  letter-spacing: -0.01em;
  color: #fff;
  padding: 0 0.05em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
}

/* ── Плёнка-карусель: бесконечный конвейер (движение через JS) ── */
.pf-showcase__viewport {
  position: relative;
  overflow: hidden;
}
.pf-showcase__track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 8px 0 24px;
  will-change: transform;
}

/* ── Карточка ── */
.pf-card {
  flex: 0 0 auto;
  width: clamp(240px, 28vw, 380px);
  aspect-ratio: 1 / 1;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  background: #f3f3f3;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 3;
}
.pf-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Большая кнопка по центру плёнки ── */
.pf-showcase__center-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -42%);
  padding: 18px 38px;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #111;
  background: #fff;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22,1,0.36,1);
  z-index: 6;
}
.pf-showcase__viewport:hover .pf-showcase__center-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

/* Текст внутри — над декоративными полумесяцами */
.pf-showcase__center-btn-text {
  position: relative;
  z-index: 2;
}

/* CMY-полумесяцы по бокам кнопки. Появляются только при наведении на саму кнопку.
   Форма с острыми концами создана SVG-маской, цвет — через currentColor. */
.pf-arc {
  position: absolute;
  top: 50%;
  width: 28px;
  height: 36px;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  background: currentColor;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: opacity 0.4s ease, transform 0.55s cubic-bezier(0.22,1,0.36,1);
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.15));
}

.pf-arc--c { color: #1ec9e8; }
.pf-arc--m { color: #f54e72; }
.pf-arc--y { color: #ffc11e; }

/* Полумесяц, открытый ВПРАВО (для левой стороны кнопки): острая часть смотрит в сторону кнопки */
.pf-arc--l1, .pf-arc--l2, .pf-arc--l3 {
  left: 0;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path d='M50,0 A50,50 0 1,0 50,100 A30,50 0 1,1 50,0 Z' fill='black'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path d='M50,0 A50,50 0 1,0 50,100 A30,50 0 1,1 50,0 Z' fill='black'/></svg>");
  transform: translate(-25%, -50%) scale(0.5);
}

/* Полумесяц, открытый ВЛЕВО (для правой стороны кнопки) */
.pf-arc--r1, .pf-arc--r2, .pf-arc--r3 {
  right: 0;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path d='M50,0 A50,50 0 1,1 50,100 A30,50 0 1,0 50,0 Z' fill='black'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path d='M50,0 A50,50 0 1,1 50,100 A30,50 0 1,0 50,0 Z' fill='black'/></svg>");
  transform: translate(25%, -50%) scale(0.5);
}

/* Появление при наведении на саму кнопку */
.pf-showcase__center-btn:hover .pf-arc { opacity: 1; }

/* Конечные позиции (выезжают наружу с эхом) */
.pf-showcase__center-btn:hover .pf-arc--l1 { transform: translate(-110%, -50%) scale(1); }
.pf-showcase__center-btn:hover .pf-arc--l2 { transform: translate(-200%, -50%) scale(0.85); }
.pf-showcase__center-btn:hover .pf-arc--l3 { transform: translate(-290%, -50%) scale(0.7); }
.pf-showcase__center-btn:hover .pf-arc--r1 { transform: translate(110%, -50%) scale(1); }
.pf-showcase__center-btn:hover .pf-arc--r2 { transform: translate(200%, -50%) scale(0.85); }
.pf-showcase__center-btn:hover .pf-arc--r3 { transform: translate(290%, -50%) scale(0.7); }

/* Пульсация — мягкий ритм, у полумесяцев со сдвигом фазы */
.pf-showcase__center-btn:hover .pf-arc { animation: pfArcBeat 1.6s ease-in-out infinite; }
@keyframes pfArcBeat {
  0%, 100% { filter: drop-shadow(0 3px 8px rgba(0,0,0,0.15)); }
  50%      { filter: drop-shadow(0 3px 16px currentColor); }
}
.pf-showcase__center-btn:hover .pf-arc--l2,
.pf-showcase__center-btn:hover .pf-arc--r2 { animation-delay: 0.2s; }
.pf-showcase__center-btn:hover .pf-arc--l3,
.pf-showcase__center-btn:hover .pf-arc--r3 { animation-delay: 0.4s; }

/* ── CTA ── */
.pf-showcase__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 56px auto 0;
  padding: 0 40px;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
  max-width: 1280px;
  width: 100%;
}
.pf-showcase__cta svg { transition: transform 0.25s ease; }
.pf-showcase__cta:hover { gap: 20px; color: #1ec9e8; }
.pf-showcase__cta:hover svg { transform: translateX(6px); }

@media screen and (max-width: 760px) {
  .pf-showcase { padding: 50px 0 70px; }
  .pf-showcase__head { margin: 0 0 28px; padding: 0 22px; }
  .pf-showcase__cta { padding: 0 22px; font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .pf-showcase__title .pf-w { opacity: 1; transform: none; transition: none; }
  .pf-card, .pf-card img { transition: none; }
}



/* ═══════════════════════════════════════════
   ПУБЛИЧНЫЙ МИНИ-КАЛЬКУЛЯТОР (модалка)
   ═══════════════════════════════════════════ */
.kc-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', Arial, sans-serif;
}
.kc-modal.is-open { display: flex; }
.kc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
}
.kc-modal__dialog {
  position: relative;
  background: #fff;
  width: min(560px, calc(100vw - 24px));
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: 32px 28px 24px;
  box-shadow: 0 28px 60px rgba(0,0,0,0.28);
  border-radius: 0;
}
.kc-modal__x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #555;
  transition: color 0.2s;
}
.kc-modal__x:hover { color: #111; }

.kc-modal__head { margin-bottom: 18px; }
.kc-modal__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.kc-modal__sub { font-size: 13px; color: #888; line-height: 1.4; }

.kc-form { display: flex; flex-direction: column; gap: 14px; }

.kc-row { display: flex; flex-direction: column; gap: 6px; }
.kc-row--common {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}
.kc-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.kc-label { font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: #888; }
.kc-field { display: flex; flex-direction: column; }
.kc-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e3e3e3;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  outline: none;
  background: #fff;
  border-radius: 0;
  transition: border-color 0.15s ease;
}
.kc-input:focus { border-color: #111; }
select.kc-input { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, #888 50%), linear-gradient(135deg, #888 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 34px; }
.kc-input--qty { width: 86px; flex-shrink: 0; }

.kc-fieldset { border: 1px solid #eee; padding: 12px 14px; }
.kc-fieldset legend { font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: #888; padding: 0 6px; }

.kc-check { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; user-select: none; }
.kc-check input { width: 16px; height: 16px; accent-color: #111; }

.kc-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
}

.kc-tirage { display: flex; flex-wrap: wrap; gap: 6px; }
.kc-pill {
  border: 1px solid #e3e3e3;
  background: #fff;
  padding: 9px 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 999px;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.kc-pill:hover { border-color: #111; }
.kc-pill.is-active { background: #111; color: #fff; border-color: #111; }

.kc-tabs {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
  margin-bottom: 6px;
}
.kc-tab {
  border: 0;
  background: transparent;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.kc-tab.is-active { color: #111; border-bottom-color: #111; }

.kc-stab { display: flex; flex-direction: column; gap: 14px; }

.kc-modal__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #eee;
}

.kc-result { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.kc-result__label { font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: #888; }
.kc-result__sum { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; color: #111; }
.kc-result__note { font-size: 11px; color: #aaa; }

.kc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.kc-btn--primary { background: #111; color: #fff; }
.kc-btn--primary:hover { background: #1ec9e8; }
.kc-btn--ghost { background: #fff; color: #111; border-color: #e3e3e3; }
.kc-btn--ghost:hover { border-color: #111; }

.kc-lead { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.kc-lead h3 { font-size: 18px; font-weight: 800; }
.kc-lead__actions { display: flex; gap: 10px; justify-content: flex-end; }
.kc-lead__hint { font-size: 11px; color: #aaa; }

.kc-thanks { text-align: center; padding: 20px 0 4px; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.kc-thanks h3 { font-size: 22px; font-weight: 800; }
.kc-thanks p  { color: #666; font-size: 14px; }

@media screen and (max-width: 520px) {
  .kc-modal__dialog { padding: 22px 18px 18px; }
  .kc-grid-2 { grid-template-columns: 1fr; }
  .kc-modal__foot { flex-direction: column; align-items: stretch; gap: 12px; }
  .kc-btn { width: 100%; }
  .kc-result__sum { font-size: 24px; }
}

/* Кнопка-триггер калькулятора в блоках страницы */
.calc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 22px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.calc-cta:hover { background: #111; color: #fff; }
.calc-cta::after {
  content: '→';
  font-size: 16px;
  transition: transform 0.2s ease;
}
.calc-cta:hover::after { transform: translateX(4px); }
