:root {
  --bg-main: #f5f1ea;
  --bg-card: rgba(255, 255, 255, 0.72);
  --ink: #111111;
  --sand: #d2aa58;
  --pine: #17342f;
  --line: rgba(17, 17, 17, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(210, 170, 88, 0.14), transparent 26%),
    radial-gradient(circle at top right, rgba(23, 52, 47, 0.1), transparent 24%),
    linear-gradient(180deg, #fbf8f2 0%, var(--bg-main) 100%);
}

.hidden {
  display: none;
}

.page-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
}

.liquid-glass {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.18));
  box-shadow: 0 10px 35px rgba(17, 17, 17, 0.16);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.liquid-glass::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.24);
  pointer-events: none;
}

.nav-link,
.mobile-nav-link {
  color: rgba(17, 17, 17, 0.76);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.mobile-nav-link:hover {
  color: #111111;
  transform: translateY(-1px);
}

.nav-link.is-active,
.mobile-nav-link.is-active {
  color: #111111;
}

.nav-link.is-active {
  position: relative;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e6c27c 0%, #d2aa58 100%);
  box-shadow: 0 4px 10px rgba(210, 170, 88, 0.24);
}

.mobile-nav-link.is-active {
  border-radius: 12px;
  padding: 0.45rem 0.65rem;
  background: rgba(210, 170, 88, 0.14);
}

@media (min-width: 1024px) {
  .desktop-nav,
  .desktop-actions {
    display: flex !important;
  }

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

@media (max-width: 1023px) {
  .desktop-nav,
  .desktop-actions {
    display: none !important;
  }

  .mobile-topbar {
    display: flex !important;
  }
}

.glass-chip,
.social-icon-link,
.mobile-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.4);
  color: rgba(17, 17, 17, 0.85);
  font-size: 0.875rem;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.social-icon-link {
  width: 42px;
  min-width: 42px;
  padding: 0 8px;
  border-radius: 12px;
  font-size: 1rem;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.social-icon-text {
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.social-icon-link:hover,
.mobile-icon-link:hover {
  transform: translateY(-1px);
}

.social-icon-link[aria-label*="Telegram"],
.mobile-icon-link[aria-label*="Telegram"] {
  color: #24a1de;
  border-color: rgba(36, 161, 222, 0.22);
  background: rgba(36, 161, 222, 0.1);
  box-shadow: 0 10px 18px rgba(36, 161, 222, 0.14);
}

.social-icon-link[aria-label*="Telegram"]:hover,
.mobile-icon-link[aria-label*="Telegram"]:hover {
  color: #1b8fc9;
  background: rgba(36, 161, 222, 0.16);
  box-shadow: 0 14px 24px rgba(36, 161, 222, 0.2);
}

.social-icon-link[aria-label="VK"],
.social-icon-link[aria-label*="ВКонтакте"],
.mobile-icon-link[aria-label*="ВКонтакте"] {
  color: #0077ff;
  border-color: rgba(0, 119, 255, 0.22);
  background: rgba(0, 119, 255, 0.1);
  box-shadow: 0 10px 18px rgba(0, 119, 255, 0.14);
}

.social-icon-link[aria-label="VK"]:hover,
.social-icon-link[aria-label*="ВКонтакте"]:hover,
.mobile-icon-link[aria-label*="ВКонтакте"]:hover {
  color: #0062d5;
  background: rgba(0, 119, 255, 0.16);
  box-shadow: 0 14px 24px rgba(0, 119, 255, 0.2);
}

.social-icon-link[aria-label="YouTube"],
.mobile-icon-link[aria-label*="YouTube"] {
  color: #ff0033;
  border-color: rgba(255, 0, 51, 0.22);
  background: rgba(255, 0, 51, 0.1);
  box-shadow: 0 10px 18px rgba(255, 0, 51, 0.14);
}

.social-icon-link[aria-label="YouTube"]:hover,
.mobile-icon-link[aria-label*="YouTube"]:hover {
  color: #db002c;
  background: rgba(255, 0, 51, 0.16);
  box-shadow: 0 14px 24px rgba(255, 0, 51, 0.2);
}

.social-icon-link[aria-label="Max"],
.social-icon-link[aria-label*="MAX"],
.mobile-icon-link[aria-label*="Max"] {
  color: #0f172a;
  border-color: rgba(210, 170, 88, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 226, 152, 0.28), rgba(255, 255, 255, 0.44));
  box-shadow: 0 10px 18px rgba(210, 170, 88, 0.16);
}

.social-icon-link[aria-label="Max"]:hover,
.social-icon-link[aria-label*="MAX"]:hover,
.mobile-icon-link[aria-label*="Max"]:hover {
  color: #111111;
  background:
    linear-gradient(135deg, rgba(255, 226, 152, 0.4), rgba(255, 255, 255, 0.52));
  box-shadow: 0 14px 24px rgba(210, 170, 88, 0.24);
}

.mobile-social-row {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.phone-button,
.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.phone-button,
.primary-cta {
  color: #111111;
  background: linear-gradient(135deg, #e6c27c 0%, #d2aa58 100%);
  box-shadow: 0 16px 28px rgba(210, 170, 88, 0.28);
}

.phone-button:hover,
.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 32px rgba(210, 170, 88, 0.32);
}

.secondary-cta {
  color: #111111;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(17, 17, 17, 0.1);
  backdrop-filter: blur(12px);
}

.secondary-cta:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.82);
}

.secondary-cta--dark {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.cta-submit,
.cta-telegram,
.cta-phone-link {
  white-space: nowrap;
}

.mobile-menu-button {
  width: 48px;
  height: 48px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.mobile-icon-link {
  width: 42px;
  min-width: 42px;
  padding: 0 8px;
  border-radius: 12px;
  font-size: 1rem;
}

.mobile-call-link {
  background: linear-gradient(135deg, #e6c27c 0%, #d2aa58 100%);
  color: #111111;
  box-shadow: 0 10px 18px rgba(210, 170, 88, 0.22);
}

.mobile-menu-button span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111111;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-stage {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 22px;
  background: #151515;
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.22);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-grid {
  align-items: center;
}

.hero-stage-desktop {
  display: block;
}

.hero-stage--mobile {
  display: none;
}


.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.05) 0%, rgba(17, 17, 17, 0.16) 100%),
    radial-gradient(circle at top right, rgba(210, 170, 88, 0.12), transparent 34%);
}

.hero-floating-card {
  position: absolute;
  z-index: 2;
  max-width: 320px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(17, 17, 17, 0.32);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 18px;
  padding: 1rem;
}

.hero-floating-card--top {
  top: 22px;
  right: 22px;
  max-width: 300px;
}

.hero-floating-card--bottom {
  left: 22px;
  right: 22px;
  bottom: 22px;
  max-width: none;
}

.hero-offer-form {
  display: grid;
  gap: 0.8rem;
  max-width: 640px;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-offer-form__head {
  display: grid;
  gap: 0.2rem;
}

.hero-offer-form__head strong {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #111111;
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  line-height: 1.24;
}

.hero-offer-form__head strong i {
  color: #b7852a;
  font-size: 0.95rem;
}

.hero-offer-form__head span {
  color: rgba(17, 17, 17, 0.64);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-offer-form__row {
  display: grid;
  grid-template-columns: minmax(260px, 360px) auto auto;
  gap: 0.75rem;
  align-items: center;
}

.hero-offer-form__field {
  display: block;
}

.hero-offer-form__field input {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.95rem 1rem;
  color: #111111;
  font-size: 16px;
  outline: none;
}

.hero-offer-form__field input::placeholder {
  color: rgba(17, 17, 17, 0.4);
}

.hero-offer-form__field input:focus {
  border-color: rgba(210, 170, 88, 0.78);
  box-shadow: 0 0 0 3px rgba(210, 170, 88, 0.16);
}

.hero-offer-form__submit {
  position: relative;
  overflow: hidden;
  min-width: 172px;
}

.hero-offer-form__links {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-offer-form__submit::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -28%;
  width: 78px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 24%, rgba(255, 255, 255, 0.62) 50%, rgba(255, 255, 255, 0.12) 76%, transparent 100%);
  transform: skewX(-18deg);
  animation: heroButtonShine 3.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroButtonShine {
  0%,
  16% {
    transform: translateX(-170%) skewX(-18deg);
    opacity: 0;
  }
  30% {
    opacity: 0.92;
  }
  58% {
    transform: translateX(320%) skewX(-18deg);
    opacity: 0.92;
  }
  72%,
  100% {
    opacity: 0;
  }
}

.metric-card,
.service-card,
.case-card,
.stage-card,
.seo-card,
.seo-panel,
.format-card {
  border: 1px solid var(--line);
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(17, 17, 17, 0.08);
}

.metric-card {
  border-radius: 18px;
  padding: 1rem 1rem 1.05rem;
  min-height: 100%;
}

.metrics-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric-card--interactive {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.metric-card--interactive::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(210, 170, 88, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.metric-card--interactive:hover {
  transform: translateY(-4px);
  border-color: rgba(210, 170, 88, 0.35);
  box-shadow: 0 24px 40px rgba(17, 17, 17, 0.1);
}

.metric-card--interactive:hover::before {
  opacity: 1;
}

.metric-value {
  font-family: "Unbounded", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.22;
}

.metric-value--accent {
  color: var(--sand);
  text-shadow: 0 8px 18px rgba(210, 170, 88, 0.18);
}

.metric-label {
  margin-top: 0.5rem;
  color: rgba(17, 17, 17, 0.66);
  font-size: 0.94rem;
  line-height: 1.42;
}

.returning-cta {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
  padding: 1.4rem 1.5rem;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(210, 170, 88, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(252, 247, 239, 0.96) 100%);
  border: 1px solid rgba(210, 170, 88, 0.18);
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.08);
}

.returning-cta__copy {
  display: grid;
  gap: 0.55rem;
}

.returning-cta__media {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(210, 170, 88, 0.16);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 42px rgba(17, 17, 17, 0.08);
}

.returning-cta__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.returning-cta__media--desktop {
  width: min(100%, 360px);
  justify-self: end;
}

.returning-cta__media--mobile {
  display: none;
}

.returning-cta__offer {
  position: relative;
  overflow: hidden;
  display: inline-grid;
  gap: 0.2rem;
  width: fit-content;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(230, 194, 124, 0.18) 0%, rgba(255, 255, 255, 0.82) 100%);
  border: 1px solid rgba(210, 170, 88, 0.22);
  box-shadow: 0 14px 30px rgba(210, 170, 88, 0.12);
}

.returning-cta__offer::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -32%;
  width: 86px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.14) 20%, rgba(255, 255, 255, 0.68) 50%, rgba(255, 255, 255, 0.14) 80%, transparent 100%);
  transform: skewX(-20deg);
  animation: returningOfferShine 3.8s ease-in-out infinite;
  pointer-events: none;
}

