/* Cadou.Studio — премиальный тёмный стиль с золотом */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", Arial, sans-serif;
  --color-gold: #d4af37;
  --color-gold-light: #f0d67a;
  --color-gold-dim: rgba(212, 175, 55, 0.58);
  --color-red: #ef3a2b;
  --color-red-dark: #c42a1e;
  --color-red-selected: rgba(239, 58, 43, 0.88);
  --color-bg: #060506;
  --color-bg-warm: #0e0a0a;
  --color-border: rgba(212, 175, 55, 0.38);
  --color-border-subtle: rgba(212, 175, 55, 0.22);
  --color-border-red: rgba(239, 58, 43, 0.45);
  --color-green: #6fcf7a;
  --color-green-bg: rgba(24, 56, 32, 0.62);
  --color-green-border: rgba(111, 207, 122, 0.88);
  --color-green-glow: rgba(111, 207, 122, 0.28);
  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.72);
  --color-text-dim: rgba(255, 255, 255, 0.5);
  --color-surface: rgba(16, 10, 10, 0.88);
  --color-surface-elevated: rgba(20, 12, 12, 0.94);
  --radius: 10px;
  --icon-gift-size: 2rem;
  --icon-gift-size-occasions: 1.5rem;
  --icon-play-size: 1.45rem;
  --glow-gold: rgba(212, 175, 55, 0.09);
  --glow-warm: rgba(90, 28, 22, 0.14);
  --glow-red: rgba(180, 32, 24, 0.12);
  --scroll-offset: 5.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-offset);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background:
    radial-gradient(circle at 82% 8%, var(--glow-gold), transparent 34%),
    radial-gradient(circle at 12% 20%, var(--glow-warm), transparent 28%),
    radial-gradient(circle at 50% 100%, var(--glow-red), transparent 40%),
    linear-gradient(165deg, #050405 0%, #080707 52%, #0c0909 100%);
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.022) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.14;
  z-index: 0;
}

main,
.header,
.footer {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-gold-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #fff4d6;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: #ffffff;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.01em;
}

p {
  margin-top: 0;
}

/* Контейнер */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Кнопки */

.btn {
  display: inline-block;
  padding: 0.7rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #ef3a2b 0%, var(--color-red-dark) 100%);
  border-color: rgba(239, 58, 43, 0.55);
  box-shadow: 0 4px 24px rgba(239, 58, 43, 0.32);
}

.btn--primary:hover {
  color: #fff;
  box-shadow: 0 6px 32px rgba(239, 58, 43, 0.42);
}

.btn--secondary {
  color: var(--color-gold-light);
  background: rgba(212, 175, 55, 0.06);
  border-color: var(--color-border);
}

.btn--secondary:hover {
  color: #fff;
  background: rgba(212, 175, 55, 0.14);
  border-color: var(--color-gold-dim);
}

.btn--tariff-basic {
  color: #8cb4f0;
  background: rgba(70, 120, 200, 0.08);
  border-color: rgba(91, 141, 220, 0.62);
}

.btn--tariff-basic:hover {
  color: #b8d4ff;
  background: rgba(70, 120, 200, 0.16);
  border-color: rgba(120, 165, 235, 0.82);
}

.btn--tariff-premium {
  color: #ff7a6e;
  background: rgba(239, 58, 43, 0.08);
  border-color: rgba(239, 58, 43, 0.62);
}

.btn--tariff-premium:hover {
  color: #ffb4ab;
  background: rgba(239, 58, 43, 0.16);
  border-color: rgba(255, 95, 82, 0.82);
}

/* Шапка */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  position: relative;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header__toggle {
  display: none;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--color-gold-light);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.header__toggle:hover {
  background: rgba(212, 175, 55, 0.16);
  border-color: var(--color-gold-dim);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo__img {
  display: block;
  width: auto;
  height: 2.65rem;
  max-width: min(62vw, 14rem);
}

.logo:hover {
  opacity: 0.92;
  text-decoration: none;
}

.nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.nav__list a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-sans);
}

.nav__list a:hover {
  color: var(--color-gold-light);
}

.header--pesnya .nav__list--pesnya-desktop {
  display: none;
}

.header--pesnya .nav__list--pesnya-mobile {
  gap: 0.55rem 0.85rem;
  justify-content: flex-end;
}

@media (min-width: 1100px) {
  .header--pesnya .nav__list--pesnya-desktop {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem 1.5rem;
    justify-content: flex-end;
  }

  .header--pesnya .nav__list--pesnya-desktop a {
    font-size: 0.9rem;
    line-height: 1.3;
    white-space: nowrap;
  }

  .header--pesnya .nav__list--pesnya-mobile {
    display: none;
  }
}

@media (max-width: 1099px) {
  .header--pesnya .header__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .header--pesnya .header__menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1.25rem;
    right: 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.65rem;
    background: linear-gradient(165deg, #161210 0%, #1c1412 100%);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  }

  .header--pesnya.header--open .header__menu {
    display: flex;
  }

  .header--pesnya .nav__list--pesnya-mobile {
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
  }

  .header--pesnya .nav__list--pesnya-mobile a {
    display: block;
    padding: 0.55rem 0.65rem;
    font-size: 0.92rem;
    border-radius: 6px;
  }

  .header--pesnya .nav__list--pesnya-mobile a:hover {
    background: rgba(212, 175, 55, 0.1);
  }
}

.footer--pesnya .footer__list--pesnya-desktop {
  display: none;
}

@media (min-width: 992px) {
  .footer--pesnya .footer__column .footer__list--pesnya-desktop {
    display: block !important;
  }

  .footer--pesnya .footer__column .footer__list--pesnya-mobile {
    display: none !important;
  }
}

/* Первый экран */

.hero {
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

#about.section {
  padding-top: 2.75rem;
}

.hero::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -15%;
  width: 60%;
  height: 75%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(180, 40, 30, 0.1), rgba(212, 175, 55, 0.06) 35%, transparent 68%);
}

.hero__layout {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.hero__content {
  max-width: 36rem;
}

.hero__title {
  font-size: clamp(2rem, 5.8vw, 2.65rem);
  line-height: 1.15;
  margin-bottom: 0.65rem;
  color: #ffffff;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  font-size: 1.5em;
  line-height: 1.05;
  color: var(--color-gold-light);
  margin: 0.08em 0;
}

.hero__divider {
  margin: 0 auto 0.95rem;
  max-width: min(100%, 26rem);
}

.hero__divider-img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.95;
}

