:root {
  --bg: #080808;
  --surface: #121212;
  --surface-2: #1a1a1a;
  --line: #2a2a2a;
  --muted: #a7a7a7;
  --text: #f5f5f5;
  --gold: #e6c158;
  --gold-2: #f0d47a;
  --blue: #5da2ff;
  --green: #48bb78;
  --danger: #ff6b6b;
  --radius: 10px;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 8, 8, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 172px;
}

.brand-logo {
  width: 172px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 14px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.top-nav {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 4px;
  flex: 1;
  min-width: 0;
  max-width: 860px;
}

.top-nav a,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 9px;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  min-width: 0;
}

.top-nav a {
  position: relative;
  flex: 0 1 auto;
  min-height: 38px;
}

.top-nav a.nav-two-line {
  white-space: nowrap;
}

.top-nav a:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 9px;
  right: -3px;
  width: 1px;
  height: calc(100% - 18px);
  background: linear-gradient(to bottom, transparent, rgba(230, 193, 88, 0.35), transparent);
}

.top-nav a:hover,
.header-cta:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

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

.header-cta {
  color: #080808;
  background: var(--gold);
  white-space: nowrap;
}

.header-cta:hover {
  color: #080808;
  background: var(--gold-2);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(230, 193, 88, 0.36);
  border-radius: 8px;
  color: var(--gold);
  background: rgba(230, 193, 88, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 48px;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.84) 0%, rgba(8, 8, 8, 0.64) 46%, rgba(8, 8, 8, 0.28) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.08), #080808 98%),
    url("images/home-hero-bg.png") center / cover no-repeat,
    linear-gradient(135deg, #080808 0%, #141414 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
}

.hero-grid,
.media-grid,
.split-grid,
.practice-grid,
.contact-grid,
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 36px;
  align-items: center;
}

.hero h1,
.section-heading h2,
.media-grid h2,
.split-grid h2,
.practice-grid h2,
.contact-grid h2 {
  margin: 0;
  color: var(--text);
  letter-spacing: 0;
  line-height: 1.12;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(30px, 4.8vw, 54px);
  font-weight: 800;
}

.hero-lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: #d0d0d0;
  font-size: 18px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn-primary {
  color: #080808;
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(230, 193, 88, 0.18);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

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

.btn-primary:hover {
  background: var(--gold-2);
}

.btn-secondary:hover {
  border-color: rgba(230, 193, 88, 0.45);
}

.btn.is-disabled {
  color: var(--muted);
  pointer-events: none;
}

.hero-theses {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.hero-theses div {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px 10px 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #d8d8d8;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 700;
}

.hero-theses div::before {
  content: "✓";
  position: absolute;
  left: 14px;
  color: var(--gold);
}

.hero-visual {
  min-height: 430px;
  display: grid;
  place-items: center;
}

.scheme-card {
  width: min(100%, 430px);
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(13, 13, 13, 0.95));
  border: 1px solid rgba(230, 193, 88, 0.28);
  box-shadow: var(--shadow);
}

.scheme-top {
  display: block;
  text-align: left;
}

.idea-card span,
.lesson-count {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(230, 193, 88, 0.13);
  color: var(--gold);
  font-weight: 800;
}

.hero-carousel {
  margin-top: 12px;
}

.hero-carousel-track {
  position: relative;
  min-height: 292px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px) scale(0.985);
  filter: blur(2px);
  transition:
    opacity 0.38s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.38s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

.hero-carousel-arrow {
  position: absolute;
  top: 92px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(230, 193, 88, 0.22);
  border-radius: 50%;
  color: rgba(230, 193, 88, 0.68);
  background: rgba(8, 8, 8, 0.42);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  opacity: 0.72;
}

.hero-carousel-arrow:hover {
  color: var(--gold);
  background: rgba(8, 8, 8, 0.64);
  border-color: rgba(230, 193, 88, 0.42);
  opacity: 1;
}

.hero-carousel-prev {
  left: 10px;
}

.hero-carousel-next {
  right: 10px;
}

.hero-slide-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(230, 193, 88, 0.28);
  border-radius: 10px;
  background: rgba(8, 8, 8, 0.48);
}

.hero-slide p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin: 0;
  color: #d7d7d7;
  font-size: 14px;
  line-height: 1.42;
  text-align: center;
}

.hero-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.hero-carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
  cursor: pointer;
}

.hero-carousel-dots button.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--gold);
}

