:root {
  --bg: #f6cfac;
  --bg-light: #fff1e4;
  --accent: #ff8c27;
  --text: #1c1c1c;
  --text-muted: #444;
}

* { box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg) 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem clamp(16px, 4vw, 32px);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  border-bottom: 1px solid rgba(45, 45, 45, 0.1);
  flex-shrink: 0;
}

.header__brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.header__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.01em;
}

.header__desc {
  font-size: 0.8125rem;
  line-height: 1.3;
  color: var(--text-muted);
  margin: 0;
}

.header__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  transition: background 0.2s, color 0.2s;
}

.header__wa:hover {
  background: #ff8c27;
  color: #fff;
}

.header__wa::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2325D366"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347z"/><path d="M12 0C5.373 0 0 5.373 0 12c0 2.625.855 5.062 2.313 6.969L.975 24l5.25-1.383A11.93 11.93 0 0012 24c6.627 0 12-5.373 12-12S18.627 0 12 0z"/></svg>') no-repeat center;
  background-size: contain;
}

/* Offer section */
.offer-section {
  padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.offer-section__row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

@media (max-width: 639px) {
  .offer-section__row { grid-template-columns: 1fr; }
}

.offer-section__col--offer { text-align: left; }

.offer-section__col--right {
  min-height: 120px;
  background: transparent;
}

.offer-section__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1.625rem, 4vw, 2.25rem);
  line-height: 1.3;
  margin: 0 0 1.25rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.offer-section__title .accent {
  color: var(--accent);
}

.offer-section__subs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
}

.offer-section__sub-item {
  display: inline-block;
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.875rem;
  border: 1px solid rgba(28, 28, 28, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
}

.offer-section__cta {
  font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
  line-height: 1.65;
  margin: 1.25rem 0 1.25rem;
  color: var(--text);
  max-width: 42ch;
}

.offer-section__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  background: #25D366;
  transition: background 0.2s, transform 0.15s;
}

.offer-section__wa:hover {
  background: #20bd5a;
  color: #fff;
}

/* Vidi section */
.vidi-section {
  padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.vidi-section__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

@media (max-width: 639px) {
  .vidi-section__row { grid-template-columns: 1fr; }
}

.vidi-section__block {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(28, 28, 28, 0.12);
  border-radius: 12px;
  padding: clamp(24px, 3vw, 32px);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.vidi-section__block:hover {
  border-color: rgba(255, 140, 39, 0.4);
  box-shadow: 0 4px 16px rgba(255, 140, 39, 0.12);
}

.vidi-section__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--text);
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.vidi-section__text {
  font-size: clamp(1rem, 2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
  max-width: 50ch;
}

.vidi-section__triggers-wrap {
  position: relative;
  transition: max-height 0.35s ease;
}

.vidi-section__triggers-wrap--collapsed {
  max-height: 7.5em;
  overflow: hidden;
}

.vidi-section__triggers-wrap--collapsed::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3em;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.9));
  pointer-events: none;
}

.vidi-section__triggers-wrap:not(.vidi-section__triggers-wrap--collapsed)::after {
  display: none;
}

.vidi-section__toggle {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(255, 140, 39, 0.08);
  border: 1px solid rgba(255, 140, 39, 0.35);
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.vidi-section__toggle:hover {
  color: #c96f15;
  background: rgba(255, 140, 39, 0.14);
  border-color: rgba(255, 140, 39, 0.5);
}

.vidi-section__triggers {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vidi-section__trigger {
  font-size: clamp(0.875rem, 1.8vw, 0.9375rem);
  line-height: 1.5;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}

.vidi-section__trigger::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Prew section */
.prew-section {
  width: 100%;
  background-color: #fff;
}
.prew-section__inner {
  padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
}

.prew-section__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--text);
  margin: 0 0 clamp(24px, 4vw, 48px);
  text-align: left;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.prew-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: clamp(12px, 2vw, 24px);
}

.prew-section__item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  background: rgba(0, 0, 0, 0.06);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.prew-section__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Price section */
.price-section {
  width: 100%;
  background-color: #2d2d2d;
}
.price-section__inner {
  padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
}

.price-section__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #fff;
  margin: 0 0 clamp(24px, 4vw, 48px);
  text-align: left;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.price-section__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}

@media (max-width: 899px) {
  .price-section__row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 479px) {
  .price-section__row { grid-template-columns: 1fr; }
}

.price-section__card {
  background: #fff;
  border: 1px solid rgba(28, 28, 28, 0.12);
  border-radius: 12px;
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.price-section__card:hover {
  border-color: rgba(255, 140, 39, 0.4);
  box-shadow: 0 4px 16px rgba(255, 140, 39, 0.12);
}

.price-section__card--featured {
  border-color: var(--accent);
  background: rgba(255, 140, 39, 0.08);
}

.price-section__card--featured:hover {
  box-shadow: 0 4px 20px rgba(255, 140, 39, 0.2);
}

.price-section__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(0.9375rem, 2.2vw, 1.0625rem);
  line-height: 1.4;
  color: var(--text);
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}

