@import url("./fonts/stylesheet.css");

:root {
  --font-text: "Gilroy", Arial, sans-serif;
  --font-display: "Akzidenz-Grotesk Pro Bold Cnd", "Arial Narrow", Arial, sans-serif;
  --black: #101010;
  --cod-gray: #1b1b1b;
  --white: #fff;
  --paper: #101010;
  --surface: #1b1b1b;
  --surface-muted: #232323;
  --text: #fff;
  --text-inverse: #fff;
  --muted: #c9c9c9;
  --silver: #c9c9c9;
  --line: rgba(255, 255, 255, 0.2);
  --line-dark: rgba(255, 255, 255, 0.2);
  --accent: #aa2e3c;
  --accent-hover: #8f2532;
  --max: 1348px;
  --radius: 4px;
  --button-radius: 26px;
  --section-y: 100px;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 148px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  cursor: pointer;
}

img,
video,
iframe {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.container {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}

.section {
  padding: var(--section-y) 0;
  background: var(--paper);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--black);
  box-shadow: 0 1px 0 var(--line);
}

.header-top {
  min-height: 44px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

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

.header-top a:hover,
.desktop-nav a:hover,
.header-phone:hover,
.footer-links a:hover,
.legal-links a:hover {
  color: var(--accent);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  min-height: 100px;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 160px;
}

.brand img {
  display: block;
  width: 160px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 0;
  margin-left: 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}

.desktop-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 13px;
}

.header-phone {
  min-width: max-content;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: var(--button-radius);
  padding: 0 27px;
  background: var(--accent);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn:focus-visible,
.sticky-cta:focus-visible,
.menu-toggle:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(170, 46, 60, 0.34);
  outline-offset: 3px;
}

.btn-small {
  min-height: 44px;
  padding: 0 22px;
  font-size: 14px;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.36);
  background: transparent;
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  height: 530px;
  min-height: 0;
  max-height: 530px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
  background: var(--black);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 16, 16, 0.98) 0%, rgba(16, 16, 16, 0.86) 35%, rgba(16, 16, 16, 0.72) 70%, rgba(16, 16, 16, 0.96) 100%);
  z-index: 0;
}

.hero-rider {
  position: absolute;
  left: calc(50% + 105px);
  bottom: 0;
  z-index: 1;
  width: min(42vw, 520px);
  max-width: none;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(560px, 650px) minmax(230px, 256px);
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 42px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(50px, 5.8vw, 70px);
  font-weight: 700;
  font-style: italic;
  line-height: 0.9;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

h1 .accent-line {
  color: var(--accent);
}

.hero-subtitle {
  max-width: 500px;
  margin-bottom: 20px;
  color: var(--silver);
  font-size: 19px;
  line-height: 1.35;
}

.hero-subtitle strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 520px;
  margin-bottom: 22px;
}

.hero-badges span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--button-radius);
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-note {
  max-width: 430px;
  margin: 16px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: auto;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.panel-card {
  position: static;
  z-index: 1;
  display: grid;
  gap: 8px;
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: var(--cod-gray);
  color: var(--white);
}

.panel-card strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  line-height: 0.98;
  text-transform: uppercase;
}

.panel-card strong span {
  font-size: inherit;
  line-height: 1;
}

.panel-card strong em {
  color: var(--silver);
  font-size: 20px;
  font-style: italic;
  line-height: 1.08;
}

.panel-card span {
  color: var(--white);
  font-size: 14px;
  line-height: 1.25;
}

.panel-card-accent {
  border-color: rgba(170, 46, 60, 0.96);
  background: var(--accent);
}

.panel-card-accent span {
  color: rgba(255, 255, 255, 0.9);
}

.panel-card-main,
.panel-card-side {
  inset: auto;
}

.video-section {
  padding: 44px 0 28px;
  background: var(--cod-gray);
}

.video-showcase {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  padding: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)), var(--black);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(170, 46, 60, 0.16);
}

.video-showcase video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  background: var(--black);
  object-fit: cover;
}

.video-section+.moscow-section {
  padding-top: 48px;
}

.section-heading {
  max-width: 1080px;
  margin: 0 0 30px;
  text-align: left;
}

.section-heading.left {
  margin: 0;
}

.section-heading h2,
.price-card h2,
.contacts-info h2,
.forms-block h2,
.faq-aside h2 {
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 48px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--white);
}