.section-block,
.media-section,
.program-section,
.conditions-section,
.practice-section,
.reviews-section,
.contact-section {
  padding: 40px 0;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-heading h2,
.media-grid h2,
.split-grid h2,
.practice-grid h2,
.contact-grid h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.section-heading p,
.media-grid p,
.split-grid p,
.practice-grid p,
.contact-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.idea-grid,
.features-grid,
.asset-grid,
.download-grid,
.tariffs-grid,
.reviews-grid,
.products-grid {
  display: grid;
  gap: 18px;
}

.idea-grid,
.features-grid {
  grid-template-columns: repeat(3, 1fr);
}

.tariffs-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

.idea-card,
.feature-card,
.asset-card,
.download-card,
.tariff-card,
.product-card,
.reviews-grid article,
.practice-card,
.contact-form,
.video-card,
.author-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
}

.idea-card,
.feature-card,
.asset-card,
.download-card,
.tariff-card,
.product-card,
.reviews-grid article {
  padding: 22px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  grid-template-areas:
    "title title"
    "icon text";
  align-items: center;
  column-gap: 16px;
  row-gap: 12px;
  background:
    linear-gradient(145deg, rgba(230, 193, 88, 0.045), transparent 38%),
    radial-gradient(circle at 100% 0, rgba(230, 193, 88, 0.045), transparent 32%),
    repeating-linear-gradient(135deg, rgba(230, 193, 88, 0.035) 0 1px, transparent 1px 20px),
    var(--surface);
  background-size: auto, auto, auto, auto;
}

.feature-card h3 {
  grid-area: title;
  margin: 0;
  color: var(--text);
  font-size: 20px;
  text-align: left;
}

.feature-card p {
  grid-area: text;
  margin: 0;
  font-size: 14px;
  line-height: 1.34;
}

.feature-card h3,
.feature-card p {
  position: relative;
  z-index: 1;
}

.feature-icon-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 88px;
  height: 88px;
  grid-area: icon;
  margin: 0;
  border-radius: 16px;
  object-fit: cover;
}

.idea-card h3,
.asset-card h3,
.download-card h3,
.tariff-card h3,
.product-card h3 {
  margin: 14px 0 8px;
  color: var(--text);
  font-size: 20px;
}

.idea-card p,
.feature-card p,
.asset-card p,
.download-card p,
.product-card p,
.reviews-grid article {
  color: var(--muted);
}

.feature-card h3 {
  margin: 0;
}

.feature-card p {
  margin: 0;
}

.program-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.program-section .section-heading {
  margin-bottom: 16px;
}

.program-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 16px;
  border: 1px solid rgba(230, 193, 88, 0.52);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(230, 193, 88, 0.12), transparent 38%),
    radial-gradient(circle at 32% 18%, rgba(255, 218, 117, 0.22), transparent 34%),
    repeating-linear-gradient(135deg, rgba(230, 193, 88, 0.035) 0 1px, transparent 1px 18px),
    linear-gradient(145deg, #242424, #0d0d0d 72%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -12px 22px rgba(0, 0, 0, 0.28),
    0 16px 28px rgba(0, 0, 0, 0.28);
}

.program-icon-img {
  display: block;
  width: 118px;
  height: 76px;
  grid-area: icon;
  align-self: start;
  justify-self: center;
  margin: 0;
  border-radius: 0;
  object-fit: contain;
}

.program-icon::before {
  filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.36));
}

.program-icon::after {
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.32));
}

.program-icon::before,
.program-icon::after {
  content: "";
  position: absolute;
}