.returning-cta__offer-badge {
  color: #8f6a26;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.returning-cta__offer strong {
  color: #111111;
  font-family: "Unbounded", sans-serif;
  font-size: 0.96rem;
  line-height: 1.22;
}

.returning-cta__title {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.16;
  color: #111111;
}

.returning-cta__accent {
  color: #9a6c18;
  text-shadow: 0 8px 18px rgba(210, 170, 88, 0.16);
}

@keyframes returningOfferShine {
  0%,
  12% {
    transform: translateX(-180%) skewX(-20deg);
    opacity: 0;
  }
  28% {
    opacity: 0.95;
  }
  56% {
    transform: translateX(360%) skewX(-20deg);
    opacity: 0.95;
  }
  72%,
  100% {
    opacity: 0;
  }
}

.returning-cta__text {
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.6;
  max-width: 46rem;
}

.returning-cta__actions {
  display: grid;
  gap: 0.75rem;
  min-width: 260px;
}

.returning-cta__button {
  position: relative;
  overflow: hidden;
}

.returning-cta__button::after {
  content: "";
  position: absolute;
  inset: -35% auto -35% -42%;
  width: 132px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.04) 16%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.18) 76%, transparent 100%);
  transform: skewX(-20deg);
  mix-blend-mode: screen;
  animation: returningOfferShine 3.6s ease-in-out infinite;
  pointer-events: none;
}

.returning-cta__messengers {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.returning-cta__messenger {
  justify-content: center;
  min-height: 48px;
  white-space: nowrap;
  gap: 0.55rem;
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}

.returning-cta__messenger i,
.returning-cta__messenger span {
  flex-shrink: 0;
}

.returning-cta__messenger i {
  width: 16px;
  text-align: center;
  margin-left: 0.05rem;
}

.returning-cta__messenger span {
  display: inline-block;
  padding-right: 0.05rem;
}

@media (min-width: 1024px) {
  .returning-cta {
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.68fr);
    gap: 0;
    align-items: stretch;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    overflow: hidden;
  }

  .returning-cta__copy {
    gap: 0.7rem;
    align-content: start;
    padding: 1.4rem 1.35rem 1.4rem 1.5rem;
  }

  .returning-cta__offer,
  .returning-cta__title,
  .returning-cta__text,
  .returning-cta__actions {
    margin: 0;
  }

  .returning-cta__text {
    max-width: 42rem;
  }

  .returning-cta__actions {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.82fr);
    align-items: stretch;
    max-width: 560px;
    margin-top: 0;
    gap: 0.6rem;
  }

  .returning-cta__messengers {
    display: grid;
    grid-template-columns: max-content max-content;
    justify-content: start;
    gap: 0.55rem;
    align-self: stretch;
  }

  .returning-cta__messenger {
    min-width: 132px;
    justify-content: center;
  }

  .returning-cta__media--desktop {
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    border-radius: 0 26px 26px 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .returning-cta__media--desktop img {
    object-fit: cover;
    object-position: center;
    background: transparent;
  }
}

.section-heading {
  max-width: 720px;
}

.section-kicker {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.46);
}

.section-title {
  margin-top: 0.8rem;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.8rem);
  line-height: 1.08;
}

.section-copy {
  margin-top: 1rem;
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.7;
}

.section-heading--compact {
  max-width: 56rem;
}

.text-highlight {
  color: var(--sand);
}

.hero-price-highlight {
  color: var(--sand);
  text-shadow: 0 10px 22px rgba(210, 170, 88, 0.2);
  white-space: nowrap;
}

.service-card,
.stage-card,
.seo-card,
.format-card {
  border-radius: 18px;
  padding: 1.15rem;
}

.nav-card {
  position: relative;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.nav-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -42% auto;
  width: 138px;
  height: 138px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(210, 170, 88, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.24s ease;
  pointer-events: none;
}

.nav-card:hover {
  transform: translateY(-4px);
  border-color: rgba(210, 170, 88, 0.34);
  box-shadow: 0 24px 42px rgba(17, 17, 17, 0.11);
}

.nav-card:hover::before {
  opacity: 1;
}

.nav-card-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  margin-top: 0.9rem;
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.84rem;
  font-weight: 700;
  transition: color 0.24s ease, transform 0.24s ease;
}

.nav-card-meta i {
  font-size: 0.82rem;
  transition: transform 0.24s ease;
}

.nav-card:hover .nav-card-meta {
  color: #8f6a26;
}

.nav-card:hover .nav-card-meta i {
  transform: translateX(3px);
}

.nav-card--dark:hover {
  border-color: rgba(210, 170, 88, 0.28);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.24);
}

.price-quiz {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.sales-quiz {
  display: grid;
  gap: 1.4rem;
}

.sales-quiz__intro {
  max-width: 860px;
}

.sales-quiz__copy {
  margin-top: 0.85rem;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.sales-quiz__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.sales-quiz__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 700;
}

.sales-quiz__body {
  width: 100%;
}

.price-summary-panel {
  width: 100%;
  max-width: none;
}

.price-summary-panel .price-quiz__summary {
  border-radius: 22px;
  width: 100%;
}

.price-summary-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: stretch;
}

.price-summary-intro {
  display: grid;
  gap: 0.65rem;
  padding: 0.2rem 0 0.15rem;
}

.price-summary-intro__badge {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(210, 170, 88, 0.12);
  color: #8f6a26;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-summary-intro__text {
  margin: 0;
  max-width: 56rem;
  color: rgba(17, 17, 17, 0.68);
  font-size: 0.96rem;
  line-height: 1.58;
}

.price-quiz-standalone {
  max-width: 100%;
}

.price-quiz__form-wrap--dark {
  border-color: rgba(198, 167, 109, 0.16);
  background:
    radial-gradient(circle at top right, rgba(198, 167, 109, 0.08), transparent 20%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.04), transparent 28%),
    linear-gradient(180deg, rgba(32, 34, 37, 0.98) 0%, rgba(18, 20, 23, 0.99) 100%);
  box-shadow: 0 24px 70px rgba(8, 10, 12, 0.34);
  padding: 1.05rem;
}

.price-quiz__form-head--dark h3 {
  color: #ffffff;
}

.price-quiz__form-head--dark p {
  color: rgba(255, 255, 255, 0.74);
}

.price-quiz__summary,
.price-quiz__form-wrap {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  box-shadow: 0 20px 60px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 0.9rem;
}

.price-quiz__hero {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  border-radius: 16px;
  background:
    radial-gradient(circle at top left, rgba(210, 170, 88, 0.16), transparent 28%),
    linear-gradient(135deg, #101010 0%, #1b1b1b 100%);
  padding: 1rem;
}

.price-quiz__badge {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-quiz__value {
  margin-top: 0.75rem;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.05;
  color: #f2d48f;
}

.price-quiz__lead {
  margin-top: 0.6rem;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
  font-size: 0.95rem;
}

.price-quiz__lists {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  margin-top: 0.75rem;
  align-items: stretch;
}

.price-quiz__lists--continued {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.price-quiz__list {
  height: 100%;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(17, 17, 17, 0.06);
  padding: 0.9rem;
}

.price-quiz__list--muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0.42) 100%);
  border-color: rgba(17, 17, 17, 0.05);
}

.price-quiz__list h3 {
  font-size: 0.92rem;
  font-weight: 800;
  color: inherit;
}

.price-quiz__list ul {
  margin-top: 0.52rem;
  display: grid;
  gap: 0.34rem;
  padding-left: 0;
  list-style: none;
  color: rgba(17, 17, 17, 0.7);
  line-height: 1.48;
}

.price-quiz__list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.55rem;
  align-items: start;
  font-size: 0.93rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

.price-quiz__list li i {
  margin-top: 0.12rem;
  width: auto;
  height: auto;
  display: inline-block;
  color: #8f6a26;
  background: transparent;
  font-size: 0.86rem;
  text-align: center;
}

.payment-plan {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 14px;
  background: rgba(23, 52, 47, 0.06);
  padding: 1rem;
}

.payment-plan--summary {
  margin-top: 0;
  align-self: stretch;
  min-height: 100%;
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.payment-plan__title {
  font-size: 1rem;
  font-weight: 800;
}

.payment-plan__copy {
  margin-top: 0.38rem;
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.46;
  font-size: 0.93rem;
}

.payment-plan__steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.payment-plan__steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
  padding: 0.4rem 0.5rem;
}

