:root {
  --bg: #080808;
  --bg-elevated: #121212;
  --bg-soft: #171717;
  --bg-panel: #0d0d0d;
  --bg-light: #eceae6;
  --bg-cream: #f3efe8;
  --text: #f5f2ec;
  --text-muted: rgba(245, 242, 236, 0.7);
  --text-dark: #14120f;
  --text-dark-muted: #5a564f;
  --gold: #d4af37;
  --gold-soft: #e2c468;
  --gold-deep: #a88b2e;
  --red: #a30b0b;
  --red-hover: #c21414;
  --line: rgba(212, 175, 55, 0.28);
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.42);
  --radius: 2px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4.5rem;
  --space-6: 6.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1280px;
  --container-wide: 1580px;
  --header: 76px;
  --font-sans: "Manrope", system-ui, sans-serif;
  --font-display: "Tenor Sans", "Manrope", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 12px);
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.45) #121212;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #0c0c0c;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.55), rgba(168, 139, 46, 0.7));
  border: 2px solid #0c0c0c;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(226, 196, 104, 0.75), rgba(212, 175, 55, 0.85));
}

::-webkit-scrollbar-corner {
  background: #0c0c0c;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.spotlight {
  display: none;
}

main,
.header,
.footer,
.ticker,
.cta-band {
  position: relative;
  z-index: 1;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.container--wide {
  width: min(100% - 2rem, var(--container-wide));
}

.narrow {
  max-width: 720px;
  text-align: center;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  background: rgba(8, 8, 8, 0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.header.is-scrolled {
  background: rgba(8, 8, 8, 0.92);
  border-bottom-color: rgba(212, 175, 55, 0.28);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: min(100% - 2rem, var(--container-wide));
  margin-inline: auto;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1;
}

.logo {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.55rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav {
  display: none;
  gap: 1.4rem;
  margin-left: auto;
}

.nav a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--gold);
}

.header__cta {
  margin-left: 0.5rem;
}

a.header__cta {
  display: none;
}

.burger {
  margin-left: auto;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
}

.mobile-nav {
  position: fixed;
  inset: var(--header) 0 auto 0;
  z-index: 40;
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.25rem 1.25rem;
  background: rgba(10, 10, 10, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 0.85rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-nav .btn {
  margin-top: 0.6rem;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 50px;
  padding: 0.8rem 1.45rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn--sm {
  min-height: 40px;
  padding: 0.55rem 1rem;
  font-size: 0.7rem;
}

.btn--red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 28px rgba(163, 11, 11, 0.28);
}

.btn--red:hover {
  background: var(--red-hover);
  box-shadow: 0 14px 32px rgba(163, 11, 11, 0.38);
}

.btn--ghost {
  border-color: var(--gold);
  color: var(--text);
  background: transparent;
}

.btn--ghost:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-soft);
}

.btn--gold,
.btn--gold-solid {
  background: var(--gold);
  color: #111;
}

.btn--gold:hover,
.btn--gold-solid:hover {
  background: var(--gold-soft);
}

.btn--block {
  width: 100%;
}

.hero {
  position: relative;
  padding: 4.2rem 0 3rem;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  inset: auto -8% 5% auto;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(163, 11, 11, 0.2), transparent 70%);
  pointer-events: none;
}

.hero__rule {
  width: 72px;
  height: 1px;
  margin: 1.15rem 0 0;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero__grid {
  display: grid;
  gap: 2.8rem;
  align-items: center;
}

.eyebrow,
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.15);
}

.hero__title,
.section__title,
.footer__brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(2.8rem, 7.2vw, 5.1rem);
}

.hero__lead,
.section__text,
.entry__text {
  margin: 1.1rem 0 0;
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem 1rem;
  margin-top: 2.4rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stats li {
  display: grid;
  gap: 0.2rem;
}

.stats strong {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stats span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-shot {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  background: transparent;
  isolation: isolate;
}

.hero-shot__media {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 14%,
    #000 86%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 14%,
    #000 86%,
    transparent 100%
  );
}

.hero-shot__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transform: scale(1.04);
  animation: hero-ken 26s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes hero-ken {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(-1.5%, -1%, 0);
  }
}