.section-heading p,
.price-card p,
.contacts-info p,
.forms-block__preview {
  max-width: 960px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card,
.audience-grid article {
  min-height: 328px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 21px;
  background: var(--surface);
  color: var(--white);
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-index {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 42px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.feature-card h3,
.audience-grid h3,
.timeline h3,
.comparison-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  font-weight: 700;
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.feature-card h3,
.timeline h3,
.comparison-card h3 {
  font-weight: 700;
  color: var(--white);
}

.feature-card p,
.audience-grid p,
.timeline p,
.faq-accordion__answer,
.faq-accordion__answer p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.42;
}

.audience-grid p {
  color: #4c4c4c;
}

.moscow-section,
.timeline-section,
.price-section,
.faq-section,
.why-section,
.forms-section {
  background: var(--cod-gray);
}

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

.compact-grid .feature-card {
  min-height: 250px;
}

.section-cta {
  display: flex;
  margin-top: 28px;
}

.course-section {
  background: var(--paper);
}

.course-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 20px;
}

.course-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  background: var(--surface);
  color: var(--white);
}

.course-card-main {
  grid-row: span 2;
  background: var(--black);
  border-color: rgba(170, 46, 60, 0.72);
}

.course-card h3,
.why-card h3,
.tariff-top span {
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.course-card p,
.why-card p,
.tariff-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.42;
}

.course-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.course-card li,
.price-list li {
  position: relative;
  padding-left: 22px;
}

.course-card li::before,
.price-list li::before {
  content: "";
  position: absolute;
  top: calc(50% - 4.5px);
  left: 14px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.comparison-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
  background: var(--black);
  color: var(--white);
}

.comparison-card-good {
  border-color: rgba(170, 46, 60, 0.72);
}

.comparison-card-muted {
  background: var(--surface);
}

.comparison-card h3 {
  margin-bottom: 22px;
}

.comparison-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--surface-muted);
  color: var(--silver);
  line-height: 1.35;
}

.comparison-card li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.comparison-card-muted li::before {
  background: #6f6f6f;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 64px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--surface-muted);
  color: var(--white);
}

.timeline li>span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.audience-grid article {
  min-height: 220px;
  background: var(--white);
  color: var(--black);
}

.audience-grid h3 {
  color: var(--black);
}

.price-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 30px;
  align-items: stretch;
}

.price-copy {
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  background: var(--surface);
}

.tariff-card {
  display: grid;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 54px);
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
}

.tariff-top {
  display: grid;
  gap: 6px;
}

.tariff-top strong {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-style: italic;
  line-height: 0.9;
  color: var(--white);
}

.price-copy p,
.price-list li {
  color: var(--silver);
}

.tariff-card .btn {
  justify-self: start;
}

.price-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 12px 14px 12px 36px;
  background: var(--surface-muted);
  font-weight: 700;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.why-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 21px;
  background: var(--surface);
  color: var(--white);
}

.why-card h3 {
  margin: 0 0 6px;
  color: var(--white);
  line-height: 1.08;
}

.why-card p {
  margin: 0;
}

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