.price-quiz__form-wrap {
  padding: 1.1rem;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.1);
  max-width: 100%;
}

.price-quiz__form-head {
  margin-bottom: 0.7rem;
}

.price-quiz__form-kicker {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: rgba(210, 170, 88, 0.12);
  color: #8f6a26;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-quiz__form-head h3 {
  margin-top: 0.55rem;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.15;
}

.price-quiz__form-head p {
  margin-top: 0.35rem;
  color: rgba(17, 17, 17, 0.65);
  line-height: 1.5;
  font-size: 0.92rem;
  max-width: 52ch;
}

.price-quiz__progress {
  margin-bottom: 0.85rem;
}

.price-quiz__progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.45rem;
}

.price-quiz__progress-label,
.price-quiz__progress-caption {
  font-size: 0.8rem;
  font-weight: 700;
}

.price-quiz__progress-label {
  color: rgba(255, 255, 255, 0.92);
}

.price-quiz__progress-caption {
  color: rgba(255, 255, 255, 0.58);
}

.price-quiz__progress-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.price-quiz__progress-fill {
  display: block;
  width: 33.33%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #b17a33 0%, #f2d48f 100%);
  transition: width 0.28s ease;
}

.price-quiz__steps {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.price-quiz__steps::-webkit-scrollbar {
  display: none;
}

.price-quiz__step {
  flex: 1 0 0;
  min-height: 44px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  color: rgba(17, 17, 17, 0.48);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  white-space: nowrap;
  padding: 0 0.95rem;
}

.price-quiz__step.is-active {
  border-color: rgba(210, 170, 88, 0.4);
  background: rgba(210, 170, 88, 0.14);
  color: #8f6a26;
}

.price-quiz__form-wrap--dark .price-quiz__step {
  border-color: rgba(198, 167, 109, 0.12);
  background: rgba(15, 17, 20, 0.72);
  color: rgba(255, 255, 255, 0.76);
}

.price-quiz__form-wrap--dark .price-quiz__step.is-active {
  border-color: rgba(242, 212, 143, 0.38);
  background: linear-gradient(180deg, rgba(140, 100, 43, 0.88) 0%, rgba(110, 76, 28, 0.9) 100%);
  color: #fff6de;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.price-quiz__form {
  display: grid;
  gap: 0.9rem;
}

.price-quiz__screen {
  display: none;
  gap: 0.82rem;
  min-height: 430px;
  align-content: start;
}

.price-quiz__screen.is-active {
  display: grid;
}

.price-quiz__screen-copy {
  color: rgba(17, 17, 17, 0.6);
  line-height: 1.3;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-quiz__screen-copy--dark {
  color: #f2d48f;
}

.price-quiz__question {
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.2;
  color: #111111;
}

.price-quiz__screen-hint {
  color: rgba(17, 17, 17, 0.62);
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 60ch;
}

.price-quiz__form-wrap--dark .price-quiz__question {
  color: #ffffff;
}

.price-quiz__form-wrap--dark .price-quiz__screen-hint {
  color: rgba(255, 255, 255, 0.68);
}

.price-quiz__form-grid--top {
  align-items: end;
  grid-template-columns: minmax(180px, 0.85fr) minmax(0, 1.15fr);
}

.price-quiz__inline-block {
  display: grid;
  align-self: stretch;
}

.price-quiz__inline-block--compact {
  justify-items: start;
}

.price-quiz__field-label {
  display: inline-block;
  margin-bottom: 0.36rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.52);
}

.price-quiz__form-wrap--dark .price-quiz__field-label {
  color: rgba(255, 255, 255, 0.68);
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.choice-grid--duo-tight {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 0.36rem;
  width: auto;
}

.choice-grid--compact .choice-card {
  min-width: 0;
  width: auto;
  flex: 0 0 auto;
}

.choice-card {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  inset: 0;
}

.choice-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.72rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(17, 17, 17, 0.82);
  font-weight: 700;
  font-size: 0.88rem;
  transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.price-quiz__form-wrap--dark .choice-card span {
  border-color: rgba(198, 167, 109, 0.12);
  background: rgba(15, 17, 20, 0.74);
  color: rgba(255, 255, 255, 0.94);
}

.choice-card--check {
  width: calc(50% - 0.24rem);
}

.choice-card--check span {
  width: 100%;
  min-height: 88px;
  justify-content: space-between;
  gap: 0.72rem;
  padding: 0.9rem 1rem;
  text-align: left;
}

.choice-card--check strong {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
}

.choice-card--check em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
  color: rgba(17, 17, 17, 0.56);
  font-size: 0.67rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.choice-card input:checked + span {
  border-color: rgba(210, 170, 88, 0.45);
  background: rgba(210, 170, 88, 0.14);
  color: #8f6a26;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.1);
}

.price-quiz__form-wrap--dark .choice-card input:checked + span {
  color: #f6dfaa;
  border-color: rgba(242, 212, 143, 0.32);
  background: rgba(118, 82, 31, 0.62);
}

.choice-card input:checked + span em {
  background: rgba(143, 106, 38, 0.12);
  color: #8f6a26;
}

.price-quiz__form-wrap--dark .choice-card--check em {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
}

.choice-grid--checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.choice-grid--checks .choice-card,
.choice-grid--stacked .choice-card {
  width: 100%;
}

.choice-grid--checks .choice-card span {
  min-height: 58px;
}

.price-quiz__textarea textarea,
.price-quiz__input input {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: #111111;
  outline: none;
  font-size: 16px;
  padding: 0.85rem 0.95rem;
}

.price-quiz__form-wrap--dark .price-quiz__textarea textarea,
.price-quiz__form-wrap--dark .price-quiz__input input {
  border-color: rgba(198, 167, 109, 0.12);
  background: rgba(15, 17, 20, 0.74);
  color: #ffffff;
}

.price-quiz__textarea textarea {
  min-height: 70px;
  resize: vertical;
}

.price-quiz__textarea textarea::placeholder,
.price-quiz__input input::placeholder {
  color: rgba(17, 17, 17, 0.36);
}

.price-quiz__form-wrap--dark .price-quiz__textarea textarea::placeholder,
.price-quiz__form-wrap--dark .price-quiz__input input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.price-quiz__form-grid {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-quiz__estimate {
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(210, 170, 88, 0.14), transparent 34%),
    linear-gradient(135deg, #17191c 0%, #111316 100%);
  border: 1px solid rgba(198, 167, 109, 0.12);
  padding: 0.95rem;
  color: #ffffff;
}

.price-quiz__estimate-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.price-quiz__estimate-kicker {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.price-quiz__estimate-total {
  margin-top: 0.35rem;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.14rem, 1.6vw, 1.6rem);
  line-height: 1.08;
  color: #f2d48f;
}

.price-quiz__estimate-range {
  min-height: 28px;
  padding: 0.36rem 0.58rem;
  border-radius: 999px;
  background: rgba(15, 17, 20, 0.72);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  border: 1px solid rgba(198, 167, 109, 0.12);
}

.price-quiz__estimate-list {
  margin-top: 0.55rem;
  display: grid;
  gap: 0.3rem;
}

.price-quiz__estimate-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.48rem 0.62rem;
  border-radius: 10px;
  background: rgba(15, 17, 20, 0.64);
  border: 1px solid rgba(198, 167, 109, 0.1);
}

.price-quiz__estimate-list span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.32;
  font-size: 0.88rem;
}

.price-quiz__estimate-list strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: #ffffff;
  text-align: right;
}

.price-quiz__estimate-note {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.42;
  font-size: 0.82rem;
}

.price-quiz__offer {
  border-radius: 20px;
  background: rgba(210, 170, 88, 0.08);
  padding: 0.95rem;
}

.price-quiz__offer--dark {
  background: linear-gradient(180deg, rgba(25, 27, 30, 0.94) 0%, rgba(17, 19, 22, 0.96) 100%);
  border: 1px solid rgba(198, 167, 109, 0.12);
}

.price-quiz__offer-badge {
  color: #8f6a26;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-quiz__offer--dark .price-quiz__offer-badge {
  color: #f2d48f;
}

.price-quiz__offer-grid {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.6rem;
}

.price-quiz__offer-card {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.85rem 0.95rem;
}

.price-quiz__offer--dark .price-quiz__offer-card {
  background: rgba(15, 17, 20, 0.64);
  border: 1px solid rgba(198, 167, 109, 0.1);
}

.price-quiz__offer-card strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
}

.price-quiz__offer--dark .price-quiz__offer-card strong {
  color: #ffffff;
}

.price-quiz__offer-card span {
  display: block;
  margin-top: 0.18rem;
  color: rgba(17, 17, 17, 0.62);
  line-height: 1.4;
  font-size: 0.84rem;
}

.price-quiz__offer--dark .price-quiz__offer-card span {
  color: rgba(255, 255, 255, 0.74);
}

.price-quiz__result-layout {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
}

.price-quiz__result-main {
  display: grid;
  gap: 0.7rem;
}

.price-quiz__contact-card {
  display: grid;
  align-content: start;
  gap: 0.72rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(25, 27, 30, 0.95) 0%, rgba(16, 18, 21, 0.98) 100%);
  border: 1px solid rgba(198, 167, 109, 0.12);
  padding: 0.95rem;
}

.price-quiz__contact-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #ffffff;
}

.price-quiz__contact-copy {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
  font-size: 0.84rem;
}

.price-quiz__details-body {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: 1fr;
}

.price-quiz__contact-card .price-quiz__textarea textarea {
  min-height: 56px;
}