.hero__lead {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
  max-width: 34rem;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__gift {
  width: min(90vw, 380px);
  height: auto;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.45));
}

@media (min-width: 768px) {
  .hero {
    padding: 4rem 0 3rem;
  }

  .hero__layout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .hero__content {
    flex: 1 1 50%;
  }

  .hero__visual {
    flex: 0 1 42%;
    justify-content: flex-end;
  }

  .hero__gift {
    width: min(100%, 360px);
  }

  .logo__img {
    height: 2.8rem;
    max-width: 14.5rem;
  }

  .hero__divider {
    max-width: min(100%, 22rem);
  }
}

@media (min-width: 992px) {
  .hero__gift {
    width: min(100%, 400px);
  }

  .hero__divider {
    max-width: min(100%, 24rem);
  }
}

/* Секции */

.section {
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--color-border-subtle);
}

.section--alt {
  background: rgba(10, 7, 7, 0.55);
}

.section--cta {
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.1), transparent 55%),
    rgba(14, 10, 9, 0.65);
  border-bottom: none;
}

.section__title {
  font-size: clamp(1.85rem, 4.5vw, 2.35rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.section__title--decorated {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}

.section__title-text {
  flex: 0 1 auto;
  line-height: 1.2;
}

.section__title-flourish {
  flex: 0 1 auto;
  display: block;
  width: clamp(3rem, 14vw, 5.5rem);
  height: auto;
  opacity: 0.95;
}

#about > .container > .section__lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__lead {
  color: var(--color-text-muted);
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.section--cta .section__lead {
  margin-left: auto;
  margin-right: auto;
}

/* Обзор 7 услуг */

.services-overview {
  margin-bottom: 2.25rem;
}

.services-overview__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.services-overview__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  background: linear-gradient(160deg, rgba(28, 20, 16, 0.92), rgba(12, 10, 9, 0.88));
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.services-overview__item:hover {
  border-color: var(--color-gold-dim);
  background: linear-gradient(160deg, rgba(34, 24, 18, 0.96), rgba(16, 12, 10, 0.92));
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
  text-decoration: none;
}

.services-overview__icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
}

.services-overview__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.services-overview__title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
  font-family: var(--font-serif);
}

.services-overview__subtitle {
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--color-text-muted);
}

@media (min-width: 640px) {
  .services-overview__icon {
    width: 3rem;
    height: 3rem;
  }

  .services-overview__title {
    font-size: 1rem;
  }
}

/* Блок услуги: оживление фото */

.service-feature {
  width: 100%;
  margin-bottom: 2.5rem;
  padding: 1.35rem 1rem 1.15rem;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(212, 175, 55, 0.07), transparent 50%),
    linear-gradient(165deg, #161210 0%, #1c1412 55%, #12100e 100%);
  overflow: hidden;
}

.service-feature__head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.service-feature__icon {
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
}

.service-feature__title {
  font-size: clamp(1.45rem, 4.5vw, 1.95rem);
  line-height: 1.2;
  margin: 0;
  color: #ffffff;
  flex: 1;
  min-width: 0;
}

.service-feature__desc {
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 52rem;
}

.service-feature__link {
  display: block;
  margin-bottom: 1.15rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--color-gold);
  text-align: right;
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-feature__link:hover {
  color: var(--color-gold-light);
  text-decoration: none;
}

.service-feature__marquee {
  overflow: hidden;
  margin: 0 -1rem;
  padding: 0.25rem 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}

.service-feature__track {
  display: flex;
  gap: 0.85rem;
  width: max-content;
  padding: 0 1rem;
  animation: service-feature-scroll 15s linear infinite;
}

.service-feature__track:hover {
  animation-play-state: paused;
}

@keyframes service-feature-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.service-feature__slide {
  position: relative;
  flex: 0 0 auto;
  width: min(78vw, 220px);
  display: block;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-feature__slide:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  text-decoration: none;
}

.service-feature__slide img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
  background: rgba(22, 16, 14, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.21);
}

.service-feature__caption {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  max-width: calc(100% - 1.3rem);
  padding: 0.3rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff;
  background: rgba(14, 10, 9, 0.78);
  border: 1px solid rgba(212, 175, 55, 0.17);
  border-radius: 6px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

@media (min-width: 640px) {
  .service-feature {
    padding: 1.75rem 1.5rem 1.5rem;
  }

  .service-feature__head {
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .service-feature__icon {
    width: 3.5rem;
    height: 3.5rem;
  }

  .service-feature__marquee {
    margin: 0 -1.5rem;
  }

  .service-feature__track {
    gap: 1.1rem;
    padding: 0 1.5rem;
  }

  .service-feature__slide {
    width: 220px;
  }

  .service-feature__desc {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }

  .service-feature__caption {
    font-size: 0.8rem;
  }
}

@media (min-width: 900px) {
  .service-feature__slide {
    width: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-feature__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }

  .service-feature__slide[aria-hidden="true"] {
    display: none;
  }

  .service-feature__marquee {
    -webkit-mask-image: none;
    mask-image: none;
    overflow: visible;
  }
}

/* Карточки «Что мы создаём» */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  padding: 1.5rem;
  background: linear-gradient(160deg, rgba(26, 7, 8, 0.9) 0%, rgba(8, 8, 11, 0.85) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: rgba(239, 58, 43, 0.45);
  box-shadow: 0 8px 32px rgba(239, 58, 43, 0.1);
}

.card__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.card__text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Шаги */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(135deg, #ef3a2b, #a81f14);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(239, 58, 43, 0.35);
}

.step__title {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.step__text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Галерея примеров */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.gallery__placeholder {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(160deg, rgba(26, 7, 8, 0.95), rgba(8, 8, 11, 0.9)),
    radial-gradient(circle at 30% 30%, rgba(239, 58, 43, 0.08), transparent 50%);
  color: var(--color-text-dim);
  font-size: 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

.gallery__caption {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* Цены */

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.pricing__item {
  padding: 2rem 1.5rem;
  background: linear-gradient(160deg, rgba(18, 7, 8, 0.92), rgba(8, 8, 11, 0.88));
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing__item:hover {
  border-color: rgba(239, 58, 43, 0.4);
}

.pricing__item--featured {
  border-color: rgba(239, 58, 43, 0.55);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(239, 58, 43, 0.15), transparent 60%),
    linear-gradient(160deg, rgba(26, 7, 8, 0.95), rgba(8, 8, 11, 0.9));
  box-shadow: 0 0 40px rgba(239, 58, 43, 0.12);
}

.pricing__name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.pricing__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-red);
  margin-bottom: 1rem;
}

.pricing__desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Блок «Вопросы» */

.questions-block {
  margin-top: 0.5rem;
  padding: 1.35rem 1rem 1rem;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(212, 175, 55, 0.07), transparent 45%),
    linear-gradient(165deg, #161210 0%, #1c1412 55%, #12100e 100%);
}

.questions-block__title {
  margin-bottom: 1rem;
  font-size: clamp(1.35rem, 4vw, 1.65rem);
  font-weight: 600;
  font-family: var(--font-serif);
  line-height: 1.3;
  color: #ffffff;
}

.questions-block__accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.questions-block__item {
  border-bottom: 1px solid var(--color-border);
}

.questions-block__item:last-child {
  border-bottom: none;
}

.questions-block__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-sans);
  line-height: 1.35;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}

.questions-block__question::-webkit-details-marker {
  display: none;
}

.questions-block__question::after {
  flex-shrink: 0;
  content: "+";
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-gold);
  transition: transform 0.2s ease;
}