.hero-shot::before,
.hero-shot::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(22%, 7.5rem);
  z-index: 1;
  pointer-events: none;
}

.hero-shot::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(8, 8, 8, 0.55) 42%, transparent 100%);
}

.hero-shot::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, rgba(8, 8, 8, 0.55) 42%, transparent 100%);
}

.hero-shot__overlay {
  position: absolute;
  left: 1rem;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.35));
  backdrop-filter: blur(4px);
}

.tag {
  display: inline-block;
  margin-bottom: 0.7rem;
  padding: 0.28rem 0.5rem;
  background: var(--gold);
  color: #111;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-shot__overlay ol {
  display: grid;
  gap: 0.35rem;
  counter-reset: step;
}

.hero-shot__overlay li {
  display: flex;
  gap: 0.55rem;
  align-items: baseline;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-shot__overlay li::before {
  counter-increment: step;
  content: counter(step) ".";
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(197, 160, 89, 0.2);
  background: #14110e;
  padding: 0.95rem 0;
  width: 100%;
}

.ticker__inner {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: ticker 280s linear infinite;
}

.ticker__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1.35rem;
  padding-right: 1.35rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker i {
  flex-shrink: 0;
  color: var(--red);
  font-style: normal;
}

@media (hover: hover) and (pointer: fine) {
  .ticker:hover .ticker__inner {
    animation-play-state: paused;
  }
}

@keyframes ticker {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.section {
  padding: var(--space-6) 0;
}

.section--panel {
  background: var(--bg-panel);
  border-block: 1px solid rgba(255, 255, 255, 0.035);
}

.section--dark {
  background: transparent;
}

#enroll {
  background: var(--bg);
}

#enroll-form {
  scroll-margin-top: calc(var(--header) + 18px);
}