.primary-cta--wide {
  width: 100%;
  justify-content: center;
}

.price-quiz__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  padding-top: 0.35rem;
}

.price-quiz__note {
  flex: 1 1 100%;
  color: rgba(17, 17, 17, 0.62);
  line-height: 1.55;
}

.price-quiz__note--dark {
  color: rgba(255, 255, 255, 0.74);
}

.secondary-cta--compact {
  min-height: 44px;
  padding: 0 1rem;
}

.price-card {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  box-shadow: 0 20px 60px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.price-image-wrap {
  aspect-ratio: 1 / 0.68;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.06);
}

.price-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.price-body {
  padding: 1.1rem;
}

.price-arrow,
.format-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(17, 17, 17, 0.05);
  color: rgba(17, 17, 17, 0.45);
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.format-arrow {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

.nav-card:hover .price-arrow,
.nav-card:hover .format-arrow {
  transform: rotate(45deg);
}

.nav-card:hover .price-arrow {
  background: rgba(210, 170, 88, 0.16);
  color: #8f6a26;
}

.nav-card:hover .format-arrow {
  background: rgba(210, 170, 88, 0.18);
  color: #f2d48f;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-top: 0.8rem;
  font-size: 1.04rem;
  font-weight: 800;
}

.price-value {
  margin-top: 0.7rem;
  font-family: "Unbounded", sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #8f6a26;
}

.price-card p {
  margin-top: 0.6rem;
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.66);
}

.stage-card {
  overflow: hidden;
}

.stage-image-wrap {
  margin: -1.15rem -1.15rem 0.9rem;
  aspect-ratio: 1 / 0.52;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.06);
}

.stage-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-card h3,
.stage-card h3,
.seo-card h3,
.format-card h3 {
  margin-top: 0.85rem;
  font-size: 1.02rem;
  font-weight: 800;
}

.service-card p,
.stage-card p,
.seo-card p,
.format-card p {
  margin-top: 0.55rem;
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.66);
}

.format-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.format-card h3 {
  color: white;
}

.format-card p {
  color: rgba(255, 255, 255, 0.72);
}

.nav-card-meta--dark {
  color: rgba(255, 255, 255, 0.66);
}

.nav-card:hover .nav-card-meta--dark {
  color: #f2d48f;
}

.case-card {
  overflow: hidden;
  border-radius: 18px;
}

.case-slider {
  position: relative;
  aspect-ratio: 1 / 0.78;
  background: #111111;
  touch-action: pan-y pinch-zoom;
}

.case-track {
  position: relative;
  width: 100%;
  height: 100%;
  touch-action: pan-y pinch-zoom;
  user-select: none;
  -webkit-user-select: none;
}

.case-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.case-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.case-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  -webkit-user-drag: none;
}

.case-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(210, 170, 88, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(28, 28, 28, 0.98), rgba(12, 12, 12, 0.98));
}

.case-video-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1rem;
  background:
    radial-gradient(circle at center, rgba(210, 170, 88, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.18), rgba(17, 17, 17, 0.52));
  color: rgba(255, 255, 255, 0.94);
  text-align: center;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.case-video-placeholder__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  font-size: 1rem;
}

.case-video-placeholder__text {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.case-slide.is-ready .case-video-placeholder {
  opacity: 0;
  visibility: hidden;
}

.case-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(17, 17, 17, 0.4);
  color: white;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
}

.case-arrow--prev {
  left: 10px;
}

.case-arrow--next {
  right: 10px;
}

.case-dots {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  gap: 6px;
  justify-content: center;
}

.case-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.34);
  transition: transform 0.2s ease, background 0.2s ease;
}

.case-dot.is-active {
  background: #d2aa58;
  transform: scale(1.15);
}

.case-thumbs {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  gap: 6px;
  justify-content: center;
  pointer-events: auto;
}

.case-thumb {
  width: 34px;
  height: 34px;
  overflow: hidden;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(17, 17, 17, 0.28);
  padding: 0;
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.case-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-thumb--video {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
}

.case-thumb.is-active {
  transform: translateY(-1px);
  border-color: rgba(210, 170, 88, 0.85);
}

.case-body {
  padding: 1rem;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.case-meta span,
.stage-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
  padding: 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-body h3 {
  margin-top: 0.75rem;
  font-size: 1.02rem;
  font-weight: 800;
}

.case-body p {
  margin-top: 0.55rem;
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.66);
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.cases-extra {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition:
    max-height 0.5s ease,
    opacity 0.35s ease,
    transform 0.45s ease,
    margin-top 0.45s ease;
}

.cases-extra.is-open {
  opacity: 1;
  transform: translateY(0);
  margin-top: 1rem;
}

.cases-extra.is-open-complete {
  overflow: visible;
  padding-bottom: 0.35rem;
}

.cases-grid--extra {
  padding-top: 0.1rem;
}

.case-section-footer {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.case-section-link {
  min-width: 15rem;
  cursor: pointer;
}

@media (min-width: 900px) {
  .cases-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.gallery-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.25rem 1.2rem;
}

.gallery-lightbox__viewport {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.gallery-lightbox__image {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.gallery-lightbox__nav,
.gallery-lightbox__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(17, 17, 17, 0.42);
  color: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.gallery-lightbox__nav--prev {
  justify-self: start;
}

.gallery-lightbox__nav--next {
  justify-self: end;
}

.gallery-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

.gallery-lightbox__caption {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.gallery-lightbox__counter {
  color: #f2d48f;
  font-size: 0.92rem;
  font-weight: 800;
}

.gallery-lightbox__title {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  text-align: right;
}

.seo-panel {
  border-radius: 18px;
  padding: 1.4rem;
}

.trust-band {
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(210, 170, 88, 0.16), transparent 26%),
    linear-gradient(135deg, #101010 0%, #1b1b1b 100%);
  padding: 1.55rem;
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.22);
  color: rgba(255, 255, 255, 0.86);
}

.trust-copy {
  margin-top: 0.9rem;
  max-width: 58rem;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.trust-band .section-kicker,
.cta-band .section-kicker {
  color: rgba(242, 212, 143, 0.96) !important;
}

.trust-band .section-title,
.cta-band .section-title {
  color: white !important;
}

.trust-grid {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.15rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 0.2rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
}

.trust-grid::-webkit-scrollbar {
  display: none;
}

.trust-grid.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.trust-card {
  flex: 0 0 320px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.92rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  scroll-snap-align: start;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(210, 170, 88, 0.16);
  color: #f2d48f;
  font-size: 1rem;
}

.trust-card h3 {
  margin-top: 0.7rem;
  color: white;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
}

.trust-card p {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.stages-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 1200px) {
  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 800;
  color: #111111;
}

.faq-question i {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(17, 17, 17, 0.05);
  color: rgba(17, 17, 17, 0.58);
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.2rem 0;
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.65;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 1.15rem;
}

.faq-item.is-open .faq-question i {
  transform: rotate(45deg);
  background: rgba(210, 170, 88, 0.16);
  color: #8f6a26;
}

.cta-band {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  justify-content: space-between;
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(210, 170, 88, 0.18), transparent 26%),
    linear-gradient(135deg, #101010 0%, #1a1a1a 100%);
  padding: 2rem;
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.25);
  color: rgba(255, 255, 255, 0.86);
}

.cta-band--compact {
  gap: 1rem;
  padding: 1.5rem;
}

.cta-band--light {
  gap: 1.1rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(210, 170, 88, 0.14), transparent 26%),
    rgba(255, 251, 245, 0.96);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
  color: rgba(17, 17, 17, 0.82);
}

.cta-band__intro {
  display: grid;
  gap: 0.55rem;
}

.cta-band__content {
  display: grid;
  gap: 1.1rem;
  min-width: 0;
  flex: 1 1 auto;
}

.cta-band__eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(210, 170, 88, 0.12);
  color: #8f6a26;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-band__eyebrow--accent {
  gap: 0.35rem;
  padding: 0.24rem 1.05rem;
  background: linear-gradient(135deg, rgba(230, 194, 124, 0.26) 0%, rgba(210, 170, 88, 0.16) 100%);
  border: 1px solid rgba(210, 170, 88, 0.24);
  box-shadow: 0 10px 24px rgba(210, 170, 88, 0.14);
  animation: ctaBadgePulse 2.6s ease-in-out infinite;
}

.cta-band__eyebrow--accent span {
  color: #7a5410;
  font-size: 1.06rem;
  font-weight: 900;
  animation: ctaAmountPulse 1.9s ease-in-out infinite;
}

.cta-band__title-dark {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2.3rem);
  line-height: 1.12;
  color: #111111;
}

.cta-band__title-accent {
  color: #8a5f12;
  white-space: nowrap;
  font-size: 1.14em;
  font-weight: 900;
  animation: ctaAmountPulse 1.9s ease-in-out infinite;
}

.cta-band__copy-dark {
  margin: 0;
  max-width: 58rem;
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.65;
}

.cta-band__timer-wrap {
  display: grid;
  gap: 0.5rem;
}

.cta-band__timer-copy {
  color: rgba(17, 17, 17, 0.54);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-band__timer {
  display: inline-grid;
  grid-template-columns: repeat(4, minmax(88px, 1fr));
  gap: 0.7rem;
  width: fit-content;
  margin-top: 0.25rem;
}

.cta-band__timer-item {
  display: grid;
  gap: 0.15rem;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 248, 236, 0.92) 100%);
  border: 1px solid rgba(210, 170, 88, 0.26);
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.08);
  text-align: center;
}