.questions-block__item[open] .questions-block__question {
  color: var(--color-gold-light);
}

.questions-block__item[open] .questions-block__question::after {
  content: "−";
}

.questions-block__question:hover {
  color: var(--color-gold-light);
}

.questions-block__answer {
  padding: 0 0 0.9rem;
}

.questions-block__answer p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

@media (min-width: 640px) {
  .questions-block {
    padding: 1.75rem 1.5rem 1.25rem;
  }

  .questions-block__title {
    font-size: 1.35rem;
    margin-bottom: 1.15rem;
  }

  .questions-block__question {
    font-size: 1rem;
    padding: 0.95rem 0;
  }

  .questions-block__answer p {
    font-size: 0.95rem;
  }
}

/* Блок «Способы оплаты» */

.payment-block {
  margin-top: 2rem;
  padding: 1.35rem 1rem 1.25rem;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(212, 175, 55, 0.07), transparent 45%),
    linear-gradient(165deg, #161210 0%, #1c1412 55%, #12100e 100%);
}

.payment-block__title {
  margin-bottom: 1rem;
  font-size: clamp(1.35rem, 4vw, 1.65rem);
  font-weight: 600;
  font-family: var(--font-serif);
  line-height: 1.3;
  color: #ffffff;
}

.payment-block__text,
.payment-block__note {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.payment-block__note {
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.21);
  background: rgba(14, 10, 9, 0.55);
}

.payment-block__label {
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

.payment-block__list {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.payment-block__list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.15rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.payment-block__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-gold);
  opacity: 0.85;
}

.payment-block__badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.payment-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 0.35rem 0.3rem;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: rgba(14, 10, 9, 0.55);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.payment-badge:hover {
  border-color: var(--color-gold-dim);
  background: rgba(22, 16, 14, 0.82);
}

  .payment-badge__img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 4.25rem;
    object-fit: contain;
  }

/* Блок «Способы оплаты» — лендинг персональной песни (отдельно от главной) */

.payment-block-landing {
  max-width: 44rem;
  margin: 0 auto;
}

.payment-block-landing__text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
}

.payment-block-landing__label {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  font-family: var(--font-sans);
}

.payment-block-landing__list {
  max-width: 16rem;
  margin: 0 auto 1.25rem;
  padding: 0;
  list-style: none;
}

.payment-block-landing__list li {
  position: relative;
  padding: 0.32rem 0 0.32rem 1.15rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
}

.payment-block-landing__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-gold);
  opacity: 0.85;
}

.payment-block-landing__note {
  margin: 0 0 1.15rem;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: center;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.21);
  background: rgba(14, 10, 9, 0.55);
}

.payment-block-landing__badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 480px) {
  .payment-block-landing__badges {
    gap: 0.85rem;
  }
}

@media (min-width: 640px) {
  .payment-block-landing__text,
  .payment-block-landing__note {
    font-size: 0.98rem;
  }

  .payment-block-landing__list li {
    font-size: 0.95rem;
  }

  .payment-block-landing__badges {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 480px) {
  .payment-block__badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
}

@media (min-width: 640px) {
  .payment-block {
    margin-top: 2.5rem;
    padding: 1.75rem 1.5rem 1.5rem;
  }

  .payment-block__title {
    font-size: 1.35rem;
    margin-bottom: 1.15rem;
  }

  .payment-block__text,
  .payment-block__note {
    font-size: 0.95rem;
  }

  .payment-block__list li {
    font-size: 0.95rem;
  }

  .payment-block__badges {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .payment-badge {
    min-height: 72px;
    padding: 0.35rem 0.3rem;
  }

  .payment-badge__img {
    max-height: 3.75rem;
  }
}

/* Контакты */

.contact__text {
  margin: 0 auto 1rem;
  max-width: 42rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.contact__text--alt {
  margin-bottom: 1.5rem;
}

.contact__question {
  margin: 0.35rem auto 0.75rem;
  max-width: 42rem;
  font-size: clamp(1.3rem, 5vw, 1.55rem);
  font-weight: 600;
  font-family: var(--font-serif);
  line-height: 1.35;
  color: #ffffff;
}

.contact__action {
  display: block;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
}

/* Подвал */

.footer {
  padding: 2.75rem 0 2rem;
  background: rgba(8, 6, 5, 0.98);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer__layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer__logo {
  display: block;
  width: min(68vw, 19rem);
  height: auto;
  margin-bottom: 0.85rem;
}

.footer__tagline {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-serif);
}

.footer__divider {
  width: 100%;
  max-width: min(88vw, 20rem);
  margin: 0 auto;
}

.footer__divider-img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.95;
}

.footer__columns {
  width: 100%;
}

.footer__column {
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.footer__column:last-child {
  border-bottom: none;
}

.footer__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-serif);
  color: var(--color-gold-light);
  cursor: pointer;
  list-style: none;
}

.footer__heading::-webkit-details-marker {
  display: none;
}

.footer__heading::after {
  flex-shrink: 0;
  content: "+";
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1;
  min-width: 1.75rem;
  text-align: center;
  color: var(--color-gold);
  transition: transform 0.2s ease;
}

.footer__column[open] .footer__heading::after {
  content: "−";
}

.footer__list {
  margin: 0 0 0.85rem;
  padding: 0;
  list-style: none;
}

.footer__list a {
  display: inline-block;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__list a:hover {
  color: var(--color-gold-light);
  text-decoration: none;
}

.footer__list--contacts {
  margin-bottom: 0.75rem;
}

.footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0;
  color: var(--color-text-muted);
  text-decoration: none;
  word-break: break-word;
}

.footer__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0;
  color: var(--color-text-muted);
  word-break: break-word;
}