.tariff-card-main {
  border-color: rgba(170, 46, 60, 0.72);
  background: var(--accent, #aa2e3c);
}

.tariff-card-main .price-list li {
  color: var(--white);
  border-color: var(--white);
}

.tariff-card-main .price-list li::before {
  background: var(--white);
}

.tariff-card-main .btn {
  background: var(--white);
  color: var(--accent);
}

.tariff-card {
  align-content: start;
}

.tariff-card .price-list li {
  background: transparent;
}

.faq-section {
  position: relative;
  position: relative;
  overflow: hidden;
}

.faq-list__bg {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.faq-container {
  position: relative;
  z-index: 1;
}

.faq-layout {
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 4vw, 48px);
}

.faq-aside {
  flex: 0 0 34%;
  max-width: 34%;
}

.faq-aside h2 {
  margin: 0;
  position: sticky;
  top: 148px;
}

.faq-items {
  flex: 1 1 66%;
  min-width: 0;
}

.faq-accordion {
  background: var(--surface);
  border-radius: var(--radius);
}

.faq-accordion__item {
  position: relative;
  margin-bottom: -1px;
  padding-bottom: 8px;
  border: 1px solid var(--line);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.faq-accordion__item:first-of-type {
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.faq-accordion__item:last-of-type {
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

.faq-accordion__item:hover {
  z-index: 1;
  border-color: rgba(255, 255, 255, 0.32);
  background: var(--surface-muted);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.28);
}

.faq-accordion__head {
  display: block;
  position: relative;
  padding: 24px 86px 16px 31px;
  cursor: pointer;
  list-style: none;
}

.faq-accordion__head::-webkit-details-marker {
  display: none;
}

.faq-accordion__question {
  display: block;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.faq-accordion__item:hover .faq-accordion__question,
.faq-accordion__item[open] .faq-accordion__question {
  color: var(--accent);
}

.faq-accordion__icon {
  position: absolute;
  top: 28px;
  right: 28px;
  display: inline-flex;
  transition: transform 0.3s ease;
}

.faq-accordion__item[open] .faq-accordion__icon {
  transform: rotate(135deg);
}

.faq-accordion__body {
  position: relative;
  padding: 0 33px 0;
}

.faq-accordion__answer {
  margin: 9px 0 19px;
  padding-bottom: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.faq-accordion__answer ol {
  margin: 0;
  padding-left: 20px;
}

.faq-accordion__answer li+li {
  margin-top: 8px;
}

.faq-accordion__line {
  position: absolute;
  left: -1px;
  top: 31px;
  width: 4px;
  height: 11px;
  border-radius: 0 4px 4px 0;
  background: var(--accent);
}

.contacts {
  background: var(--paper);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 20px;
  align-items: stretch;
}

.contacts-info,
.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: none;
}

.contacts-info {
  color: var(--white);
}

.contacts-info {
  padding: 34px;
}

.contacts-info dl {
  display: grid;
  gap: 22px;
  margin: 30px 0;
}

.contacts-info dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.contacts-info dd {
  margin: 5px 0 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}


.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-links a {
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  padding: 8px 13px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.map-frame {
  min-height: 420px;
  overflow: hidden;
}

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

.forms-section {
  padding-top: 0;
  padding-bottom: 0;
}

.forms-block__wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
}

.forms-block__img {
  position: relative;
  flex: 1 1 50%;
  min-width: 0;
}

.forms-block__fon {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 500px;
  border-radius: var(--radius);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.forms-block__info {
  display: flex;
  flex: 1 1 50%;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  min-width: 0;
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px) clamp(32px, 5vw, 56px) clamp(40px, 7vw, 100px);
  color: var(--white);
}

.forms-block__header h2 {
  margin-bottom: 16px;
}

.forms-block__preview {
  max-width: 560px;
  margin: 0;
  color: var(--silver);
}

.forms-block__footer {
  padding-top: 4px;
}

.btn-lg {
  min-height: 56px;
  padding: 0 34px;
  font-size: 16px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p,
.site-footer address,
.copyright {
  color: var(--muted);
  font-style: normal;
}

.site-footer address {
  display: grid;
  gap: 8px;
}

.site-footer address a {
  color: var(--white);
  font-weight: 700;
}

.copyright {
  margin-top: 36px;
  font-size: 13px;
}

.sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 30;
  display: none;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: var(--button-radius);
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}


.section-heading h2 span {
  color: var(--accent);
}

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

.moscow-section .feature-card {
  justify-content: flex-start;
  gap: 24px;
  min-height: 250px;
  border-color: transparent;
  background: var(--white);
  color: var(--black);
}

.moscow-section .feature-card h3 {
  color: var(--black);
}

.moscow-section .feature-card p {
  color: #4c4c4c;
}

.program-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.program-card {
  display: grid;
  align-content: start;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
  background: var(--surface);
  color: var(--white);
}

.program-card-main {
  grid-row: span 2;
  border-color: rgba(170, 46, 60, 0.72);
  background: var(--black);
}

.program-card h3,
.trust-proof h3,
.trust-cta h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.program-facts {
  display: grid;
  gap: 0;
  margin: 0;
}

.program-facts div {
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.program-facts div:last-child {
  border-bottom: 0;
}

.program-facts dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.program-facts dd {
  margin: 0;
  color: var(--white);
  font-weight: 700;
  line-height: 1.35;
}

.program-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-list li {
  position: relative;
  padding-left: 22px;
  color: var(--silver);
  line-height: 1.35;
}

.program-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.program-card-result p {
  margin: 0;
  color: var(--silver);
}

.audience-grid article {
  display: grid;
  gap: 16px;
  overflow: hidden;
  padding: 0 0 24px;
}

.audience-grid h3,
.audience-grid p {
  padding: 0 24px;
}

.audience-img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: #151515;
}

.trust {
  background: var(--paper);
}

.trust-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.trust-media {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
}

.trust-media video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.trust-content,
.trust-proof-grid {
  display: grid;
  gap: 14px;
}

.trust-proof {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--surface);
  color: var(--white);
}

.trust-proof-accent {
  border-color: rgba(170, 46, 60, 0.72);
  background: var(--black);
}

.trust-proof p,
.trust-cta p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.42;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.document-grid a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  padding: 0 18px;
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
}

.document-grid a:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.trust-cta {
  margin-top: 20px;
  border: 1px solid rgba(170, 46, 60, 0.72);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 44px);
  background: linear-gradient(135deg, rgba(170, 46, 60, 0.22), rgba(27, 27, 27, 0.96));
}

.trust-cta .trust-cta__content {
  padding-bottom: 16px;
}

.price-section .section-heading {
  margin-bottom: 34px;
}

.tariff-grid .tariff-card {
  min-height: 100%;
}

.forms-block__header h2 {
  max-width: 640px;
}

@media (max-width: 420px) {
  .brand img {
    width: 108px;
  }

  .header-phone {
    font-size: 12px;
  }

  .header-inner {
    gap: 8px;
  }
}

@media (max-width: 1180px) {
  html {
    scroll-padding-top: 104px;
  }

  .header-top {
    display: none;
  }

  .header-inner {
    min-height: 84px;
    grid-template-columns: auto 1fr auto auto;
  }

  .desktop-nav {
    display: none;
  }

  .header-phone {
    margin-left: 0;
    justify-self: end;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    inset: 84px 0 auto;
    z-index: 19;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--black);
  }

  .menu-open .mobile-nav {
    display: grid;
  }

  .mobile-nav a {
    border-top: 1px solid var(--line);
    padding: 17px 32px;
    color: var(--white);
    font-weight: 700;
  }

  .mobile-nav-phone {
    color: var(--accent) !important;
  }

  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .hero-grid,
  .split-layout,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 1;
  }

  .hero-panel {
    order: 2;
  }

  .hero-rider {
    left: auto;
    right: -4vw;
    width: min(58vw, 560px);
    transform: none;
    opacity: 0.72;
  }

  .hero-copy,
  .hero-panel {
    max-width: 560px;
  }

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

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

  .compact-grid,
  .course-layout,
  .price-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .course-card-main {
    grid-row: auto;
    grid-column: 1 / -1;
  }

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

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