.cta-band__timer-item strong {
  color: #111111;
  font-family: "Unbounded", sans-serif;
  font-size: 1.36rem;
  line-height: 1;
}

.cta-band__timer-item span {
  color: rgba(17, 17, 17, 0.56);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-gifts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.2rem;
}

.cta-gift-card {
  display: block;
  cursor: pointer;
}

.cta-gift-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cta-gift-card__frame {
  position: relative;
  display: grid;
  gap: 0.75rem;
  height: 100%;
  padding: 0 0 0.8rem;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 248, 236, 0.92) 100%);
  border: 1px solid rgba(210, 170, 88, 0.22);
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.cta-gift-card__shine {
  position: absolute;
  inset: -30% auto -30% -60%;
  width: 48%;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.65) 50%, rgba(255, 255, 255, 0) 70%, transparent 100%);
  transform: translateX(-160%) skewX(-18deg);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.cta-gift-card:hover .cta-gift-card__frame,
.cta-gift-card:focus-within .cta-gift-card__frame {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 42px rgba(17, 17, 17, 0.12);
  border-color: rgba(210, 170, 88, 0.36);
}

.cta-gift-card:hover .cta-gift-card__shine,
.cta-gift-card:focus-within .cta-gift-card__shine,
.cta-gift-card input:checked + .cta-gift-card__frame .cta-gift-card__shine {
  transform: translateX(330%) skewX(-18deg);
}

.cta-gift-card input:checked + .cta-gift-card__frame {
  border-color: rgba(210, 170, 88, 0.42);
  box-shadow: 0 24px 42px rgba(210, 170, 88, 0.16);
}

.cta-gift-card__media {
  display: block;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(250, 242, 228, 0.95) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.cta-gift-card__media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.cta-gift-card:hover .cta-gift-card__media img,
.cta-gift-card:focus-within .cta-gift-card__media img {
  transform: scale(1.04);
}

.cta-gift-card__body {
  display: grid;
  gap: 0.35rem;
  padding: 0 0.8rem;
}

.cta-gift-card__body strong {
  color: #111111;
  font-family: "Unbounded", sans-serif;
  font-size: 0.98rem;
  line-height: 1.2;
}

.cta-gift-card__body small {
  color: rgba(17, 17, 17, 0.64);
  font-size: 0.9rem;
  line-height: 1.45;
}

@keyframes ctaAmountPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
    text-shadow: 0 0 0 rgba(210, 170, 88, 0);
  }
  50% {
    transform: scale(1.08);
    opacity: 0.96;
    text-shadow: 0 0 22px rgba(210, 170, 88, 0.34);
  }
}

@keyframes ctaBadgePulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 10px 24px rgba(210, 170, 88, 0.14);
  }
  50% {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(210, 170, 88, 0.24);
  }
}

.cta-band__markers {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.cta-band__marker {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 17, 17, 0.06);
  min-width: 0;
}

.cta-band__marker strong {
  color: #111111;
  font-family: "Unbounded", sans-serif;
  font-size: 0.96rem;
  line-height: 1.22;
}

.cta-band__marker span {
  color: rgba(17, 17, 17, 0.64);
  line-height: 1.42;
  font-size: 0.92rem;
}

.cta-band__actions {
  display: grid;
  gap: 0.75rem;
}

.cta-band__lead {
  display: flex;
  align-items: stretch;
  gap: 0.8rem;
}

.cta-band__form {
  display: grid;
  gap: 0.7rem;
  width: 100%;
  max-width: 430px;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
}

.cta-band__form-head {
  display: grid;
  gap: 0.2rem;
}

.cta-band__form-head strong {
  color: #111111;
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.cta-band__form-head span {
  color: rgba(17, 17, 17, 0.64);
  line-height: 1.45;
  font-size: 0.92rem;
}

.cta-band__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.cta-band__form .cta-field span {
  color: rgba(17, 17, 17, 0.56);
  letter-spacing: 0.04em;
}

.cta-band__form .cta-field input,
.cta-band__form .cta-field select {
  border-color: rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: #111111;
}

.cta-band__form .cta-field input::placeholder,
.cta-band__form .cta-field select {
  color: rgba(17, 17, 17, 0.4);
}

.cta-band__form .cta-field select {
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  border-width: 1px;
  border-style: solid;
  padding: 0.8rem 2.6rem 0.8rem 0.9rem;
  outline: none;
  font-size: 16px;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(17, 17, 17, 0.65) 50%),
    linear-gradient(135deg, rgba(17, 17, 17, 0.65) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.cta-band__form .cta-field select:focus {
  border-color: rgba(210, 170, 88, 0.65);
}

.cta-band__quick-note {
  color: rgba(17, 17, 17, 0.52);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-band__quick-links {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cta-band__gift-select {
  display: grid;
  gap: 0.55rem;
  padding: 0.85rem 0.9rem;
  border-radius: 16px;
  background: rgba(248, 243, 233, 0.84);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.cta-band__gift-select > span {
  color: rgba(17, 17, 17, 0.56);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-band__gift-select label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #111111;
  font-size: 0.94rem;
  font-weight: 600;
}

.cta-band__gift-select input {
  accent-color: #b7852a;
}

.cta-form-wrap {
  width: 100%;
  max-width: 460px;
}

.cta-form {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.85rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cta-form-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr;
}

.cta-field {
  display: grid;
  gap: 0.4rem;
}

.cta-field span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.cta-field input {
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.8rem 0.9rem;
  color: white;
  outline: none;
  font-size: 16px;
}

.cta-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.8rem 0.9rem;
  color: white;
  outline: none;
  resize: vertical;
  min-height: 96px;
  font-size: 16px;
}

.cta-field input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.cta-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.cta-field input:focus {
  border-color: rgba(210, 170, 88, 0.65);
  background: rgba(255, 255, 255, 0.1);
}

.cta-field textarea:focus {
  border-color: rgba(210, 170, 88, 0.65);
  background: rgba(255, 255, 255, 0.1);
}

.cta-field.is-invalid input,
.cta-field.is-invalid textarea,
.hero-offer-form__field.is-invalid input {
  border-color: rgba(191, 59, 59, 0.86) !important;
  box-shadow: 0 0 0 3px rgba(191, 59, 59, 0.16);
}

.cta-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.form-feedback {
  margin-top: 0.8rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-feedback.hidden {
  display: none;
}

.form-feedback.is-success {
  color: rgba(255, 255, 255, 0.82);
}

.form-feedback.is-error {
  color: #ffd1d1;
}

.contact-modal__form .form-feedback.is-success {
  color: rgba(17, 17, 17, 0.7);
}

.contact-modal__form .form-feedback.is-error {
  color: #9f1f1f;
}

.cta-submit[disabled] {
  opacity: 0.68;
  cursor: wait;
}

.cta-submit {
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease,
    opacity 0.22s ease;
}

.cta-submit.is-loading {
  opacity: 0.88;
}

.cta-submit.is-success {
  background: linear-gradient(135deg, #2f9e62 0%, #227a4d 100%);
  border-color: rgba(255, 255, 255, 0.14);
  color: white;
  box-shadow: 0 18px 32px rgba(34, 122, 77, 0.24);
}

.cta-submit.is-error {
  background: linear-gradient(135deg, #a23b3b 0%, #7f2323 100%);
  border-color: rgba(255, 255, 255, 0.12);
  color: white;
  box-shadow: 0 18px 32px rgba(127, 35, 35, 0.2);
}

.cta-phone-link {
  display: inline-block;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.contact-modal.hidden {
  display: none;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.contact-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 20px;
}

.contact-modal__content {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 40px);
  border-radius: 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(250, 247, 241, 0.96);
  padding: 1.1rem;
  padding-top: 3.4rem;
  box-shadow: 0 30px 60px rgba(17, 17, 17, 0.18);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.contact-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.8);
  color: rgba(17, 17, 17, 0.75);
}

.contact-modal__title {
  margin-top: 0.7rem;
  max-width: 18ch;
  font-family: "Unbounded", sans-serif;
  font-size: 1.45rem;
  line-height: 1.12;
}

.contact-modal__text {
  margin-top: 0.85rem;
  max-width: 44ch;
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.58;
}

.contact-modal__form {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.95rem;
}

.contact-modal__form .cta-field span {
  color: rgba(17, 17, 17, 0.54);
}

.contact-modal__form .cta-field input,
.contact-modal__form .cta-field textarea {
  border-color: rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.88);
  color: #111111;
}

.contact-modal__form .cta-field input::placeholder,
.contact-modal__form .cta-field textarea::placeholder {
  color: rgba(17, 17, 17, 0.38);
}

.contact-modal__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-link-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.75);
  color: rgba(17, 17, 17, 0.82);
  font-weight: 700;
  font-size: 0.94rem;
  white-space: nowrap;
}

.video-widget {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 55;
  width: min(320px, calc(100vw - 32px));
  min-width: 62px;
  min-height: 62px;
  overflow: visible;
}

.video-widget__bubble,
.video-widget__preview-close,
.video-widget__preview-tap,
.video-widget__icon-button,
.video-widget__sound {
  border: none;
  cursor: pointer;
}

.video-widget__bubble {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e6c27c 0%, #d2aa58 100%);
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.18);
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.3s ease,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.3s ease,
    box-shadow 0.25s ease;
  will-change: transform, opacity;
  animation: video-widget-pulse 2.4s ease-in-out infinite;
}

.video-widget__bubble:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(17, 17, 17, 0.22);
}

.video-widget__bubble,
.video-widget__preview,
.video-widget__panel {
  transform-origin: left bottom;
  transition:
    opacity 0.3s ease,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.3s ease,
    box-shadow 0.3s ease;
  will-change: transform, opacity;
}

.video-widget__bubble.hidden {
  display: inline-flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(0.56);
}

.video-widget__bubble-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.92);
  color: #f4e1ad;
  font-size: 1rem;
}