.program-icon-video::before {
  width: 48px;
  height: 34px;
  border: 2px solid rgba(238, 201, 92, 0.92);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(230, 193, 88, 0.18), rgba(20, 20, 20, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -8px 12px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(0, 0, 0, 0.25);
}

.program-icon-video::after {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #e6c158;
}

.program-icon-plan::before {
  width: 42px;
  height: 52px;
  border: 2px solid rgba(238, 201, 92, 0.92);
  border-radius: 6px;
  background:
    linear-gradient(rgba(230, 193, 88, 0.74), rgba(230, 193, 88, 0.74)) 11px 16px / 22px 2px no-repeat,
    linear-gradient(rgba(230, 193, 88, 0.46), rgba(230, 193, 88, 0.46)) 11px 27px / 22px 2px no-repeat,
    linear-gradient(rgba(230, 193, 88, 0.34), rgba(230, 193, 88, 0.34)) 11px 38px / 16px 2px no-repeat,
    linear-gradient(145deg, rgba(230, 193, 88, 0.13), rgba(17, 17, 17, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -8px 12px rgba(0, 0, 0, 0.3);
}

.program-icon-plan::after {
  right: 21px;
  bottom: 18px;
  width: 16px;
  height: 8px;
  border-left: 3px solid #e6c158;
  border-bottom: 3px solid #e6c158;
  transform: rotate(-45deg);
}

.program-icon-presentation::before {
  width: 50px;
  height: 36px;
  border: 2px solid rgba(238, 201, 92, 0.92);
  border-radius: 6px;
  background:
    linear-gradient(rgba(230, 193, 88, 0.7), rgba(230, 193, 88, 0.7)) 10px 10px / 28px 2px no-repeat,
    linear-gradient(rgba(230, 193, 88, 0.38), rgba(230, 193, 88, 0.38)) 10px 19px / 20px 2px no-repeat,
    linear-gradient(145deg, rgba(230, 193, 88, 0.14), rgba(17, 17, 17, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -8px 12px rgba(0, 0, 0, 0.3);
}

.program-icon-presentation::after {
  bottom: 18px;
  width: 34px;
  height: 2px;
  background: #e6c158;
  box-shadow:
    0 9px 0 rgba(230, 193, 88, 0.34),
    0 4px 8px rgba(0, 0, 0, 0.28);
}

.program-video-btn {
  min-height: 38px;
  padding: 9px 12px;
  font-size: 13px;
}

.download-card.compact {
  display: grid;
  align-items: center;
  text-align: left;
  gap: 10px 16px;
  padding: 18px;
  min-height: 100%;
}

.program-card {
  position: relative;
  overflow: hidden;
  grid-template-columns: 118px minmax(0, 1fr);
  grid-template-areas:
    "title title"
    "icon text"
    "icon button";
  background:
    linear-gradient(145deg, rgba(230, 193, 88, 0.045), transparent 38%),
    radial-gradient(circle at 100% 0, rgba(230, 193, 88, 0.045), transparent 32%),
    repeating-linear-gradient(135deg, rgba(230, 193, 88, 0.035) 0 1px, transparent 1px 20px),
    var(--surface);
}

.program-card:first-child {
  grid-row: span 2;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "title"
    "icon"
    "text"
    "button";
  align-content: center;
  justify-items: center;
  padding: 24px;
  text-align: center;
}

.program-card:first-child .program-icon-img {
  width: 118px;
  height: 76px;
}

.program-card:first-child h3 {
  text-align: center;
  font-size: 22px;
}

.program-card:first-child p {
  max-width: 520px;
  text-align: center;
}

.download-card.compact .doc-preview {
  width: 58px;
  height: 70px;
  font-size: 14px;
}

.download-card.compact h3 {
  grid-area: title;
  margin: 0;
  font-size: 18px;
  text-align: left;
}

.download-card.compact p {
  grid-area: text;
  margin: 0;
  font-size: 14px;
  line-height: 1.34;
}

.program-card-text {
  grid-area: text;
}

.download-card.compact .btn {
  grid-area: button;
  width: auto;
  min-height: 38px;
  justify-self: center;
  margin-top: 4px;
  padding: 9px 12px;
  font-size: 13px;
}

.media-section,
.program-section,
.conditions-section,
.practice-section,
.contact-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.video-card {
  min-height: 300px;
  padding: 26px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(8, 8, 8, 0.7), rgba(8, 8, 8, 0.88)),
    repeating-linear-gradient(135deg, rgba(230, 193, 88, 0.16) 0 1px, transparent 1px 14px);
}

.play-mark {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: #080808;
  background: var(--gold);
  font-weight: 900;
}

.video-card strong,
.video-card span {
  display: block;
}

.video-card span {
  max-width: 430px;
  margin-top: 8px;
  color: var(--muted);
}

.author-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px;
}

.author-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(230, 193, 88, 0.35);
}

.asset-visual {
  height: 140px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(230, 193, 88, 0.16), rgba(93, 162, 255, 0.1));
  position: relative;
  overflow: hidden;
}

.asset-visual::before,
.asset-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(230, 193, 88, 0.36);
}

.asset-visual::before {
  inset: 24px;
  border-radius: 8px;
}

.asset-visual::after {
  width: 58px;
  height: 58px;
  right: 22px;
  bottom: 18px;
  border-radius: 50%;
  background: rgba(230, 193, 88, 0.12);
}

.condition-list {
  display: grid;
  gap: 18px;
}