.footer__contact-link:hover {
  color: var(--color-gold-light);
  text-decoration: none;
}

.footer__contact-icon {
  flex-shrink: 0;
  width: 1.15rem;
  color: var(--color-gold);
  font-size: 0.95rem;
  line-height: 1;
  text-align: center;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0 0 0.85rem;
  list-style: none;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-gold-light);
  background: rgba(212, 175, 55, 0.06);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer__social-link:hover {
  color: #fff;
  border-color: var(--color-gold-dim);
  background: rgba(212, 175, 55, 0.14);
  text-decoration: none;
}

.footer__social-icon {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
}

.footer__copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-text-dim);
  text-align: center;
}

/* Правовые страницы */

.legal-page {
  padding: 2.5rem 0 3.5rem;
  border-bottom: 1px solid var(--color-border);
}

.legal-page__inner {
  max-width: 46rem;
}

.legal-page__back {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
}

.legal-page__back a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.legal-page__back a:hover {
  color: var(--color-gold-light);
}

.legal-page__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-gold-light);
}

.legal-page__date {
  margin: 0 0 2rem;
  font-size: 0.95rem;
  color: var(--color-text-dim);
}

.legal-page__section {
  margin-bottom: 2rem;
}

.legal-page__section:last-child {
  margin-bottom: 0;
}

.legal-page__section h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-gold-light);
}

.legal-page__section h3 {
  margin: 1.25rem 0 0.65rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

.legal-page__section p {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.legal-page__section p:last-child {
  margin-bottom: 0;
}

.legal-page__section ul {
  margin: 0 0 0.85rem;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.legal-page__section ul:last-child {
  margin-bottom: 0;
}

.legal-page__section li + li {
  margin-top: 0.35rem;
}

.legal-page__section a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal-page__section a:hover {
  color: var(--color-gold-light);
}

.legal-page__contacts {
  list-style: none;
  padding-left: 0;
}

.legal-page__contacts li + li {
  margin-top: 0.45rem;
}

@media (min-width: 992px) {
  .footer {
    padding: 3rem 0 2.25rem;
  }

  .footer__layout {
    display: grid;
    grid-template-columns: minmax(11rem, 14rem) minmax(0, 1fr);
    gap: 2rem 2.5rem;
    align-items: start;
  }

  .footer__brand {
    align-items: flex-start;
    text-align: left;
  }

  .footer__logo {
    width: min(100%, 10.5rem);
    margin-bottom: 0;
  }

  .footer__tagline,
  .footer__divider {
    display: none;
  }

  .footer__heading {
    padding: 0 0 0.75rem;
    font-size: 1.25rem;
    pointer-events: none;
    cursor: default;
  }

  .footer__heading::after {
    display: none;
  }

  .footer__columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 2rem;
    align-items: start;
  }

  .footer__column {
    border-bottom: none;
  }

  .footer__column--contacts .footer__social {
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .footer__column--contacts {
    text-align: left;
  }

  .footer__column > :not(summary) {
    display: revert !important;
  }

  .footer__column .footer__list {
    display: block !important;
  }

  .footer__column .footer__social {
    display: flex !important;
  }
}

@media (max-width: 991px) {
  .footer__tagline {
    font-size: 1.2rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.88);
  }
}

/* Адаптив */

@media (max-width: 768px) {
  :root {
    --scroll-offset: 6.75rem;
    --color-border: rgba(212, 175, 55, 0.46);
    --color-border-subtle: rgba(212, 175, 55, 0.28);
    --color-gold-dim: rgba(212, 175, 55, 0.68);
  }

  .section__title {
    font-size: clamp(1.4rem, 5vw, 1.75rem);
    line-height: 1.15;
  }

  .section__title-text {
    line-height: 1.15;
  }

  .section__title--decorated {
    gap: 0.5rem;
  }

  .section__title-flourish {
    width: clamp(2rem, 9vw, 3rem);
  }

  .header .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .header__inner {
    flex-wrap: nowrap;
    padding: 0.75rem 0;
  }

  .header__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .header__menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1.25rem;
    right: 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.65rem;
    background: linear-gradient(165deg, #161210 0%, #1c1412 100%);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  }

  .header--open .header__menu {
    display: flex;
  }

  .header--open .header__toggle {
    background: rgba(212, 175, 55, 0.18);
    border-color: var(--color-gold-dim);
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
  }

  .nav__list a {
    display: block;
    padding: 0.55rem 0.65rem;
    font-size: 0.9rem;
    border-radius: 6px;
  }

  .nav__list a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold-light);
  }

  .hero__title {
    font-size: clamp(1.85rem, 6.5vw, 2.25rem);
    text-align: center;
  }

  .hero__title-line--accent {
    font-size: 1.55em;
  }

  .hero__content {
    margin-inline: auto;
    text-align: center;
  }

  .hero__divider {
    max-width: min(88vw, 20rem);
    margin-bottom: 0.85rem;
  }

  .hero__lead {
    margin-inline: auto;
    font-size: 1rem;
  }

  .hero {
    padding: 2.25rem 0 2rem;
  }

  #about.section {
    padding-top: 2rem;
  }

  .logo__img {
    height: 3.1rem;
    max-width: min(68vw, 15.5rem);
  }

  .hero__visual {
    width: 100%;
    margin-top: 0.35rem;
  }

  .hero__gift {
    width: min(96vw, 425px);
  }
}

/* Лендинг: персональная песня */

.section__lead--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.landing-hero {
  padding-top: 2.5rem;
}

.landing-hero__layout {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: center;
}

.landing-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  flex: 1 1 100%;
  width: 100%;
  max-width: 26rem;
  margin-top: 0.25rem;
  padding-bottom: 0.35rem;
}

.landing-hero__btn-main {
  width: 100%;
  text-align: center;
}

.landing-hero__actions-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 0.75rem;
  width: 100%;
}

.landing-hero__actions-row .btn {
  min-width: 0;
  padding-left: 0.65rem;
  padding-right: 0.65rem;
  font-size: clamp(0.78rem, 2.8vw, 0.92rem);
  line-height: 1.25;
  text-align: center;
}