.video-widget__preview {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 110px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(17, 17, 17, 0.22);
  background: #111111;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.video-widget__preview.hidden {
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.72);
}

.video-widget__preview-tap {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
}

.video-widget__preview-video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.video-widget__preview-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.66);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.video-widget__preview-label {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.72);
  color: white;
  font-size: 0.74rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.video-widget__panel {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: min(320px, calc(100vw - 32px));
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.96), rgba(30, 24, 17, 0.94));
  box-shadow: 0 24px 58px rgba(17, 17, 17, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 0.85rem;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.video-widget__panel.hidden {
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scale(0.8);
}

.video-widget[data-state="bubble"] .video-widget__bubble {
  animation-play-state: running;
}

.video-widget[data-state="preview"] .video-widget__bubble,
.video-widget[data-state="panel"] .video-widget__bubble {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .video-widget__bubble,
  .video-widget__preview,
  .video-widget__panel {
    transition: none;
    animation: none;
  }
}

.video-widget__media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #111111;
  aspect-ratio: 9 / 16;
}

.video-widget__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-widget__progress {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  overflow: hidden;
}

.video-widget__progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, #f1d18c 0%, #d2aa58 100%);
  transition: width 0.12s linear;
}

.video-widget__icon-button,
.video-widget__sound {
  position: absolute;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.66);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.video-widget__icon-button {
  top: 12px;
  right: 12px;
}

.video-widget__sound {
  left: 12px;
  bottom: 28px;
}

.video-widget__cta {
  width: 100%;
  min-height: 48px;
  margin-top: 0.8rem;
}

@keyframes video-widget-pulse {
  0% {
    box-shadow: 0 18px 34px rgba(17, 17, 17, 0.18), 0 0 0 0 rgba(210, 170, 88, 0.34);
  }
  70% {
    box-shadow: 0 18px 34px rgba(17, 17, 17, 0.18), 0 0 0 12px rgba(210, 170, 88, 0);
  }
  100% {
    box-shadow: 0 18px 34px rgba(17, 17, 17, 0.18), 0 0 0 0 rgba(210, 170, 88, 0);
  }
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.88);
  padding: 0.85rem 0.95rem;
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner__text {
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(17, 17, 17, 0.72);
}

.cookie-banner__button {
  flex-shrink: 0;
  min-height: 40px;
  border: none;
  border-radius: 12px;
  background: #111111;
  padding: 0 0.95rem;
  color: white;
  font-size: 0.88rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .cta-band {
    flex-direction: row;
    align-items: stretch;
    padding: 2.4rem;
  }

  .cta-band__lead {
    min-width: 360px;
    max-width: 430px;
  }

  .cta-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-banner {
    left: 50%;
    right: auto;
    bottom: 24px;
    margin: 0;
    transform: translateX(-50%);
  }
}

@media (max-width: 1023px) {
  .hero-stage {
    min-height: 520px;
  }
}