.section-inline-list {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}

.doc-preview {
  display: grid;
  place-items: center;
  width: 74px;
  height: 90px;
  border-radius: 8px;
  color: #080808;
  background: var(--gold);
  font-weight: 900;
}

.practice-card {
  padding: 28px;
  text-align: center;
}

.practice-card .lesson-count {
  width: 92px;
  height: 92px;
  margin: 0 auto 10px;
  font-size: 42px;
}

.practice-card span {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.lessons-slider {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 12px;
  align-items: center;
}

.lessons-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px;
}

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

.slider-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(230, 193, 88, 0.38);
  color: var(--gold);
  background: rgba(230, 193, 88, 0.1);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.slider-btn:hover {
  background: rgba(230, 193, 88, 0.18);
  border-color: rgba(230, 193, 88, 0.62);
}

.lesson-card {
  min-height: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.lesson-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lesson-video-placeholder {
  display: grid;
  place-items: center;
  min-height: 125px;
  border: 1px dashed rgba(230, 193, 88, 0.36);
  border-radius: 8px;
  color: var(--muted);
  background:
    linear-gradient(rgba(8, 8, 8, 0.5), rgba(8, 8, 8, 0.72)),
    repeating-linear-gradient(135deg, rgba(230, 193, 88, 0.12) 0 1px, transparent 1px 12px);
  font-size: 13px;
  font-weight: 800;
}

.lesson-cover {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(230, 193, 88, 0.36);
  border-radius: 8px;
  object-fit: cover;
}

.tariff-card {
  position: relative;
  display: flex;
  min-height: 620px;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(circle at 22px 22px, rgba(230, 193, 88, 0.055) 0.8px, transparent 1.2px),
    radial-gradient(circle at 50% 0, rgba(230, 193, 88, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(230, 193, 88, 0.045), transparent 30%),
    var(--surface);
  background-size: 24px 24px, auto, auto, auto;
}

.tariff-card-result {
  background:
    radial-gradient(circle at 22px 22px, rgba(72, 187, 120, 0.06) 0.8px, transparent 1.2px),
    radial-gradient(circle at 50% 0, rgba(72, 187, 120, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(72, 187, 120, 0.05), transparent 30%),
    var(--surface);
  background-size: 24px 24px, auto, auto, auto;
}

.tariff-card-result .price-new-line {
  color: var(--green);
}

.tariff-card-result .discount-badge {
  color: #06130b;
  background: var(--green);
}

.tariff-header {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 18px;
  text-align: center;
}

.tariff-header h3 {
  margin: 0;
}

.price-box {
  display: grid;
  justify-items: center;
  gap: 4px;
}

.price-old-line {
  color: #777;
  font-size: 17px;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.price-new-line-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.price-new-line {
  color: var(--gold);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.discount-badge {
  padding: 5px 9px;
  border-radius: 999px;
  color: #080808;
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.tariff-card ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
  color: #d7d7d7;
  font-size: 14px;
}

.tariff-includes {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.tariff-card li {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 42px;
  padding: 8px 0 8px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  line-height: 1.45;
}

.tariff-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--gold);
  font-weight: 900;
}

.tariff-card li.tariff-extra::before {
  content: "+";
  color: var(--green);
}

.tariff-card li.tariff-empty {
  visibility: hidden;
}

.tariff-card li.tariff-empty::before {
  content: "";
}

.tariff-discount-text {
  display: inline-block;
  margin-left: 6px;
  color: var(--gold);
  font-weight: 900;
}

.tariff-card li.tariff-discount-row {
  margin-top: 12px;
}

.tariff-card li.inactive {
  color: #777;
}

.tariff-card li.inactive::before {
  content: "–";
  color: #666;
}

.tariff-card .btn {
  margin-top: auto;
}

.tariff-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}

.tariff-actions .btn {
  display: flex;
  min-height: 48px;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 100%;
  margin-top: 0;
  line-height: 1.2;
  text-align: center;
}

.review-card {
  display: flex;
  height: 280px;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(230, 193, 88, 0.08), transparent 26%),
    radial-gradient(circle at 88% 82%, rgba(93, 162, 255, 0.055), transparent 30%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 18px),
    var(--surface);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  color: #080808;
  background: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.review-avatar img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-avatar span {
  position: relative;
  z-index: 0;
}

.review-author strong,
.review-author span,
.review-author a {
  display: block;
}

.review-author strong,
.review-author a {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

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

.review-author span {
  color: var(--muted);
  font-size: 12px;
}

.review-card p {
  margin: 0;
  color: #d7d7d7;
}

.review-preview {
  color: #d7d7d7;
  line-height: 1.55;
}

.review-preview p {
  display: inline;
  margin: 0;
}

.review-more {
  display: inline;
  margin: 0 0 0 6px;
  padding: 0;
  border: 0;
  color: var(--gold);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.review-more:hover {
  color: var(--gold-2);
}

.review-modal[hidden] {
  display: none;
}

.download-modal[hidden] {
  display: none;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.download-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.download-modal-dialog {
  position: relative;
  width: min(480px, 100%);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.download-modal-dialog h2 {
  margin: 0 42px 8px 0;
  color: var(--text);
  font-size: 24px;
}

.download-modal-description {
  margin: 0 0 20px;
  color: var(--muted);
}

.download-modal.is-success .download-modal-description {
  display: none;
}

.download-form {
  display: grid;
  gap: 14px;
}

.download-form.is-success > :not(.form-note) {
  display: none;
}

.download-form label {
  display: grid;
  gap: 7px;
  color: #d7d7d7;
  font-size: 14px;
  font-weight: 700;
}

.download-form input {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: #0e0e0e;
  font: inherit;
}

.download-form .btn {
  width: 100%;
  margin-top: 4px;
}

.review-modal-dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: min(720px, calc(100vh - 40px));
  overflow-y: auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.review-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.review-modal-close:hover {
  color: var(--gold);
}

.review-modal-author .review-author {
  padding-right: 42px;
}

.review-modal-text {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  color: #d7d7d7;
}

.review-modal-text p {
  margin: 0;
}

body.modal-open {
  overflow: hidden;
}

.center-actions {
  justify-content: center;
}

.product-image {
  display: block;
  width: 85%;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #101010;
  object-fit: cover;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card h3 {
  text-align: center;
}

.product-card .product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: auto;
  padding: 9px 12px;
  border: 1px solid rgba(230, 193, 88, 0.32);
  border-radius: 8px;
  background: transparent;
  color: var(--gold);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.product-card .product-link:hover {
  border-color: rgba(230, 193, 88, 0.65);
  background: rgba(230, 193, 88, 0.08);
}

.product-modal-dialog {
  width: min(780px, 100%);
}

.product-modal-dialog h2 {
  margin: 0 42px 18px 0;
  color: var(--text);
  font-size: 26px;
}

.product-modal-text {
  display: grid;
  gap: 14px;
  color: #d7d7d7;
  line-height: 1.68;
}

.product-modal-text h3 {
  margin: 8px 0 0;
  color: var(--gold);
  font-size: 18px;
}

.product-modal-text p,
.product-modal-text ul {
  margin: 0;
}

.product-modal-text ul {
  padding-left: 20px;
}

.donut-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
  gap: 22px;
  align-items: start;
}

.donut-qr-card {
  display: grid;
  place-items: center;
  min-height: 220px;
}

.donut-qr-card img {
  display: block;
  width: min(100%, 200px);
  aspect-ratio: 1;
  object-fit: contain;
}

.product-modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}

.product-modal-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--gold);
  color: #15120a;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
}

.product-modal-action:hover {
  background: #f0cf70;
}

.contact-grid {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.contact-info {
  display: grid;
  gap: 14px;
}

.contact-info-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.contact-info-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-info-item p {
  margin: 0;
  color: #d7d7d7;
}

.contact-info-item a {
  color: #d7d7d7;
  text-decoration: none;
}

.contact-info-item a:hover {
  color: var(--gold);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #d7d7d7;
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #0e0e0e;
  color: var(--text);
  font: inherit;
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.download-form.is-success .form-note {
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.form-note a {
  color: var(--gold);
  text-decoration: none;
}

.form-note a:hover {
  color: var(--gold-2);
}

.legal-section {
  padding: 76px 0;
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.legal-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.legal-back:hover {
  color: var(--gold-2);
}

.legal-card h1 {
  margin: 0 0 28px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.legal-card h2 {
  margin: 34px 0 14px;
  color: var(--gold);
  font-size: 22px;
  line-height: 1.25;
}

.legal-card p {
  margin: 0 0 12px;
  color: #d7d7d7;
}

.legal-text {
  color: #d7d7d7;
  font: inherit;
  white-space: pre-wrap;
}

.site-footer {
  padding: 34px 0;
  color: var(--muted);
  background: #050505;
  border-top: 1px solid var(--line);
}

.footer-grid {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.footer-grid p {
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

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

@media (max-width: 960px) {
  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 64px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 156px;
    height: 38px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .top-nav {
    display: none;
    order: 3;
    flex: 0 0 100%;
    max-width: none;
    padding: 6px 0 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .top-nav.is-open {
    display: flex;
  }

  .top-nav a {
    min-height: 42px;
    justify-content: flex-start;
    padding: 11px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 14px;
    text-align: left;
  }

  .top-nav a.nav-two-line {
    white-space: normal;
  }

  .top-nav a:not(:last-child)::after {
    display: none;
  }

  .hero-grid,
  .media-grid,
  .program-layout,
  .split-grid,
  .practice-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    grid-row: auto;
    grid-template-columns: 118px minmax(0, 1fr);
    grid-template-areas:
      "title title"
      "icon text"
      "icon button";
    justify-items: stretch;
    padding: 18px;
    text-align: left;
  }

  .program-card:first-child {
    grid-row: auto;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "title"
      "icon"
      "text"
      "button";
    align-content: center;
    justify-items: center;
    padding: 18px;
    text-align: center;
  }

  .program-card:first-child .program-icon-img {
    width: 118px;
    height: 76px;
  }

  .program-card:first-child h3,
  .program-card:first-child p {
    text-align: center;
  }

  .hero-visual {
    min-height: auto;
  }

  .asset-grid,
  .tariffs-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    align-items: center;
    flex-direction: row;
    padding: 12px 0;
  }

  .top-nav {
    flex-basis: 100%;
  }

  .hero,
  .section-block,
  .media-section,
  .program-section,
  .conditions-section,
  .practice-section,
  .reviews-section,
  .contact-section {
    padding: 38px 0;
  }

  .hero-lead {
    display: none;
  }

  .hero-carousel-track {
    min-height: 235px;
  }

  .hero-slide {
    gap: 10px;
  }

  .hero-slide-image {
    max-height: 168px;
    object-fit: contain;
  }

  .hero-slide p {
    -webkit-line-clamp: 3;
    font-size: 13px;
    line-height: 1.35;
  }

  .hero-carousel-arrow {
    top: 68px;
    width: 30px;
    height: 30px;
    font-size: 21px;
  }

  .hero-actions,
  .center-actions {
    flex-direction: column;
  }

  .feature-card {
    grid-template-columns: 72px minmax(0, 1fr);
    column-gap: 12px;
  }

  .feature-icon-img {
    width: 68px;
    height: 68px;
    border-radius: 12px;
  }

  .program-card,
  .program-card:first-child {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .program-icon-img,
  .program-card:first-child .program-icon-img {
    width: 92px;
    height: 58px;
  }

  .lessons-slider {
    display: block;
  }

  .slider-btn {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 38px;
    height: 38px;
    transform: translateY(-50%);
    background: rgba(8, 8, 8, 0.62);
    font-size: 26px;
    backdrop-filter: blur(8px);
  }

  .slider-btn-prev {
    left: 8px;
  }

  .slider-btn-next {
    right: 8px;
  }

  .lessons-carousel {
    grid-auto-columns: minmax(280px, 92%);
    gap: 10px;
    padding: 2px 8px;
  }

  .lesson-card {
    padding: 8px;
  }

  .lesson-cover {
    border-radius: 6px;
  }

  .tariff-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .tariff-actions .btn {
    min-height: 48px;
    padding: 10px 8px;
    line-height: 1.15;
    white-space: normal;
  }

  .tariff-card li.tariff-empty {
    display: none;
  }

  .btn {
    width: 100%;
  }

  .hero-theses {
    display: none;
  }

  .idea-grid,
  .features-grid,
  .asset-grid,
  .download-grid,
  .tariffs-grid,
  .reviews-grid,
  .products-grid,
  .program-downloads,
  .section-inline-list {
    grid-template-columns: 1fr;
  }

  .donut-info-grid {
    grid-template-columns: 1fr;
  }

  .donut-qr-card {
    min-height: 200px;
  }

  .product-modal-action {
    width: min(100%, 280px);
  }

  .author-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .author-card img {
    margin: 0 auto;
  }

  .scheme-card {
    padding: 20px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (hover: none) {
  .btn:hover,
  .top-nav a:hover,
  .header-cta:hover,
  .footer-links a:hover {
    transform: none;
    background: inherit;
  }

  .btn-primary:hover {
    background: var(--gold);
  }
}