.price-section__value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(0.8125rem, 1.8vw, 0.9375rem);
  line-height: 1.35;
  color: var(--accent);
  margin: 0;
  margin-top: auto;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.price-section__card--featured .price-section__value {
  color: #c96f15;
}

.price-section__desc {
  font-size: clamp(0.875rem, 1.8vw, 0.9375rem);
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0;
  margin-top: auto;
}

/* Process section — путь прочтения */
.proc-section {
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(246, 207, 172, 0.25) 100%);
}

.proc-section__inner {
  padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 48px);
  max-width: 1000px;
  margin: 0 auto;
}

.proc-section__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--text);
  text-align: left;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.proc-section__intro {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 clamp(40px, 6vw, 56px);
  text-align: left;
  max-width: 640px;
}

.proc-section__path {
  position: relative;
}

/* Вертикальная линия пути — слева, последовательно на всех экранах */
.proc-section__track {
  position: absolute;
  left: 26px;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 4px;
  margin-left: 0;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(255, 140, 39, 0.4) 50%, #e67e1f 100%);
  border-radius: 2px;
  pointer-events: none;
}

.proc-section__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 28px);
}

.proc-section__step {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 2.5vw, 24px);
  position: relative;
  min-height: 0;
  flex-direction: row;
}

/* Круг с номером на линии пути */
.proc-section__node {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255, 140, 39, 0.35);
  position: relative;
  z-index: 1;
  transition: transform 0.2s, box-shadow 0.2s;
}

.proc-section__step:hover .proc-section__node {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(255, 140, 39, 0.45);
}