@media (min-width: 1024px) {
  .hero-copy {
    min-height: 590px;
    justify-content: center;
  }

  .hero-grid {
    align-items: center;
  }

  .metrics-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .page-noise {
    opacity: 0.1;
  }

  .liquid-glass {
    backdrop-filter: blur(16px) saturate(145%);
    -webkit-backdrop-filter: blur(16px) saturate(145%);
  }

  .mobile-top-secondary {
    display: none;
  }

  .phone-button,
  .primary-cta,
  .secondary-cta {
    width: 100%;
    min-height: 48px;
    padding: 0.85rem 1rem;
  }

  .section-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .section-title {
    margin-top: 0.65rem;
    font-size: 1.48rem;
    line-height: 1.14;
  }

  .section-copy {
    margin-top: 0.8rem;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .hero-stage {
    min-height: 420px;
    border-radius: 18px;
  }

  .hero-grid {
    gap: 1.15rem;
  }

  .hero-stage--mobile {
    display: block;
  }

  .hero-stage-desktop {
    display: none;
  }

  .hero-floating-card--top {
    top: 12px;
    right: 12px;
    left: 12px;
    max-width: none;
  }

  .hero-floating-card--bottom {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .hero-floating-card {
    padding: 0.8rem;
    border-radius: 14px;
  }

  .hero-floating-card .text-xl {
    font-size: 1rem;
    line-height: 1.3;
  }

  .hero-offer-form {
    padding: 0.9rem;
    border-radius: 20px;
  }

  .hero-offer-form__head strong {
    font-size: 0.92rem;
  }

  .hero-offer-form__head strong i {
    font-size: 0.88rem;
  }

  .hero-offer-form__head span {
    font-size: 0.84rem;
    line-height: 1.4;
  }

  .hero-offer-form__row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem;
    align-items: center;
  }

  .hero-offer-form__field {
    grid-column: 1 / -1;
  }

  .hero-offer-form__submit {
    width: auto;
    min-width: 132px;
    min-height: 46px;
    padding: 0.78rem 0.95rem;
  }

  .hero-offer-form__links {
    justify-content: flex-end;
    gap: 0.4rem;
  }

  .metric-card,
  .service-card,
  .stage-card,
  .seo-card,
  .seo-panel,
  .format-card,
  .case-card,
  .price-card {
    border-radius: 16px;
  }

  .price-quiz {
    grid-template-columns: 1fr;
  }

  .sales-quiz {
    gap: 1.1rem;
  }

  .price-quiz__form-wrap {
    padding: 0.92rem;
  }

  .price-quiz__summary,
  .price-quiz__form-wrap {
    border-radius: 18px;
    padding: 1rem;
  }

  .price-summary-grid,
  .price-quiz__lists {
    grid-template-columns: 1fr;
  }

  .price-summary-intro__text {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .price-quiz__hero {
    border-radius: 16px;
    padding: 1rem;
  }

  .price-quiz__form-head h3 {
    font-size: 1.02rem;
  }

  .price-quiz__form-head p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .price-quiz__lead,
  .price-quiz__list ul,
  .payment-plan__copy,
  .price-quiz__note {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .price-quiz__list {
    border-radius: 16px;
    padding: 0.9rem;
  }

  .payment-plan {
    border-radius: 16px;
    padding: 0.9rem;
  }

  .payment-plan__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-plan__steps span {
    min-height: 42px;
    font-size: 0.84rem;
  }

  .choice-grid {
    gap: 0.55rem;
  }

  .choice-card {
    width: calc(50% - 0.275rem);
  }

  .choice-grid--duo-tight {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .choice-grid--compact .choice-card {
    width: 100%;
  }

  .choice-card--check {
    width: 100%;
  }

  .choice-grid--checks {
    grid-template-columns: 1fr;
  }

  .choice-card span {
    width: 100%;
    min-height: 44px;
    padding: 0.7rem 0.85rem;
    text-align: center;
    font-size: 0.92rem;
  }

  .choice-card--check span {
    min-height: 48px;
    justify-content: space-between;
    text-align: left;
  }

  .price-quiz__form-grid {
    grid-template-columns: 1fr;
  }

  .price-quiz__form-grid--top {
    grid-template-columns: 1fr;
  }

  .price-quiz__screen {
    min-height: auto;
  }

  .price-quiz__result-layout,
  .price-quiz__details-body {
    grid-template-columns: 1fr;
  }

  .price-quiz__estimate {
    border-radius: 16px;
    padding: 0.9rem;
  }

  .price-quiz__estimate-head,
  .price-quiz__estimate-list div {
    grid-template-columns: 1fr;
  }

  .price-quiz__estimate-head {
    display: grid;
  }

  .price-quiz__estimate-range {
    justify-self: start;
  }

  .metric-card {
    padding: 0.85rem;
  }

  .metric-value {
    font-size: 0.98rem;
    line-height: 1.28;
  }

  .metric-label,
  .stage-card p,
  .seo-card p,
  .format-card p,
  .case-body p,
  .price-card p {
    font-size: 0.82rem;
    line-height: 1.34;
  }

  .stage-card h3,
  .seo-card h3,
  .format-card h3,
  .case-body h3,
  .price-card h3 {
    font-size: 0.98rem;
  }

  .price-value {
    font-size: 1.08rem;
  }

  .case-arrow,
  .price-arrow,
  .format-arrow {
    width: 30px;
    height: 30px;
  }

  .nav-card-meta {
    font-size: 0.8rem;
  }

  .stage-image-wrap {
    margin: -1.15rem -1.15rem 0.8rem;
    aspect-ratio: 1 / 0.6;
  }

  .case-slider {
    aspect-ratio: 1 / 0.9;
  }

  .case-thumbs {
    left: 8px;
    right: 8px;
    bottom: 24px;
    gap: 5px;
  }

  .case-thumb {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .gallery-lightbox__dialog {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    padding: 1rem 0.8rem 1rem;
  }

  .gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
  }

  .gallery-lightbox__nav--prev {
    left: 10px;
  }

  .gallery-lightbox__nav--next {
    right: 10px;
  }

  .gallery-lightbox__image {
    max-height: calc(100vh - 150px);
    border-radius: 16px;
  }

  .gallery-lightbox__caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .gallery-lightbox__title {
    text-align: left;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .returning-cta {
    grid-template-columns: 1fr;
    padding: 1.15rem;
    border-radius: 20px;
  }

  .returning-cta__media--desktop {
    display: none;
  }

  .returning-cta__media--mobile {
    display: block;
    margin-top: 0.1rem;
  }

  .returning-cta__media {
    border-radius: 18px;
  }

  .returning-cta__title {
    font-size: 1.24rem;
    line-height: 1.2;
  }

  .returning-cta__text {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .returning-cta__actions {
    min-width: 0;
  }

  .cta-band {
    border-radius: 20px;
    padding: 1.25rem;
  }

  .cta-band__title-dark {
    font-size: 1.32rem;
    line-height: 1.22;
  }

  .cta-band__copy-dark {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .cta-gifts {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .cta-gift-card__frame {
    border-radius: 18px;
    padding: 0 0 0.7rem;
  }

  .cta-gift-card__media img {
    max-height: 210px;
  }

  .cta-gift-card__body strong {
    font-size: 0.88rem;
  }

  .cta-gift-card__body small {
    font-size: 0.8rem;
    line-height: 1.38;
  }

  .cta-band__markers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band__timer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .cta-band__marker {
    border-radius: 16px;
    padding: 0.9rem;
  }

  .cta-band__marker strong {
    font-size: 0.82rem;
    line-height: 1.18;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .cta-band__marker span {
    font-size: 0.8rem;
    line-height: 1.34;
  }

  .cta-band__lead {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-band__form {
    max-width: none;
    padding: 0.9rem;
  }

  .cta-band__form-grid {
    grid-template-columns: 1fr;
  }

  .cta-band__gift-select {
    padding: 0.8rem;
  }

  .cta-band__gift-select label {
    font-size: 0.88rem;
  }

  .cta-band__quick-note {
    text-align: center;
  }

  .cta-band__quick-links {
    justify-content: center;
    gap: 0.45rem;
  }

  .cta-band__timer-item {
    padding: 0.72rem 0.7rem;
    border-radius: 16px;
  }

  .cta-band__timer-item strong {
    font-size: 1.02rem;
  }

  .cta-band__timer-item span {
    font-size: 0.68rem;
  }

  .trust-band {
    border-radius: 20px;
    padding: 1.25rem;
  }

  .trust-band .section-title {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .trust-copy {
    margin-top: 0.8rem;
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .trust-grid {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 0.1rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
  }

  .trust-card {
    flex: 0 0 84%;
    border-radius: 16px;
    padding: 0.88rem;
    scroll-snap-align: start;
  }

  .trust-card h3 {
    font-size: 0.86rem;
    line-height: 1.24;
  }

  .trust-card p {
    font-size: 0.76rem;
    line-height: 1.36;
  }

  .trust-grid::-webkit-scrollbar {
    display: none;
  }

  .trust-grid::-webkit-scrollbar {
    display: none;
  }

  .stages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .stage-card {
    padding: 1rem;
  }

  .stage-card h3 {
    font-size: 0.9rem;
    line-height: 1.28;
  }

  .stage-card p {
    font-size: 0.78rem;
    line-height: 1.36;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-question {
    padding: 1rem;
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .faq-question i {
    width: 28px;
    height: 28px;
  }

  .faq-answer p {
    padding: 0 1rem 0;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .faq-item.is-open .faq-answer p {
    padding-bottom: 1rem;
  }

  .cta-form {
    border-radius: 16px;
    padding: 0.85rem;
  }

  .cta-field input {
    min-height: 46px;
  }

  .cta-phone-link {
    white-space: normal;
    line-height: 1.5;
  }

  .cookie-banner {
    left: auto;
    right: 12px;
    bottom: 14px;
    gap: 0.55rem;
    align-items: flex-start;
    flex-direction: column;
    width: min(220px, calc(100vw - 84px));
    max-width: none;
    margin: 0;
    padding: 0.7rem 0.75rem;
    border-radius: 14px;
  }

  .video-widget {
    left: 16px;
    bottom: 16px;
  }

  .video-widget__preview {
    width: 96px;
    border-radius: 18px;
  }

  .video-widget__preview-label {
    left: 8px;
    right: 8px;
    bottom: 8px;
    font-size: 0.68rem;
  }

  .video-widget__panel {
    width: min(300px, calc(100vw - 32px));
    padding: 0.75rem;
    border-radius: 20px;
  }

  .video-widget__bubble {
    width: 58px;
    height: 58px;
  }

  .cookie-banner__button {
    width: 100%;
    min-height: 36px;
    font-size: 0.82rem;
  }

  .cookie-banner__text {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .contact-modal__dialog {
    padding: 12px;
    min-height: 100dvh;
    align-items: end;
  }

  .contact-modal__content {
    border-radius: 20px;
    padding: 1rem;
    padding-top: 3.2rem;
    max-height: calc(100dvh - 24px);
  }

  .contact-modal__title {
    max-width: none;
    font-size: 1.35rem;
  }

  .contact-modal__links {
    gap: 0.6rem;
  }

  .contact-link-chip {
    min-height: 42px;
    padding: 0 0.8rem;
    font-size: 0.9rem;
  }

footer .mx-auto {
    gap: 1rem;
  }
}

.price-hero,
.price-directory {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(210, 170, 88, 0.18), transparent 32%),
    linear-gradient(180deg, #161616 0%, #101010 100%);
  color: white;
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.2);
}

.price-hero {
  padding: clamp(1.5rem, 3vw, 2.8rem);
}

.price-hero .section-kicker,
.calculator-shell .section-kicker,
.price-directory .section-kicker {
  color: rgba(242, 212, 143, 0.96) !important;
}

.price-hero .section-title,
.calculator-shell .section-title,
.price-directory .section-title {
  color: white !important;
}

.budget-stats,
.budget-lists,
.price-popular {
  display: grid;
  gap: 1rem;
}

.budget-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.budget-stat,
.budget-list-card,
.calculator-shell,
.price-summary-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.budget-stat {
  border-radius: 22px;
  padding: 1rem 1.1rem;
}

.budget-stat__label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.budget-stat strong {
  font-size: 1rem;
  line-height: 1.5;
}

.budget-lists {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.budget-list-card {
  border-radius: 24px;
  padding: 1.25rem;
}

.budget-list-card--muted {
  background: rgba(255, 255, 255, 0.035);
}

.budget-list-card h2 {
  margin: 0 0 1rem;
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
}

.budget-list-card ul {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.budget-list-card li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

.budget-list-card li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e6c27c 0%, #d2aa58 100%);
}

.calculator-shell {
  padding: clamp(1.4rem, 2.8vw, 2rem);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(210, 170, 88, 0.2), transparent 28%),
    linear-gradient(180deg, #181818 0%, #101010 100%);
  color: white;
}

.price-hero,
.calculator-shell,
.price-directory {
  color: rgba(255, 255, 255, 0.86);
}

.calculator-shell--lead {
  background:
    radial-gradient(circle at top left, rgba(210, 170, 88, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(180deg, #171717 0%, #0f0f0f 100%);
}

.calculator-shell__price-old {
  margin-left: 0.2rem;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.calculator-shell__price-now {
  display: inline-block;
  margin-left: 0.35rem;
  color: #f2d48f;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 212, 143, 0.36);
}

.calculator-shell__price-now:hover {
  border-bottom-color: rgba(242, 212, 143, 0.82);
}

.calc-card {
  margin-top: 1.4rem;
  border-radius: 24px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}

.calc-field,
.price-search {
  display: grid;
  gap: 0.55rem;
}

.calc-field span,
.calc-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.74);
}

.calc-field input[type="number"],
.calc-field input[type="range"],
.price-search input {
  width: 100%;
}

.calc-field input[type="number"],
.price-search input {
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 0 1rem;
  font-size: 16px;
}

.calc-field input[type="number"]:focus,
.price-search input:focus {
  outline: none;
  border-color: rgba(210, 170, 88, 0.82);
  box-shadow: 0 0 0 3px rgba(210, 170, 88, 0.18);
}

.calc-field input[type="number"]::selection,
.price-search input::selection {
  background: rgba(210, 170, 88, 0.32);
  color: #111111;
}

.calc-field input[type="range"] {
  accent-color: #d2aa58;
}

.calc-field__inline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.calc-field__inline span {
  color: rgba(255, 255, 255, 0.56);
}

.calc-choice-group {
  margin-top: 1.35rem;
}

.calc-choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.95rem;
}

.calc-choice {
  min-height: 50px;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.calc-choice.is-active {
  color: #111111;
  border-color: rgba(210, 170, 88, 0.72);
  background: linear-gradient(135deg, #e6c27c 0%, #d2aa58 100%);
}

.calc-extra-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.calc-extra {
  display: flex;
  align-items: flex-start;
  min-width: 0;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.calc-extra[hidden] {
  display: none !important;
}

.calc-extra--gift {
  position: relative;
  overflow: hidden;
  border-color: rgba(210, 170, 88, 0.28);
  background:
    radial-gradient(circle at top right, rgba(242, 212, 143, 0.14), transparent 40%),
    linear-gradient(135deg, rgba(210, 170, 88, 0.16) 0%, rgba(255, 255, 255, 0.07) 100%);
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.08);
}

.calc-extra--gift::before {
  content: "Подарок";
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f4d08e 0%, #d2aa58 100%);
  color: #5f4310;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calc-extra--gift::after {
  content: "";
  position: absolute;
  inset: -35% auto -35% -58%;
  width: 40%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0) 75%, transparent 100%);
  transform: translateX(-180%) skewX(-18deg);
  transition: transform 0.85s ease;
  pointer-events: none;
}

.calc-extra--gift:hover::after {
  transform: translateX(360%) skewX(-18deg);
}

.calc-extra--gift.is-selected {
  border-color: rgba(242, 212, 143, 0.38);
  box-shadow: 0 16px 32px rgba(210, 170, 88, 0.16);
}

.calc-extra--gift.is-selected span {
  color: #f8e2b1;
}

.calc-extra--gift.is-selected::before {
  background: linear-gradient(135deg, #ffe7a6 0%, #d2aa58 100%);
  box-shadow: 0 10px 22px rgba(210, 170, 88, 0.26);
}

.calc-extra--gift span {
  padding-top: 1rem;
  padding-right: 5.25rem;
  overflow-wrap: normal;
  word-break: normal;
}

.calc-extra input {
  margin-top: 0.18rem;
}

.calc-extra--gift input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.calc-extra span {
  display: grid;
  min-width: 0;
  gap: 0.15rem;
  color: white;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.calc-extra small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.calc-extra--gift small {
  color: rgba(255, 255, 255, 0.74);
  max-width: none;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.calc-extra small a,
.calc-result__details a {
  color: #f2d48f;
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 212, 143, 0.28);
}

.calc-extra small a:hover,
.calc-result__details a:hover {
  border-bottom-color: rgba(242, 212, 143, 0.78);
}

.calc-result {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

.calc-result__summary,
.calc-result__aside {
  border-radius: 22px;
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.calc-result__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.56);
}

.calc-result__summary strong {
  display: block;
  margin-top: 0.45rem;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  line-height: 1.2;
  color: #f4d08e;
}

.calc-result__discount {
  display: grid;
  gap: 0.3rem;
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.45;
}

.calc-result__discount span {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.calc-result__discount span:first-child b {
  color: rgba(255, 255, 255, 0.42);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.calc-result__offer {
  margin-top: 0.8rem;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  background: rgba(210, 170, 88, 0.12);
  border: 1px solid rgba(210, 170, 88, 0.22);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  line-height: 1.45;
}

.calc-result__details {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

.calc-result__aside {
  display: grid;
  gap: 1rem;
  align-content: space-between;
}

.calc-result__aside-copy {
  display: grid;
  gap: 0.5rem;
}

.calc-result__aside-title {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  line-height: 1.35;
  color: white;
}

.calc-result__aside p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.calc-result__aside .calc-result__aside-title {
  color: #ffffff;
}

.calc-lead-form {
  display: grid;
  gap: 0.85rem;
}

.calc-lead-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.calc-lead-form .cta-field span {
  letter-spacing: 0.04em;
}

.calc-lead-form .cta-field input {
  min-height: 52px;
  border-radius: 14px;
}

.calc-lead-form__submit {
  width: 100%;
}

.price-summary-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 1.5rem;
  border-radius: 26px;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.08);
}

.price-summary-card__text {
  display: grid;
  gap: 0.9rem;
  color: rgba(17, 17, 17, 0.66);
  line-height: 1.7;
}

.price-directory {
  padding: clamp(1.4rem, 2.8vw, 2rem);
}

.price-directory__header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem 1.5rem;
  align-items: end;
}

.price-directory__tools {
  display: grid;
  gap: 0.8rem;
}

.price-search {
  position: relative;
}

.price-search i {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
}

.price-search input {
  padding-left: 2.8rem;
}

.price-directory__hint {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.price-popular {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.price-popular__item {
  border-radius: 18px;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.price-popular__item span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.5;
}

.price-popular__item strong {
  display: block;
  margin-top: 0.55rem;
  color: white;
  font-size: 1.05rem;
}

.price-directory__groups {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.price-group,
.price-subgroup {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.price-group summary,
.price-subgroup summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
}

.price-group summary::-webkit-details-marker,
.price-subgroup summary::-webkit-details-marker {
  display: none;
}

.price-group summary {
  padding: 1.1rem 1.2rem;
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
}

.price-subgroup {
  overflow: hidden;
}

.price-subgroup summary {
  padding: 0.95rem 1rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.price-subgroup summary small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
}

.price-group__body {
  display: grid;
  gap: 0.85rem;
  padding: 0 1rem 1rem;
}

.price-table-wrap {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 0.9rem 0.95rem;
  text-align: left;
}

.price-table thead th {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
}

.price-table tbody td {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.price-table tbody td:last-child {
  white-space: nowrap;
  font-weight: 800;
  color: #f4d08e;
}

.price-directory__empty {
  border-radius: 20px;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.price-faq-list {
  margin-top: 0;
}

@media (max-width: 1023px) {
  .budget-stats,
  .budget-lists,
  .price-summary-card,
  .price-directory__header,
  .price-popular,
  .calc-grid,
  .calc-result {
    grid-template-columns: 1fr;
  }

  .calc-extra-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calc-lead-form__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .price-hero,
  .calculator-shell,
  .price-directory {
    border-radius: 24px;
  }

  .budget-stats {
    grid-template-columns: 1fr;
  }

  .price-table th,
  .price-table td {
    min-width: 120px;
  }

  .price-table th:first-child,
  .price-table td:first-child {
    min-width: 280px;
  }

  .calc-extra-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-auto-columns: minmax(220px, 78vw);
    gap: 0.7rem;
    overflow-x: auto;
    overflow-y: hidden;
    margin-top: 0.75rem;
    padding: 0 0 0.25rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .calc-extra-grid::-webkit-scrollbar {
    display: none;
  }

  .calc-extra {
    gap: 0.6rem;
    padding: 0.8rem 0.8rem 0.85rem;
    min-height: 100%;
    scroll-snap-align: start;
  }

  .calc-extra--gift {
    padding-top: 1.05rem;
  }

  .calc-extra--gift::before {
    top: 8px;
    right: 8px;
    min-height: 22px;
    padding: 0 0.55rem;
    font-size: 0.6rem;
  }

  .calc-extra--gift span {
    padding-top: 0.9rem;
    padding-right: 4.35rem;
  }

  .calc-extra span {
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .calc-extra small {
    font-size: 0.7rem;
    line-height: 1.24;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }
}

.about-hero {
  background:
    radial-gradient(circle at top right, rgba(210, 170, 88, 0.16), transparent 28%),
    linear-gradient(145deg, #171717 0%, #1f1a16 55%, #241e18 100%);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.1rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.about-stat-card__title {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.about-stat-card strong {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  color: #f1cd87;
}

.about-stat-card span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.about-panel {
  padding: 1.75rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 22px 60px rgba(17, 17, 17, 0.08);
}

.about-panel--warm {
  background:
    radial-gradient(circle at top right, rgba(210, 170, 88, 0.14), transparent 30%),
    rgba(255, 250, 243, 0.88);
}

.about-copy {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.75;
}

.about-checklist {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.about-checklist li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.85rem;
  color: rgba(17, 17, 17, 0.74);
  line-height: 1.65;
}

.about-checklist i {
  margin-top: 0.2rem;
  color: #d2aa58;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-principle-card {
  padding: 1.35rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 20px 50px rgba(17, 17, 17, 0.07);
}

.about-principle-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(210, 170, 88, 0.16);
  color: #8c6422;
  font-size: 1rem;
}

.about-principle-card h3 {
  margin-top: 1rem;
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}

.about-principle-card p {
  margin-top: 0.85rem;
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.68;
}

.about-team-band {
  display: grid;
  gap: 1.5rem;
}

.about-team-list {
  display: grid;
  gap: 1rem;
}

.about-team-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-team-card__media {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 0.82;
  background: rgba(255, 255, 255, 0.06);
}

.about-team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-team-card__content {
  min-width: 0;
}

.about-team-card__eyebrow {
  display: inline-block;
  color: #f1cd87;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-team-card h3 {
  margin-top: 0.7rem;
  font-family: "Unbounded", sans-serif;
  font-size: 1.05rem;
  color: white;
}

.about-team-card p {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.about-team-card__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.about-team-card__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
  white-space: nowrap;
}

.about-team-card__contact:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.contacts-hero {
  background:
    radial-gradient(circle at top left, rgba(210, 170, 88, 0.14), transparent 26%),
    linear-gradient(145deg, #171717 0%, #1f1a16 55%, #241e18 100%);
}

.contacts-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contacts-hero__chips a.glass-chip {
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.contacts-hero__chips a.glass-chip:hover {
  transform: translateY(-1px);
  background: rgba(210, 170, 88, 0.18);
  border-color: rgba(210, 170, 88, 0.35);
  color: #111111;
  box-shadow: 0 12px 24px rgba(210, 170, 88, 0.18);
}

.contacts-primary-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.contacts-primary-item {
  display: grid;
  gap: 0.3rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.contacts-primary-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contacts-primary-item__label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.45);
}

.contacts-primary-item a,
.contacts-primary-item span:last-child {
  color: rgba(17, 17, 17, 0.8);
  line-height: 1.65;
}

.contacts-ways {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.contacts-way-card {
  padding: 1.35rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 20px 50px rgba(17, 17, 17, 0.07);
}

.contacts-way-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(210, 170, 88, 0.16);
  color: #8c6422;
  font-size: 1rem;
}

.contacts-way-card h3 {
  margin-top: 1rem;
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}

.contacts-way-card p {
  margin-top: 0.8rem;
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.68;
}

.contacts-way-card a {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 800;
  color: #8c6422;
}

@media (max-width: 1023px) {
  .about-stats,
  .about-principles,
  .contacts-ways {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-team-card {
    grid-template-columns: 180px minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .about-stats,
  .about-principles,
  .contacts-ways {
    grid-template-columns: 1fr;
  }

  .about-panel,
  .about-principle-card,
  .about-team-card {
    border-radius: 22px;
  }

  .about-team-card {
    grid-template-columns: 1fr;
  }

  .about-team-card__media {
    max-width: 220px;
  }
}