@media (max-width: 760px) {
  html {
    scroll-padding-top: 72px;
  }

  body {
    padding-bottom: 76px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 64px 0;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 64px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 128px;
  }

  .header-phone {
    display: inline-flex;
    justify-self: end;
    font-size: 13px;
    line-height: 1;
  }

  .header-inner>.btn {
    display: none;
  }

  .menu-toggle {
    justify-self: end;
  }

  .mobile-nav {
    inset: 64px 0 auto;
  }

  .mobile-nav a {
    padding: 16px 20px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 30px;
    padding-top: 64px;
    padding-bottom: 54px;
  }

  .hero-rider {
    position: absolute;
    right: -210px;
    bottom: -34px;
    order: 2;
    width: 450px;
    margin: 0;
    opacity: 0.26;
  }

  .hero-copy {
    order: 1;
  }

  h1 {
    font-size: clamp(42px, 14vw, 60px);
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-panel {
    display: grid;
    grid-template-columns: 1fr;
    max-width: none;
  }

  .video-section {
    padding: 28px 0 20px;
  }

  .video-showcase {
    width: calc(100% - 32px);
    border-radius: 18px;
    padding: 6px;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(170, 46, 60, 0.14);
  }

  .video-showcase video {
    border-radius: 13px;
  }

  .video-section+.moscow-section {
    padding-top: 38px;
  }

  .panel-card strong span,
  .feature-index {
    font-size: 36px;
  }

  .panel-card strong em {
    font-size: 20px;
  }

  .benefit-grid,
  .compact-grid,
  .course-layout,
  .audience-grid,
  .price-layout,
  .why-grid,
  .tariff-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-cta .btn {
    width: 100%;
  }

  .course-card,
  .why-card,
  .compact-grid .feature-card {
    min-height: auto;
  }

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

  .feature-card,
  .audience-grid article {
    min-height: auto;
  }

  .timeline li {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .timeline li>span {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .contacts-info {
    padding: 24px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 340px;
  }

  .sticky-cta {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}


@media (max-width: 1180px) {

  .program-layout,
  .trust-layout {
    grid-template-columns: 1fr;
  }

  .trust-media video {
    min-height: 360px;
  }
}

@media (max-width: 991px) {
  .faq-layout {
    flex-direction: column;
  }

  .faq-aside,
  .faq-items {
    flex: 1 1 auto;
    max-width: none;
  }

  .faq-aside h2 {
    position: static;
    margin-bottom: 8px;
  }

  .faq-list__bg {
    opacity: 0.35;
  }

  .forms-block__img {
    display: none;
  }

  .forms-block__wrapper {
    flex-direction: column;
  }

  .forms-block__info {
    padding: clamp(32px, 5vw, 48px) 24px;
  }
}

@media (max-width: 760px) {
  .moscow-section .feature-card {
    min-height: auto;
  }

  .program-card-main {
    grid-row: auto;
  }

  .program-facts div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .audience-img {
    height: 170px;
  }

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

  .trust-media video {
    min-height: 260px;
  }

  .forms-block__footer .btn {
    width: 100%;
  }
}