.proc-section__node--last {
  background: linear-gradient(135deg, #e67e1f 0%, #c96f15 100%);
  box-shadow: 0 4px 16px rgba(198, 111, 21, 0.4);
}

/* Карточка шага */
.proc-section__step-body {
  flex: 1;
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(28, 28, 28, 0.08);
  border-radius: 14px;
  padding: clamp(20px, 2.5vw, 28px);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.proc-section__step-body:hover {
  border-color: rgba(255, 140, 39, 0.3);
  box-shadow: 0 8px 24px rgba(255, 140, 39, 0.12);
}

.proc-section__step-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.proc-section__step-head {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text);
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.proc-section__step-head em {
  font-style: normal;
  color: var(--text-muted);
  font-weight: 500;
}

.proc-section__step-desc {
  font-size: clamp(0.9375rem, 1.9vw, 1rem);
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.proc-section__step-result {
  font-size: clamp(0.875rem, 1.8vw, 0.9375rem);
  line-height: 1.5;
  color: var(--text-muted);
  padding: 0.6rem 0.75rem;
  background: rgba(255, 140, 39, 0.08);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

.proc-section__step-result strong {
  color: var(--text);
}

@media (max-width: 699px) {
  .proc-section__track {
    left: 22px;
    top: 1rem;
    bottom: 1rem;
  }

  .proc-section__node {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }
}

/* Command / Team section */
.command-section {
  padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Меньше отступ между блоками Руководители и Художники */
.command-section--ruk {
  padding-bottom: 0;
}
.command-section--ruk + .command-section--hud {
  padding-top: clamp(12px, 2vw, 20px);
}

.command-section__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--text);
  margin: 0 0 clamp(24px, 4vw, 48px);
  text-align: left;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.command-section__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: var(--text-muted);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.command-section__row--leaders {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: clamp(32px, 5vw, 56px);
}
/* Меньше отступ ряда руководителей перед блоком Художники */
.command-section--ruk .command-section__row--leaders {
  margin-bottom: clamp(12px, 2vw, 20px);
}

.command-section__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}

.command-section__row--artists {
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1023px) {
  .command-section__row:not(.command-section__row--leaders):not(.command-section__row--artists) { grid-template-columns: repeat(3, 1fr); }
  .command-section__row--artists { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
  .command-section__row:not(.command-section__row--leaders):not(.command-section__row--artists) {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1rem;
    padding-bottom: 0.5rem;
    margin-left: calc(-1 * clamp(20px, 5vw, 48px));
    margin-right: calc(-1 * clamp(20px, 5vw, 48px));
    padding-left: clamp(20px, 5vw, 48px);
    padding-right: clamp(20px, 5vw, 48px);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .command-section__row:not(.command-section__row--leaders):not(.command-section__row--artists) .command-section__card {
    flex-shrink: 0;
    width: min(180px, 52vw);
  }
  /* Художники на мобилке — по 2 в ряд */
  .command-section__row--artists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: visible;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .command-section__row--artists .command-section__card {
    flex-shrink: unset;
    width: 100%;
  }
}

/* Руководители: на мобилке — друг под другом (после .command-section__row, иначе display перезаписывается) */
@media (max-width: 899px) {
  .command-section__row--leaders {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.command-section__card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(28, 28, 28, 0.12);
  border-radius: 12px;
  padding: clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.command-section__card:hover {
  border-color: rgba(255, 140, 39, 0.4);
  box-shadow: 0 4px 16px rgba(255, 140, 39, 0.12);
}

.command-section__card--leader {
  padding: clamp(24px, 3vw, 32px);
  border-color: rgba(255, 140, 39, 0.2);
  background: rgba(255, 255, 255, 0.95);
}

.command-section__card--leader:hover {
  box-shadow: 0 6px 20px rgba(255, 140, 39, 0.18);
}

.command-section__card--info {
  justify-content: center;
  border-color: var(--accent);
  background: var(--accent);
}

.command-section__card--info:hover {
  border-color: #e67e1f;
  box-shadow: 0 4px 16px rgba(255, 140, 39, 0.35);
}

.command-section__info-text {
  margin: 0;
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  line-height: 1.45;
  color: #fff;
}

.command-section__leader-info {
  flex: 1;
  min-width: 0;
}

@media (max-width: 767px) {
  .command-section__card--leader {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 1rem 1.25rem;
  }
  .command-section__avatar--leader {
    width: 72px;
    height: 72px;
    margin-bottom: 0;
    margin-right: 1.25rem;
  }
  .command-section__card--leader .command-section__leader-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
  }
  .command-section__card--leader .command-section__name {
    margin: 0;
  }
}

.command-section__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 140, 39, 0.25) 0%, rgba(255, 140, 39, 0.08) 100%);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.command-section__avatar--leader {
  width: 100px;
  height: 100px;
  margin-bottom: 1.25rem;
}

.command-section__avatar--ruk-1 { background-image: url('../img/ruk/1.png'); background-size: cover; background-position: center; }
.command-section__avatar--ruk-2 { background-image: url('../img/ruk/2.png'); background-size: cover; background-position: center; }
.command-section__avatar--ruk-3 { background-image: url('../img/ruk/3.png'); background-size: cover; background-position: center; }

.command-section__avatar--hud-1 { background-image: url('../img/hud/1.png'); background-size: cover; background-position: center; }

.command-section__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  line-height: 1.35;
  color: var(--text);
  margin: 0 0 0.35rem;
  letter-spacing: -0.01em;
}

.command-section__card--leader .command-section__name {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
}

.command-section__card--leader .command-section__role {
  font-size: clamp(0.875rem, 1.9vw, 1rem);
}

.command-section__role {
  font-size: clamp(0.8125rem, 1.8vw, 0.9375rem);
  line-height: 1.4;
  color: var(--text-muted);
  margin: 0;
}

/* Footer */
.footer {
  width: 100%;
  background-color: #2d2d2d;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
  flex-shrink: 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem clamp(16px, 4vw, 32px);
  max-width: 1200px;
  margin: 0 auto;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

.footer__desc {
  font-size: 0.8125rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1c1c1c;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  transition: background 0.2s, color 0.2s;
}

.footer__wa:hover {
  background: #ff8c27;
  color: #fff;
}

.footer__wa::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2325D366"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347z"/><path d="M12 0C5.373 0 0 5.373 0 12c0 2.625.855 5.062 2.313 6.969L.975 24l5.25-1.383A11.93 11.93 0 0012 24c6.627 0 12-5.373 12-12S18.627 0 12 0z"/></svg>') no-repeat center;
  background-size: contain;
}

/* Мобильная плавающая кнопка WhatsApp — только на мобильных, следует за прокруткой */
.mob-wa {
  display: none;
}

@media (max-width: 639px) {
  /* На мобилке скрываем кнопки WhatsApp в шапке и подвале; в оффере и плавающая .mob-wa — видимы */
  .header__wa,
  .footer__wa {
    display: none !important;
  }

  .mob-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    min-height: 62px;
    padding: 0.75rem 1rem;
    border-radius: 0;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    transition: background 0.2s, opacity 0.15s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    box-sizing: border-box;
  }

  .mob-wa:active {
    opacity: 0.92;
  }

  .mob-wa__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23fff"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347z"/><path d="M12 0C5.373 0 0 5.373 0 12c0 2.625.855 5.062 2.313 6.969L.975 24l5.25-1.383A11.93 11.93 0 0012 24c6.627 0 12-5.373 12-12S18.627 0 12 0z"/></svg>') no-repeat center;
    background-size: contain;
  }

  .mob-wa__text {
    display: inline;
  }
}