.section--light {
  background:
    linear-gradient(180deg, #f6f3ee 0%, var(--bg-light) 100%);
  color: var(--text-dark);
}

.section__title {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  text-align: center;
}

.section__title--left {
  text-align: left;
}

.section__title--dark {
  color: var(--text-dark);
}

.section__eyebrow--dark {
  color: var(--gold-deep);
}

.section__text {
  margin-inline: auto;
  text-align: center;
}

.section__text--left {
  margin-inline: 0;
  text-align: left;
}

.section__footnote {
  margin: 2rem auto 0;
  max-width: 640px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.grid-2 {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 0.35rem;
}

.fears-carousel {
  width: min(100% - 2.5rem, var(--container-wide));
  margin-inline: auto;
  margin-top: 2.5rem;
}

.fears-carousel .grid-2 {
  margin-top: 0;
}

.doubt {
  padding: 1.7rem 1.6rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid transparent;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}

.doubt:hover {
  border-color: rgba(212, 175, 55, 0.35);
  border-top-color: var(--gold);
  background: #161616;
  box-shadow: var(--shadow);
}

.doubt h3 {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.doubt:hover h3 {
  color: var(--gold-soft);
}

.doubt p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.doubt__fix {
  margin-top: 1rem !important;
  padding-left: 0.9rem;
  border-left: 2px solid var(--gold);
  color: var(--text) !important;
}

.entry {
  display: grid;
  gap: 2.5rem;
}

.entry__text {
  color: var(--text-dark-muted);
}

.entry__divider {
  width: 120px;
  height: 2px;
  margin: 1.5rem 0;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.entry__list-title {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.check-list {
  display: grid;
  border-top: 1px solid rgba(20, 18, 15, 0.12);
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(20, 18, 15, 0.12);
  color: var(--text-dark);
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 1px;
  margin: 0;
  background: var(--gold-deep);
}

.check-list--light {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.check-list--light li {
  color: var(--text);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.check-list--light li::before {
  background: var(--gold);
}

.entry__cards {
  display: grid;
  gap: 0.95rem;
  perspective: 1400px;
}

.flip {
  position: relative;
  min-height: 148px;
  cursor: pointer;
  outline: none;
}

.flip--tall {
  min-height: 460px;
}

.flip__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  transform-style: preserve-3d;
  transition: transform 0.75s var(--ease);
  box-shadow: 0 0 0 transparent;
}

.flip.is-flipped .flip__inner {
  transform: rotateY(180deg);
}

@media (hover: hover) and (pointer: fine) {
  .flip:hover .flip__inner {
    transform: rotateY(180deg);
  }

  .flip:hover {
    z-index: 2;
  }

  .flip.is-flipped .flip__inner {
    transform: none;
  }

  .flip:hover.is-flipped .flip__inner {
    transform: rotateY(180deg);
  }
}

.flip__hint::before {
  content: "Наведите";
  font-size: 0.68rem;
}

.flip__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius);
}

.flip__face--back {
  transform: rotateY(180deg);
  display: grid;
  align-content: center;
  gap: 0.75rem;
  padding: 1.35rem 1.4rem;
  background: linear-gradient(160deg, #1b1812 0%, #12100c 100%);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--text);
}

.flip__face--back p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(245, 242, 236, 0.9);
}

.myth {
  display: grid;
  align-content: center;
  gap: 0.45rem;
  height: 100%;
  min-height: 148px;
  padding: 1.2rem 1.3rem 1.45rem;
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 18, 15, 0.08);
  border: 1px solid transparent;
}

.myth p {
  margin: 0;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.02rem;
}

.myth span {
  color: var(--gold-deep);
  font-size: 0.9rem;
}

.flip__hint {
  margin-top: 0.35rem;
  font-size: 0;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(20, 18, 15, 0.35);
}

.facets__head {
  max-width: 820px;
  margin: 0 auto 2.8rem;
  text-align: center;
}

.facets__cue {
  margin: 1rem 0 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.facets__cue--mob {
  display: none;
}

.facets {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.facet {
  --facet-fill: 0.55s;
  --facet-text: 0.15s;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #141414;
  padding: 0 0 1.1rem;
  cursor: pointer;
  outline: none;
}

.facet__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
}

.facet__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.facet__tag {
  margin: 1rem 1.2rem 0.35rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.facet > h3 {
  margin: 0 1.2rem 0.55rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.facet > p {
  margin: 0 1.2rem;
  flex: 1;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.facet__foot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.1rem 1.2rem 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.facet__foot i {
  flex: 1;
  height: 1px;
  background: rgba(212, 175, 55, 0.35);
}

.facet__cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.35rem 1.25rem;
  background: #141414;
  transform: translateY(100%);
  transition: transform var(--facet-fill) var(--ease);
  overflow: auto;
}

.facet > .facet__tag,
.facet > h3,
.facet > p,
.facet__foot {
  transition: opacity 0.22s var(--ease), visibility 0.22s var(--ease);
}

.facet.is-open > .facet__tag,
.facet.is-open > h3,
.facet.is-open > p,
.facet.is-open .facet__foot {
  opacity: 0;
  visibility: hidden;
}

.facet__cover-inner {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0s linear, visibility 0s linear;
}

.facet__cover-inner .facet__tag {
  display: block;
  margin: 0 0 0.55rem;
}

.facet__cover-inner h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: var(--text);
}

.facet__cover-inner ul {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 0.95rem;
  text-align: left;
}

.facet__cover-inner li {
  position: relative;
  padding-left: 0.95rem;
  color: rgba(245, 242, 236, 0.86);
  font-size: 0.9rem;
  line-height: 1.4;
}

.facet__cover-inner li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 7px;
  height: 1.5px;
  background: var(--gold);
}

.facet__cover-inner > p {
  margin: 0;
  color: rgba(245, 242, 236, 0.9);
  font-size: 0.92rem;
  line-height: 1.5;
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  padding-top: 0.85rem;
}

.facet.is-open .facet__cover {
  transform: translateY(0);
}

.facet.is-open .facet__media img {
  transform: scale(1.03);
}

.facet.is-open .facet__cover-inner {
  opacity: 1;
  visibility: visible;
  transition: opacity 0s linear var(--facet-text), visibility 0s linear var(--facet-text);
}

@media (hover: hover) and (pointer: fine) {
  .facet:hover > .facet__tag,
  .facet:hover > h3,
  .facet:hover > p,
  .facet:hover .facet__foot {
    opacity: 0;
    visibility: hidden;
  }

  .facet:hover .facet__cover {
    transform: translateY(0);
  }

  .facet:hover .facet__media img {
    transform: scale(1.03);
  }

  .facet:hover .facet__cover-inner {
    opacity: 1;
    visibility: visible;
    transition: opacity 0s linear var(--facet-text), visibility 0s linear var(--facet-text);
  }

  .facet.is-open .facet__cover {
    transform: translateY(100%);
  }

  .facet.is-open .facet__cover-inner {
    opacity: 0;
    visibility: hidden;
    transition: none;
  }

  .facet.is-open .facet__media img {
    transform: none;
  }

  .facet.is-open > .facet__tag,
  .facet.is-open > h3,
  .facet.is-open > p,
  .facet.is-open .facet__foot {
    opacity: 1;
    visibility: visible;
  }

  .facet:hover.is-open .facet__cover {
    transform: translateY(0);
  }

  .facet:hover.is-open .facet__cover-inner {
    opacity: 1;
    visibility: visible;
    transition: opacity 0s linear var(--facet-text), visibility 0s linear var(--facet-text);
  }

  .facet:hover.is-open .facet__media img {
    transform: scale(1.03);
  }

  .facet:hover.is-open > .facet__tag,
  .facet:hover.is-open > h3,
  .facet:hover.is-open > p,
  .facet:hover.is-open .facet__foot {
    opacity: 0;
    visibility: hidden;
  }
}

@media (min-width: 900px) {
  .facets {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
  }
}

.cta-band {
  padding: 3.5rem 0;
  background: var(--bg-cream);
  text-align: center;
}

.cta-band__inner {
  display: grid;
  gap: 1.25rem;
  justify-items: center;
}

.cta-band p {
  margin: 0;
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.program {
  display: grid;
  gap: 2.5rem;
}

.included {
  margin-top: 2rem;
}

.included h3 {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.included li {
  padding: 0.65rem 0 0.65rem 1rem;
  position: relative;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.included li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.program__date {
  margin: 1.4rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.timeline {
  --rail-x: 0.4rem;
  --rail-gap: 1.55rem;
  position: relative;
  display: grid;
  gap: 1rem;
  padding-left: calc(var(--rail-x) + var(--rail-gap));
}

.timeline::before {
  content: "";
  position: absolute;
  left: var(--rail-x);
  top: 1.55rem;
  bottom: 1.55rem;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(212, 175, 55, 0.15));
  transform: translateX(-50%);
}

.act {
  position: relative;
  padding: 1.35rem 1.4rem;
  background: var(--bg-soft);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.act:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  background: #1a1a1a;
}

.act::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--rail-gap));
  top: 1.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 3px rgba(8, 8, 8, 1);
}

.act--bonus {
  border-color: var(--gold);
  background: rgba(197, 160, 89, 0.08);
}

.act__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.65rem;
}

.act h3 {
  margin: 0;
  font-size: 1.1rem;
}

.act--bonus h3 {
  color: var(--gold);
}

.act__meta span {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pill {
  display: inline-flex;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--gold);
}

.act p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.enroll {
  display: grid;
  gap: 2rem;
}

.form {
  padding: 1.6rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.field span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.field input {
  width: 100%;
  padding: 0.85rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--text);
  outline: none;
  box-shadow: none;
}

.field input:focus,
.field input:focus-visible {
  outline: none;
  box-shadow: none;
  border-bottom-color: var(--gold);
}

.field input.is-invalid {
  border-bottom-color: #c44;
}

.agree {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 0.4rem 0 1.2rem;
  color: var(--text-muted);
  font-size: 0.86rem;
  cursor: pointer;
}

.agree a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.agree a:visited,
.agree a:active {
  color: var(--gold);
}

.agree a:hover,
.agree a:focus-visible {
  color: var(--gold-soft);
}

.agree input {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.15rem 0 0;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.03);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.78rem;
  cursor: pointer;
  transition:
    border-color 0.2s var(--ease),
    background-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.agree input:hover {
  border-color: var(--gold-soft);
  background-color: rgba(212, 175, 55, 0.08);
}

.agree input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.2 8.2l3.1 3.1 6.5-6.6' stroke='%2314120f' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.agree input.is-invalid {
  border-color: #c44;
  box-shadow: 0 0 0 1px rgba(196, 68, 68, 0.25);
}

.agree input:focus-visible {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.28);
}

.form__note {
  margin: 1rem 0 0;
  color: var(--gold);
  text-align: center;
}

.footer {
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #050505;
}

.footer__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.footer__brand {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  text-transform: uppercase;
}

.footer__tag {
  margin: 0.6rem 0 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
}

.footer__grid {
  display: grid;
  gap: 1.5rem;
}

.footer__map {
  display: grid;
  gap: 0;
}

.footer__map-frame {
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.footer__map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.footer__map-note {
  margin: 1rem 0 0;
  color: rgba(204, 204, 204, 0.55);
  font-size: clamp(0.5rem, 2.55vw, 0.78rem);
  font-style: italic;
  line-height: 1.3;
  white-space: nowrap;
  letter-spacing: -0.015em;
}

.footer__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1.25rem;
  align-items: start;
}

.footer__info h3 {
  margin: 0 0 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contacts,
.footer-nav {
  display: grid;
  gap: 0.55rem;
}

.contacts li,
.footer-nav a {
  color: var(--text-muted);
}

.copy-link {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.footer-nav a:hover,
.contacts a:hover,
.copy-link:hover {
  color: var(--gold);
}

.copy-link.is-copied {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
}

.footer__bottom > p {
  margin: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    align-items: flex-start;
  }

  .footer__legal {
    text-align: left;
  }

  .footer__bottom > p {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 0.35rem;
  }

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

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

  .entry {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    gap: 3rem;
  }

  .program {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
  }

  .enroll {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .footer__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
  }

  .footer__info {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .nav {
    display: flex;
  }

  a.header__cta {
    display: inline-flex;
  }

  .header__brand {
    flex: 0 1 auto;
  }

  .burger {
    display: none;
  }

  .hero {
    padding: 4.5rem 0 3rem;
  }

  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
  }

  .hero-shot {
    aspect-ratio: 4 / 5;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker__inner,
  .hero-shot__media img,
  .btn,
  .doubt,
  .myth,
  .act,
  .flip__inner {
    animation: none !important;
    transition: none !important;
  }

  .flip:hover .flip__inner,
  .flip:focus-within .flip__inner,
  .flip.is-flipped .flip__inner {
    transform: none;
  }

  .reveal,
  .reveal.is-visible,
  .spotlight,
  .noise {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .facet__cover,
  .facet__cover-inner {
    transition: none !important;
  }

  .facet.is-open .facet__cover,
  .facet:hover .facet__cover {
    transform: none;
  }

  .facet.is-open .facet__cover-inner,
  .facet:hover .facet__cover-inner {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--delay {
  transition-delay: 0.12s;
}

.form__disclaimer {
  margin: 0.85rem 0 0;
  color: rgba(245, 242, 236, 0.4);
  font-size: 0.78rem;
  text-align: center;
  line-height: 1.45;
}

.footer__legal {
  display: grid;
  gap: 0.25rem;
}

.footer__legal p {
  margin: 0;
}

.cta-band p {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
}

.facet.is-open {
  border-color: rgba(212, 175, 55, 0.4);
}

.mobile-carousel__dots {
  display: none;
}

.gallery-nav__btn:focus-visible,
.burger:focus-visible,
.flip:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.stats strong {
  letter-spacing: 0.04em;
}

.section__title {
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
}

.grid-2 {
  gap: 1.25rem;
}

@media (max-width: 767.98px) {
  :root {
    --header: 68px;
  }

  html {
    scroll-padding-top: calc(var(--header) + 10px);
    overflow-x: clip;
  }

  body {
    overflow-x: clip;
    max-width: 100%;
  }

  .section {
    overflow-x: clip;
    max-width: 100%;
  }

  #enroll-form {
    scroll-margin-top: calc(var(--header) + 28px);
  }

  .ticker,
  .ticker__inner {
    pointer-events: none;
  }

  .container,
  .header__inner {
    width: min(100% - 1.5rem, var(--container));
  }

  .logo {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
  }

  .badge {
    font-size: 0.56rem;
    padding: 0.22rem 0.4rem;
  }

  .hero {
    position: relative;
    min-height: calc(100svh - var(--header));
    padding: 1.35rem 0 1.1rem;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero__glow {
    display: none;
  }

  .hero__grid {
    position: static;
    z-index: 1;
    display: block;
    width: min(100% - 1.5rem, var(--container));
    margin-inline: auto;
  }

  .hero__visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .hero-shot {
    height: 100%;
    aspect-ratio: auto;
    isolation: auto;
  }

  .hero-shot__media {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-shot__media img {
    object-position: 68% center;
    filter: saturate(0.85) contrast(1.08) brightness(0.42);
    animation: none;
    transform: scale(1.08);
  }

  .hero-shot::before {
    width: 100%;
    background: linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.5) 0%,
      rgba(8, 8, 8, 0.22) 45%,
      rgba(8, 8, 8, 0.78) 100%
    );
  }

  .hero-shot::after {
    display: none;
  }

  .hero-shot__overlay {
    display: none;
  }

  .hero__copy {
    position: relative;
    z-index: 2;
    max-width: 34rem;
  }

  .hero__title {
    font-size: clamp(2.05rem, 10.5vw, 2.65rem);
    white-space: normal;
    letter-spacing: 0.06em;
  }

  .logo {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .hero__lead {
    font-size: 0.88rem;
    margin-top: 0.7rem;
    max-width: 28rem;
    color: rgba(245, 242, 236, 0.86);
  }

  .hero__rule {
    margin-top: 0.85rem;
  }

  .hero__actions {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.55rem;
    margin-top: 1rem;
  }

  .hero__actions .btn {
    flex: none;
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0.7rem 1rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem 1rem;
    margin-top: 1.4rem;
    padding-top: 1.2rem;
  }

  .stats strong {
    font-size: 1.85rem;
  }

  .stats span {
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .fears-carousel {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    margin-top: 1.6rem;
    overflow: hidden;
  }

  .fears-carousel .mobile-carousel__dots {
    display: flex;
  }

  .fears-carousel .mobile-carousel,
  #fears .grid-2.mobile-carousel {
    display: flex;
    grid-template-columns: none;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0.5rem 1.25rem;
    gap: 0.85rem;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1.25rem;
    scroll-behavior: smooth;
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .fears-carousel .mobile-carousel::-webkit-scrollbar,
  #fears .grid-2.mobile-carousel::-webkit-scrollbar {
    display: none;
  }

  .fears-carousel .mobile-carousel > .doubt,
  #fears .grid-2.mobile-carousel > .doubt {
    flex: 0 0 min(86%, 22rem);
    width: min(86%, 22rem);
    max-width: min(86%, 22rem);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .section__text,
  .entry__text {
    font-size: 0.92rem;
    margin-top: 0.85rem;
  }

  .doubt,
  .act,
  .flip,
  .facet,
  .mobile-carousel > * {
    -webkit-tap-highlight-color: transparent;
  }

  .doubt {
    padding: 1.25rem 1.15rem;
    transform: none;
    box-shadow: none;
  }

  .doubt:hover,
  .doubt:active {
    transform: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.05);
    border-top-color: transparent;
    background: var(--bg-elevated);
  }

  .doubt h3 {
    font-size: 1rem;
  }

  .doubt p {
    font-size: 0.88rem;
  }

  .act {
    padding: 1.15rem 1.1rem;
  }

  .act:hover,
  .act:active {
    transform: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.05);
    background: var(--bg-soft);
  }

  .act.act--bonus:hover,
  .act.act--bonus:active {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.08);
  }

  .act h3 {
    font-size: 1rem;
  }

  .act p {
    font-size: 0.88rem;
  }

  .flip {
    min-height: 168px;
  }

  .flip__hint::before {
    content: "Нажмите";
  }

  .facets__cue--desk {
    display: none;
  }

  .facets__cue--mob {
    display: block;
  }

  .footer__info {
    gap: 1.1rem 0.9rem;
  }

  .footer__info h3 {
    font-size: 0.7rem;
  }

  .contacts li,
  .footer-nav a,
  .copy-link {
    font-size: 0.82rem;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 0.65rem;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.55rem;
    margin-top: 1.35rem;
    padding-top: 0.85rem;
    text-align: left;
  }

  .footer__legal {
    width: 100%;
    gap: 0.12rem;
    text-align: left;
    order: 1;
  }

  .footer__legal p {
    margin: 0;
    font-size: 0.66rem;
    line-height: 1.35;
  }

  .footer__bottom > p {
    order: 2;
    width: 100%;
    margin: 0.15rem 0 0;
    text-align: center;
    font-size: 0.72rem;
  }

  .mobile-carousel {
    display: flex;
    align-items: stretch;
    gap: 0.85rem;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0.75rem 0;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
  }

  .mobile-carousel::-webkit-scrollbar {
    display: none;
  }

  .mobile-carousel > * {
    flex: 0 0 min(82%, 20.5rem);
    width: min(82%, 20.5rem);
    max-width: min(82%, 20.5rem);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .timeline.mobile-carousel {
    gap: 0.85rem;
  }

  .timeline.mobile-carousel::before,
  .timeline.mobile-carousel .act::before {
    display: none;
  }

  .grid-2.mobile-carousel {
    margin-top: 1.6rem;
    gap: 0.85rem;
    display: flex;
    grid-template-columns: none;
  }

  .entry__cards.mobile-carousel,
  .facets.mobile-carousel,
  .timeline.mobile-carousel {
    gap: 0.85rem;
    min-width: 0;
  }

  .entry,
  .program {
    min-width: 0;
  }

  .facets.mobile-carousel > .facet {
    height: auto;
  }

  .mobile-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.95rem;
  }

  .mobile-carousel__dot {
    width: 6px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
  }

  .mobile-carousel__dot.is-active {
    background: var(--gold);
  }

  .section--light .mobile-carousel__dot {
    background: rgba(20, 18, 15, 0.22);
  }

  .section--light .mobile-carousel__dot.is-active {
    background: var(--gold-deep);
  }

  .cta-band {
    padding: 2.4rem 0;
  }

  .cta-band p {
    font-size: 1.25rem;
  }

  .form {
    padding: 1.25rem;
  }

  .enroll {
    gap: 1.5rem;
  }

  .footer {
    padding: 3rem 0 0.85rem;
  }

  .footer__brand {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }
}

body {
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .grid-2 {
    gap: 1.5rem;
  }
}

.hero__promise {
  margin: 1rem 0 0;
  max-width: 34rem;
  color: rgba(245, 242, 236, 0.88);
  font-size: 1.02rem;
  line-height: 1.6;
}

.objections__head {
  max-width: none;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.objections__head .section__title {
  margin-inline: auto;
}

.objections__head .entry__text {
  margin: 0.85rem auto 0;
  max-width: 36rem;
}

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

#objections .flip {
  min-height: 168px;
}

.hero__highlights {
  display: grid;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  list-style: none;
}

.hero__highlights li {
  position: relative;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.section__text--dark,
.section--light .section__text {
  color: var(--text-dark-muted);
}

.section__actions {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.pillars {
  display: grid;
  gap: 0.85rem;
  margin: 1.75rem 0;
  padding: 0;
  list-style: none;
}

.pillars li {
  margin: 0;
  padding: 0.95rem 1.15rem;
  border-left: 2px solid var(--gold);
  background: rgba(212, 175, 55, 0.06);
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.result-note {
  margin: 1.25rem 0 0;
  text-align: center;
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.result-note strong {
  font-weight: 600;
}

.program-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

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

.day-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 100%;
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--bg-soft);
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), transform 0.35s var(--ease);
}

.day-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  background: #161616;
  transform: translateY(-2px);
}

.day-card__num {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.day-card h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: none;
}

.day-card > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.day-card__take {
  margin-top: auto !important;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  color: rgba(245, 242, 236, 0.9) !important;
  font-size: 0.88rem !important;
  line-height: 1.5;
}

.program-finale {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.1), rgba(8, 8, 8, 0.4));
  text-align: center;
}

.program-finale h3 {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.program-finale p {
  margin: 0.55rem auto 0;
  max-width: 42rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.faq {
  display: grid;
  gap: 1.5rem;
}

.faq__title {
  margin: 0;
}

.faq__body {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.faq__list {
  display: grid;
  gap: 0.65rem;
}

.faq__item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-elevated);
  transition: border-color 0.3s var(--ease);
}

.faq__item[open] {
  border-color: rgba(212, 175, 55, 0.4);
}

.faq__item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 2.6rem 1.05rem 1.15rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.4;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item summary:hover {
  color: var(--gold-soft);
}

.faq__item p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.format-card {
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background:
    linear-gradient(160deg, rgba(212, 175, 55, 0.12), transparent 55%),
    var(--bg-soft);
}

.format-card h3 {
  margin: 0 0 1rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.format-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
}

.format-card li {
  position: relative;
  margin: 0;
  padding-left: 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.format-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.format-card .btn {
  width: 100%;
}

.cta-band__sub {
  font-family: var(--font-sans) !important;
  font-size: 1.05rem !important;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-dark) !important;
}

.cta-band__text {
  max-width: 36rem;
  font-family: var(--font-sans) !important;
  font-size: 0.98rem !important;
  line-height: 1.6;
  color: var(--text-dark-muted) !important;
}

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

  .faq__body {
    grid-template-columns: minmax(0, 1.5fr) minmax(16rem, 0.75fr);
    gap: 2.5rem;
    align-items: start;
  }

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

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

@media (max-width: 767.98px) {
  #objections .entry__cards.mobile-carousel {
    display: flex;
    grid-template-columns: none;
  }

  .hero__promise {
    margin-top: 0.75rem;
    font-size: 0.88rem;
    max-width: 28rem;
  }

  .hero__highlights {
    gap: 0.45rem;
    margin-top: 1.15rem;
    padding-top: 1rem;
  }

  .hero__highlights li {
    font-size: 0.84rem;
  }

  .pillars {
    margin: 1.35rem 0;
    gap: 0.65rem;
  }

  .pillars li {
    padding: 0.8rem 0.95rem;
    font-size: 1rem;
  }

  .days.mobile-carousel {
    display: flex;
    grid-template-columns: none;
    gap: 0.85rem;
    min-width: 0;
  }

  .days.mobile-carousel > .day-card {
    flex: 0 0 min(82%, 20.5rem);
    width: min(82%, 20.5rem);
    max-width: min(82%, 20.5rem);
  }

  .day-card {
    padding: 1.2rem 1.1rem;
  }

  .day-card:hover {
    transform: none;
  }

  .day-card h3 {
    font-size: 1.05rem;
  }

  .day-card > p,
  .day-card__take {
    font-size: 0.86rem !important;
  }

  .program-finale {
    margin-top: 1.75rem;
    padding: 1.35rem 1.15rem;
    text-align: left;
  }

  .faq__item summary {
    padding: 0.95rem 2.4rem 0.95rem 1rem;
    font-size: 0.92rem;
  }

  .format-card {
    padding: 1.3rem 1.15rem;
  }

  .cta-band__sub {
    font-size: 0.95rem !important;
  }

  .cta-band__text {
    font-size: 0.9rem !important;
  }
}