.landing-hero__title {
  font-size: clamp(1.65rem, 5vw, 2.35rem);
  line-height: 1.2;
}

.landing-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.landing-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  font-size: 0.82rem;
  font-family: var(--font-sans);
  color: var(--color-text-dim);
}

.landing-breadcrumb a {
  color: var(--color-text-muted);
}

.landing-breadcrumb a:hover {
  color: var(--color-gold-light);
}

.occasions-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.65rem;
  justify-content: center;
  max-width: 52rem;
  margin: 0 auto;
}

.occasions-tags__item {
  padding: 0.45rem 0.85rem;
  font-size: 0.88rem;
  font-family: var(--font-sans);
  color: var(--color-text-muted);
  background: rgba(16, 10, 10, 0.72);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.occasions-tags__item:hover {
  border-color: var(--color-gold-dim);
  color: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.15rem;
}

.benefits-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.55rem;
  row-gap: 0.45rem;
  align-items: center;
  padding: 1.1rem 1.15rem;
  background: linear-gradient(165deg, rgba(22, 14, 12, 0.92), rgba(10, 7, 7, 0.88));
  border: 1px solid var(--color-border);
  border-radius: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.benefits-card:hover {
  border-color: var(--color-gold-dim);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.benefits-card__emoji {
  grid-column: 1;
  grid-row: 1;
  font-size: 1.35rem;
  line-height: 1;
}

.benefits-card__emoji--gift {
  font-size: 0;
  width: var(--icon-gift-size);
  height: var(--icon-gift-size);
  background: url("/img/icons/gift.svg") center / contain no-repeat;
}

.benefits-card__title {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
  font-family: var(--font-serif);
}

.benefits-card__text {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.landing-steps {
  counter-reset: none;
}

.landing-steps .step {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.65rem;
  row-gap: 0.45rem;
  align-items: center;
}

.landing-steps .step__number {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
  flex-shrink: 0;
}

.landing-steps .step__title {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 0;
  line-height: 1.2;
}

.landing-steps .step__text {
  grid-column: 1 / -1;
  grid-row: 2;
}

.song-examples {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.song-example {
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, rgba(22, 14, 12, 0.94), rgba(10, 7, 7, 0.9));
  border: 1px solid var(--color-border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.song-example:hover {
  border-color: var(--color-gold-dim);
  transform: translateY(-2px);
}

.song-example__cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.song-example__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.1rem 1.15rem 1.2rem;
}

.song-example__title {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.song-example__meta {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  color: var(--color-gold-dim);
  font-family: var(--font-sans);
}

.song-example__meta span {
  color: var(--color-text-dim);
}

.song-example__desc {
  margin: 0 0 1rem;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.song-example__play {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  align-self: flex-start;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--color-text);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.song-example__play-icon {
  flex-shrink: 0;
  width: var(--icon-play-size);
  height: var(--icon-play-size);
  background: url("/img/icons/play.svg") center / contain no-repeat;
}

.song-example__play.is-playing .song-example__play-icon {
  background-image: url("/img/icons/pause.svg");
}

.song-example__play:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.45);
  color: #fff4d6;
}

.song-example__play.is-playing {
  border-color: rgba(239, 58, 43, 0.5);
  background: rgba(239, 58, 43, 0.12);
}

.pricing__badge {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-gold-light);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--color-border);
  border-radius: 999px;
}

.pricing__features {
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
  text-align: left;
}

.pricing__features li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
}

.pricing__features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

.landing-pricing .pricing__item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.landing-pricing .pricing__name {
  font-size: clamp(1.5rem, 4.2vw, 1.85rem);
  line-height: 1.15;
}

.landing-pricing .pricing__item--basic {
  border-color: rgba(91, 141, 220, 0.55);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(70, 120, 200, 0.16), transparent 62%),
    linear-gradient(160deg, rgba(10, 16, 28, 0.96), rgba(8, 8, 11, 0.9));
  box-shadow: 0 0 32px rgba(70, 120, 200, 0.1);
}

.landing-pricing .pricing__item--basic:hover {
  border-color: rgba(120, 165, 235, 0.72);
}

.landing-pricing .pricing__item--basic .pricing__name,
.landing-pricing .pricing__item--basic .pricing__price {
  color: #8cb4f0;
}

.landing-pricing .pricing__item--basic .pricing__features li::before {
  color: #6a9de0;
}

.landing-pricing .pricing__item--premium {
  border-color: rgba(239, 58, 43, 0.62);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(239, 58, 43, 0.18), transparent 62%),
    linear-gradient(160deg, rgba(26, 7, 8, 0.96), rgba(8, 8, 11, 0.9));
  box-shadow: 0 0 40px rgba(239, 58, 43, 0.14);
}

.landing-pricing .pricing__item--premium:hover {
  border-color: rgba(255, 95, 82, 0.78);
}

.landing-pricing .pricing__item--premium .pricing__name,
.landing-pricing .pricing__item--premium .pricing__price {
  color: #ff7a6e;
}

.landing-pricing .pricing__item--premium .pricing__features li::before {
  color: var(--color-red);
}

.landing-pricing .pricing__item--premium .pricing__badge {
  color: #ffb4ab;
  background: rgba(239, 58, 43, 0.14);
  border-color: rgba(239, 58, 43, 0.35);
}

.landing-pricing .pricing__item--vip {
  border-color: rgba(212, 175, 55, 0.62);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.16), transparent 62%),
    linear-gradient(160deg, rgba(24, 18, 8, 0.96), rgba(8, 8, 11, 0.9));
  box-shadow: 0 0 36px rgba(212, 175, 55, 0.12);
}

.landing-pricing .pricing__item--vip:hover {
  border-color: rgba(232, 198, 90, 0.78);
}

.landing-pricing .pricing__item--vip .pricing__name,
.landing-pricing .pricing__item--vip .pricing__price {
  color: var(--color-gold-light);
}

.landing-pricing .pricing__item--vip .pricing__features li::before {
  color: var(--color-gold);
}

.landing-pricing .btn {
  margin-top: auto;
}

#order .contact__text {
  margin-bottom: 2.35rem;
}

#order .contact__action {
  margin-top: 0.25rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.15rem;
}

.review-card {
  padding: 1.35rem 1.2rem;
  background: linear-gradient(165deg, rgba(22, 14, 12, 0.92), rgba(10, 7, 7, 0.88));
  border: 1px solid var(--color-border);
  border-radius: 16px;
}

.review-card__text {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.55;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
}

.review-card__author {
  margin: 0;
  font-size: 0.82rem;
  font-family: var(--font-sans);
  color: var(--color-gold-dim);
}

.reviews-note {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  text-align: center;
  color: var(--color-text-dim);
  font-family: var(--font-sans);
}

.order-form {
  max-width: 40rem;
  margin: 0 auto;
  text-align: left;
}

.order-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.order-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.order-form__field--full {
  grid-column: 1 / -1;
}

.order-form__label {
  font-size: 0.88rem;
  font-weight: 500;
  font-family: var(--font-sans);
  color: var(--color-text-muted);
}

.order-form__input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--color-text);
  background: rgba(8, 6, 6, 0.75);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.order-form__input::placeholder {
  color: var(--color-text-dim);
}

.order-form__input:focus {
  outline: none;
  border-color: var(--color-border);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.12);
}

.order-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d4af37' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
}

.order-form__textarea {
  resize: vertical;
  min-height: 7rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.occasions-intro {
  max-width: 36rem;
  margin: 0 auto 1.15rem;
}

.occasions-list {
  list-style: none;
  max-width: 22rem;
  margin: 0 auto;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.occasions-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.32rem 0;
}

.occasions-list li::before {
  content: "";
  flex-shrink: 0;
  width: var(--icon-gift-size-occasions);
  height: var(--icon-gift-size-occasions);
  background: url("/img/icons/gift.svg") center / contain no-repeat;
}

.zakaz-story {
  min-height: 14rem;
  line-height: 1.55;
  background: rgba(42, 34, 30, 0.92);
  border-width: 2px;
  border-style: solid;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.zakaz-story::placeholder {
  font-style: italic;
  color: rgba(196, 184, 168, 0.72);
}

.zakaz-story--low {
  border-color: #f06a5e;
  box-shadow: 0 0 0 1px rgba(240, 106, 94, 0.2);
}

.zakaz-story--mid {
  border-color: var(--color-gold-light);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.22);
}

.zakaz-story--good {
  border-color: #6fcf7a;
  box-shadow: 0 0 0 1px rgba(111, 207, 122, 0.22);
}

.zakaz-story--low:focus {
  border-color: #f06a5e;
  box-shadow: 0 0 0 3px rgba(240, 106, 94, 0.28);
}

.zakaz-story--mid:focus {
  border-color: var(--color-gold-light);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.28);
}

.zakaz-story--good:focus {
  border-color: #6fcf7a;
  box-shadow: 0 0 0 3px rgba(111, 207, 122, 0.28);
}

.zakaz-story-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-top: 0.65rem;
}

.zakaz-story-status,
.zakaz-story-count {
  margin: 0;
  font-size: 0.88rem;
  font-family: var(--font-sans);
  font-weight: 600;
  transition: color 0.2s ease;
}

.zakaz-story-status--low,
.zakaz-story-count--low {
  color: #f06a5e;
}

.zakaz-story-status--mid,
.zakaz-story-count--mid {
  color: var(--color-gold-light);
}

.zakaz-story-status--good,
.zakaz-story-count--good {
  color: #6fcf7a;
}

.zakaz-story-count {
  margin-left: auto;
  font-variant-numeric: tabular-nums;
}

.zakaz-summary-block {
  margin-bottom: 1.5rem;
}

.zakaz-summary {
  margin: 0;
}

.zakaz-summary__row {
  display: grid;
  gap: 0.2rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--color-border-subtle);
}

.zakaz-summary__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.zakaz-summary__row:first-child {
  padding-top: 0;
}

.zakaz-summary__label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--color-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.zakaz-summary__value {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #fff;
  font-family: var(--font-sans);
}

.zakaz-summary__value--tariff-basic {
  color: #8cb4f0;
  font-weight: 600;
}

.zakaz-summary__value--tariff-premium {
  color: #ff7a6e;
  font-weight: 600;
}

.zakaz-summary__value--tariff-vip {
  color: var(--color-gold-light);
  font-weight: 600;
}

.zakaz-summary__row--story .zakaz-summary__value {
  white-space: pre-wrap;
  word-break: break-word;
}

.zakaz-summary-contacts {
  margin-top: 1rem;
  padding: 1rem 1rem 0.15rem;
  border-top: 1px solid var(--color-green-border);
  background: rgba(12, 18, 14, 0.42);
  border-radius: 10px;
}

.zakaz-summary-contacts__title {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--color-green);
}

.zakaz-summary-contacts .zakaz-summary__label {
  color: var(--color-gold-light);
}

.zakaz-summary-contacts .zakaz-summary__value {
  color: #fff;
  font-weight: 500;
}

.zakaz-intro-contact {
  margin: 0 0 1.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-serif);
  text-align: center;
  color: #fff;
}

.zakaz-optional {
  font-weight: 400;
  color: var(--color-text-dim);
}

.order-form__input.zakaz-input--invalid {
  border-color: var(--color-red-selected);
  background: rgba(48, 14, 10, 0.55);
  box-shadow: 0 0 0 2px rgba(239, 58, 43, 0.22);
}

.order-form__input.zakaz-input--low {
  border-width: 2px;
  border-color: #f06a5e;
  box-shadow: 0 0 0 1px rgba(240, 106, 94, 0.2);
}

.order-form__input.zakaz-input--mid {
  border-width: 2px;
  border-color: var(--color-gold-light);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.22);
}

.order-form__input.zakaz-input--good {
  border-width: 2px;
  border-color: #6fcf7a;
  box-shadow: 0 0 0 1px rgba(111, 207, 122, 0.22);
}

.order-form__input.zakaz-input--low:focus {
  border-color: #f06a5e;
  box-shadow: 0 0 0 3px rgba(240, 106, 94, 0.28);
}

.order-form__input.zakaz-input--mid:focus {
  border-color: var(--color-gold-light);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.28);
}

.order-form__input.zakaz-input--good:focus {
  border-color: #6fcf7a;
  box-shadow: 0 0 0 3px rgba(111, 207, 122, 0.28);
}

.zakaz-phone-hint--invalid {
  color: #f06a5e;
}

.zakaz-success {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.zakaz-success__order {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  color: #fff;
  font-family: var(--font-serif);
}

.zakaz-success__number {
  display: block;
  margin: 0 0 1.25rem;
  font-size: clamp(2.1rem, 9vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-red);
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  text-align: center;
  text-shadow: 0 0 28px rgba(239, 58, 43, 0.35);
}

.zakaz-order-page__head {
  text-align: center;
  margin-bottom: 0.25rem;
}

.zakaz-success__note {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
}

.zakaz-success__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

.zakaz-success__hint {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: center;
  color: var(--color-text-dim);
  font-family: var(--font-sans);
}

@media (min-width: 640px) {
  .zakaz-success__actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.zakaz-order-page__date {
  margin: 0 0 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
}

.zakaz-bookmark {
  max-width: 44rem;
  margin: 0 auto 1.5rem;
  padding: 1.15rem 1.1rem 1.25rem;
  text-align: left;
  background: rgba(72, 22, 16, 0.45);
  border: 1px solid rgba(239, 58, 43, 0.35);
  border-radius: var(--radius);
}

.zakaz-bookmark__title {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-sans);
  text-align: center;
}

.zakaz-bookmark__text {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
}

.zakaz-bookmark__text:last-of-type {
  margin-bottom: 1rem;
}

.zakaz-bookmark__hint {
  margin: 0 0 0.65rem;
  padding-left: 0.85rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  border-left: 2px solid rgba(239, 58, 43, 0.45);
}

.zakaz-bookmark__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.zakaz-bookmark__feedback {
  display: none;
  margin: 0 0 0.5rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: #b8f0c0;
  text-align: center;
  background: rgba(30, 80, 40, 0.35);
  border: 1px solid rgba(111, 207, 122, 0.35);
  border-radius: var(--radius);
}

.zakaz-bookmark__feedback--visible {
  display: block;
}

@media (min-width: 640px) {
  .zakaz-bookmark__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .zakaz-bookmark__actions .btn {
    flex: 1 1 auto;
    min-width: 12rem;
    text-align: center;
  }
}

.zakaz-order-thanks {
  max-width: 44rem;
  margin: 0 auto 1.5rem;
  padding: 1.15rem 1.1rem;
  text-align: center;
  background: rgba(12, 8, 8, 0.42);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.zakaz-order-thanks p {
  margin: 0 0 0.85rem;
}

.zakaz-order-thanks p:last-child {
  margin-bottom: 0;
}

.zakaz-order-thanks__lead {
  font-size: clamp(1.28rem, 4.5vw, 1.55rem);
  line-height: 1.35;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-serif);
}

.zakaz-order-future {
  margin-bottom: 1.5rem;
}

.zakaz-order-future__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.zakaz-order-future__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--color-border-subtle);
  font-family: var(--font-sans);
}

.zakaz-order-future__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.zakaz-order-future__label {
  color: #fff;
  font-size: 0.92rem;
}

.zakaz-order-future__status {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.order-form__submit {
  width: 100%;
}

@media (min-width: 640px) {
  .order-form__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .landing-hero {
    padding-top: 3rem;
  }

  .landing-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 42%);
    column-gap: 2rem;
    row-gap: 1.15rem;
    align-items: center;
  }

  .landing-hero__layout .hero__content {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
  }

  .landing-hero__visual {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-content: flex-end;
    align-self: center;
  }

  .landing-hero__actions {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    max-width: 28rem;
    margin-left: 0;
    margin-right: 0;
    align-self: start;
  }

  .landing-hero__title {
    text-align: left;
  }

  .landing-breadcrumb {
    justify-content: flex-start;
  }

}

/* ——— Заказ персональной песни (воронка) ——— */

.zakaz-page {
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

.zakaz-breadcrumb {
  margin-bottom: 1.25rem;
}

.zakaz-progress {
  max-width: 28rem;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.zakaz-progress__label {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  font-family: var(--font-sans);
  color: var(--color-gold-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.zakaz-progress__bar {
  height: 0.35rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.zakaz-progress__fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  border-radius: inherit;
  transition: width 0.25s ease;
}

.zakaz-page__title {
  margin-bottom: 0.75rem;
}

.zakaz-page__lead {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.zakaz-errors {
  max-width: 40rem;
  margin: 0 auto 1.5rem;
  padding: 0.85rem 1rem;
  background: rgba(120, 30, 30, 0.35);
  border: 1px solid rgba(220, 100, 100, 0.45);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.zakaz-errors__title {
  margin: 0 0 0.35rem;
  color: #f5c6c6;
}

.zakaz-errors__list {
  margin: 0;
  padding-left: 1.15rem;
  color: #f0d4d4;
}

.zakaz-form {
  max-width: 44rem;
}

.zakaz-fieldset {
  margin: 0 0 1.35rem;
  padding: 1.15rem 1rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(12, 8, 8, 0.42);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.zakaz-fieldset--complete {
  border-color: var(--color-green-border);
  box-shadow: 0 0 0 1px var(--color-green-glow);
  background: rgba(12, 18, 14, 0.48);
}

.zakaz-fieldset__legend {
  display: block;
  width: 100%;
  margin: 0 0 0.85rem;
  padding: 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: #fff;
  text-align: center;
}

.zakaz-fieldset__hint {
  margin: 0 0 0.85rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--color-text-dim);
  font-family: var(--font-sans);
}

.zakaz-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.65rem;
}

.zakaz-chips--wide {
  max-width: none;
}

.zakaz-chip {
  cursor: pointer;
}

.zakaz-chip__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.zakaz-chip__text {
  display: inline-block;
  padding: 0.5rem 0.95rem;
  font-size: 0.88rem;
  font-family: var(--font-sans);
  color: var(--color-text-muted);
  background: rgba(16, 10, 10, 0.72);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.zakaz-chip__input:focus-visible + .zakaz-chip__text {
  outline: 2px solid rgba(212, 175, 55, 0.55);
  outline-offset: 2px;
}

.zakaz-chip__input:checked + .zakaz-chip__text {
  color: #fff;
  font-weight: 600;
  background: var(--color-green-bg);
  border-color: var(--color-green-border);
  box-shadow: 0 0 0 2px var(--color-green-glow);
}

.zakaz-chip:hover .zakaz-chip__text {
  border-color: var(--color-gold-dim);
  color: #fff;
}

.zakaz-chip--unavailable .zakaz-chip__text {
  color: rgba(255, 255, 255, 0.58);
  background: rgba(48, 14, 10, 0.55);
  border-color: rgba(240, 106, 94, 0.72);
  box-shadow: none;
}

.zakaz-chip--unavailable:hover .zakaz-chip__text {
  border-color: rgba(240, 106, 94, 0.85);
  color: rgba(255, 255, 255, 0.72);
}

.zakaz-chip--unavailable .zakaz-chip__input:checked + .zakaz-chip__text {
  color: #fff;
  font-weight: 600;
  background: rgba(72, 22, 16, 0.82);
  border-color: #f06a5e;
  box-shadow: 0 0 0 2px rgba(240, 106, 94, 0.32);
}

.zakaz-other {
  display: none;
  margin-top: 0.85rem;
}

.zakaz-other--visible {
  display: flex;
}

.zakaz-other--visible .order-form__input:not(.zakaz-input--good):not(.zakaz-input--low) {
  border-width: 2px;
  border-color: var(--color-gold-light);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.22);
}

.zakaz-tariffs {
  display: grid;
  gap: 0.85rem;
}

.zakaz-tariff {
  cursor: pointer;
}

.zakaz-tariff__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.zakaz-tariff__body {
  position: relative;
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(165deg, rgba(22, 14, 12, 0.92), rgba(10, 7, 7, 0.88));
  border: 1px solid var(--color-border);
  border-radius: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.zakaz-tariff--basic .zakaz-tariff__body {
  border-color: rgba(91, 141, 220, 0.55);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(70, 120, 200, 0.16), transparent 62%),
    linear-gradient(160deg, rgba(10, 16, 28, 0.96), rgba(8, 8, 11, 0.9));
  box-shadow: 0 0 32px rgba(70, 120, 200, 0.1);
}

.zakaz-tariff--premium .zakaz-tariff__body {
  border-color: rgba(239, 58, 43, 0.62);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(239, 58, 43, 0.18), transparent 62%),
    linear-gradient(160deg, rgba(26, 7, 8, 0.96), rgba(8, 8, 11, 0.9));
  box-shadow: 0 0 40px rgba(239, 58, 43, 0.14);
}

.zakaz-tariff--vip .zakaz-tariff__body {
  border-color: rgba(212, 175, 55, 0.62);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.16), transparent 62%),
    linear-gradient(160deg, rgba(24, 18, 8, 0.96), rgba(8, 8, 11, 0.9));
  box-shadow: 0 0 36px rgba(212, 175, 55, 0.12);
}

.zakaz-tariff--basic .zakaz-tariff__name,
.zakaz-tariff--basic .zakaz-tariff__price {
  color: #8cb4f0;
}

.zakaz-tariff--premium .zakaz-tariff__name,
.zakaz-tariff--premium .zakaz-tariff__price {
  color: #ff7a6e;
}

.zakaz-tariff--vip .zakaz-tariff__name,
.zakaz-tariff--vip .zakaz-tariff__price {
  color: var(--color-gold-light);
}

.zakaz-tariff--premium .zakaz-tariff__badge {
  color: #ffb4ab;
  background: rgba(239, 58, 43, 0.14);
  border: 1px solid rgba(239, 58, 43, 0.35);
}

.zakaz-tariff__badge {
  justify-self: start;
  padding: 0.2rem 0.55rem;
  font-size: 0.72rem;
  font-family: var(--font-sans);
  color: #1a1208;
  background: var(--color-gold-light);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.zakaz-tariff__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
}

.zakaz-tariff__name {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}

.zakaz-tariff__price {
  font-size: 1.15rem;
  color: var(--color-gold-light);
}

.zakaz-tariff__desc {
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
}

.zakaz-tariff__details {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.zakaz-tariff__details-inner {
  overflow: hidden;
  min-height: 0;
}

.zakaz-tariff--expanded .zakaz-tariff__details {
  grid-template-rows: 1fr;
}

.zakaz-tariff__details-desc {
  margin: 0.55rem 0 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-sans);
}

.zakaz-tariff__features {
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
}

.zakaz-tariff__features li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.35rem;
  font-size: 0.84rem;
  line-height: 1.4;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
}

.zakaz-tariff__features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

.zakaz-tariff--basic .zakaz-tariff__features li::before {
  color: #6a9de0;
}

.zakaz-tariff--premium .zakaz-tariff__features li::before {
  color: var(--color-red);
}

.zakaz-tariff--vip .zakaz-tariff__features li::before {
  color: var(--color-gold);
}

.zakaz-tariff__input:focus-visible + .zakaz-tariff__body {
  outline: 2px solid rgba(212, 175, 55, 0.55);
  outline-offset: 2px;
}

.zakaz-tariff__input:checked + .zakaz-tariff__body::after {
  content: "";
  position: absolute;
  top: 0.7rem;
  right: 0.75rem;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background-color: var(--color-green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 12.5 9.5 16 18 8' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.zakaz-tariff--basic .zakaz-tariff__input:checked + .zakaz-tariff__body {
  border-color: rgba(91, 141, 220, 0.55);
  box-shadow: 0 0 0 2px rgba(111, 207, 122, 0.42), 0 0 32px rgba(70, 120, 200, 0.14);
}

.zakaz-tariff--premium .zakaz-tariff__input:checked + .zakaz-tariff__body {
  border-color: rgba(239, 58, 43, 0.62);
  box-shadow: 0 0 0 2px rgba(111, 207, 122, 0.42), 0 0 40px rgba(239, 58, 43, 0.16);
}

.zakaz-tariff--vip .zakaz-tariff__input:checked + .zakaz-tariff__body {
  border-color: rgba(212, 175, 55, 0.62);
  box-shadow: 0 0 0 2px rgba(111, 207, 122, 0.42), 0 0 36px rgba(212, 175, 55, 0.14);
}

.zakaz-form__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.zakaz-form__submit,
.zakaz-form__back {
  width: 100%;
  text-align: center;
}

@media (min-width: 640px) {
  .zakaz-form__actions {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .zakaz-form__submit,
  .zakaz-form__back {
    width: auto;
    min-width: 11rem;
  }
}

@media (max-width: 768px) {
  .zakaz-fieldset {
    padding: 1.25rem 0.9rem 1.35rem;
    border-color: var(--color-gold-dim);
  }

  .zakaz-fieldset--complete {
    border-color: var(--color-green-border);
  }

  .zakaz-fieldset__legend {
    font-size: 1.08rem;
  }

  .zakaz-chip__text {
    font-size: 0.94rem;
    padding: 0.58rem 1rem;
    border-color: var(--color-gold-dim);
  }

  .zakaz-tariff__body {
    padding: 1.1rem 1rem;
  }
}
