
:root {
  --bg: #0d1020;
  --bg-deep: #080a14;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-2: rgba(255, 255, 255, 0.12);
  --text: #f6f7fb;
  --muted: #b8bfd9;
  --soft: #dbe0f5;
  --accent: #9d7cff;
  --accent-2: #55d6c2;
  --danger: #ff4d6d;
  --gold: #ffd166;
  --border: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(157, 124, 255, 0.32), transparent 34%),
    radial-gradient(circle at 80% 10%, rgba(85, 214, 194, 0.18), transparent 32%),
    linear-gradient(135deg, var(--bg-deep) 0%, var(--bg) 52%, #15112a 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(8, 10, 20, 0.76);
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: 0.2px;
}

.logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(157, 124, 255, 0.95), rgba(85, 214, 194, 0.95));
  display: grid;
  place-items: center;
  box-shadow: 0 12px 34px rgba(157, 124, 255, 0.35);
  font-size: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 15px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 780;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--danger), #ff7a45);
  color: white;
  box-shadow: 0 18px 40px rgba(255, 77, 109, 0.28);
}

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

.hero,
.page-hero {
  padding: 76px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 7px rgba(85, 214, 194, 0.13);
}

h1 {
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 68px);
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

h3 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff, #b9a8ff 44%, #75eadc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 760px;
  margin-bottom: 30px;
}

.hero-actions,
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 650px;
  margin-top: 30px;
}

.card,
.stat-card,
.glass-card,
.feature-card,
.contact-card,
.price-card,
.review-card,
.step-card,
.form-card {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 18px;
}

.stat-card strong {
  display: block;
  font-size: 26px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card span {
  color: var(--muted);
  font-size: 14px;
}

.video-shell {
  position: relative;
  border-radius: 30px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(157, 124, 255, 0.55), rgba(85, 214, 194, 0.25)),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.video-box {
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.video-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.floating-note {
  position: absolute;
  right: -14px;
  bottom: -20px;
  width: min(260px, 75%);
  padding: 18px;
  border-radius: 22px;
  background: rgba(21, 26, 51, 0.92);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.floating-note strong {
  display: block;
  margin-bottom: 4px;
}

.floating-note p,
.muted,
.section-head p,
.card p,
.feature-card p,
.review-card p,
.price-card p,
.step-card p,
.contact-card small,
.help-text {
  color: var(--muted);
}

section {
  padding: 58px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.eyebrow {
  color: var(--accent-2);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 13px;
  margin-bottom: 10px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.grid-3,
.features,
.price-grid,
.review-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.card,
.review-card,
.step-card,
.contact-card {
  padding: 26px;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(157, 124, 255, 0.16);
  margin-bottom: 18px;
  font-size: 24px;
}

.about-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: stretch;
}

.glass-card {
  padding: 30px;
}

.quote {
  font-size: 24px;
  line-height: 1.35;
  margin-bottom: 18px;
}

.list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.list-item {
  display: flex;
  gap: 12px;
  color: var(--muted);
}

.list-item b {
  color: var(--text);
}

.check {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(85, 214, 194, 0.15);
  color: var(--accent-2);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.price-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  background:
    linear-gradient(145deg, rgba(157, 124, 255, 0.22), rgba(85, 214, 194, 0.12)),
    var(--panel);
  border-color: rgba(157, 124, 255, 0.45);
}

.price {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin: 18px 0 6px;
}

.price span {
  font-size: 16px;
  color: var(--muted);
  font-weight: 600;
}

.label {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 209, 102, 0.14);
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.review-card {
  min-height: 240px;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.author {
  margin-top: 18px;
  font-weight: 850;
}

.session-timeline {
  display: grid;
  gap: 16px;
}

.step-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
}

.step-num {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(85, 214, 194, 0.15);
  color: var(--accent-2);
  font-weight: 900;
  font-size: 22px;
}

.form-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.form-card {
  padding: 28px;
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

select option {
  color: #111;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(85, 214, 194, 0.7);
  box-shadow: 0 0 0 4px rgba(85, 214, 194, 0.1);
}

.contact-card a {
  display: inline-block;
  font-weight: 850;
  word-break: break-word;
}

.cta {
  margin: 52px 0 18px;
  padding: 42px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(157, 124, 255, 0.3), rgba(85, 214, 194, 0.16)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta p {
  color: var(--muted);
  font-size: 18px;
}

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

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.mobile-note {
  display: none;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-panel,
  .grid-2,
  .grid-3,
  .features,
  .price-grid,
  .review-grid,
  .contact-grid,
  .form-wrap,
  .stats {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .mobile-note {
    display: block;
  }

  .hero,
  .page-hero {
    padding-top: 52px;
  }

  .floating-note {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
  }

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


.playlist-section {
  padding-top: 26px;
}

.playlist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.playlist-video-card {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow);
}

.video-box.compact {
  border-radius: 18px;
}

@media (max-width: 980px) {
  .playlist-grid {
    grid-template-columns: 1fr;
  }
}


.brand-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(157, 124, 255, 0.28));
}

.top-banner {
  border-bottom: 1px solid var(--border);
  background: #0d1020;
}

.top-banner a {
  display: block;
}

.top-banner img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  display: block;
}

.logo-image-panel {
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 20% 10%, rgba(157, 124, 255, 0.22), transparent 42%),
    radial-gradient(circle at 80% 20%, rgba(85, 214, 194, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.06);
  border-radius: 32px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}

.logo-image-panel img {
  width: min(100%, 620px);
  height: auto;
  filter: drop-shadow(0 24px 52px rgba(0, 0, 0, 0.32));
}

@media (max-width: 980px) {
  .top-banner img {
    max-height: 180px;
  }
}


.video-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(85, 214, 194, 0.12);
  border: 1px solid rgba(85, 214, 194, 0.25);
  color: var(--soft);
  font-size: 14px;
  font-weight: 750;
}

.video-date time {
  color: var(--accent-2);
  font-weight: 850;
}

.video-date::before {
  content: "⏱";
}


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

.prices-expanded .price-card {
  min-height: 0;
}

.requirements-card {
  margin-top: 28px;
}

@media (max-width: 980px) {
  .prices-expanded {
    grid-template-columns: 1fr;
  }
}


.course-program-section {
  padding-top: 20px;
}

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

.course-card {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.course-num {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(157, 124, 255, 0.16);
  color: var(--accent-2);
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 16px;
}

.course-card ul {
  margin-top: 16px;
  padding-left: 20px;
  color: var(--muted);
}

.course-card li {
  margin-bottom: 8px;
}

.course-note {
  margin-top: 24px;
}

@media (max-width: 980px) {
  .course-grid {
    grid-template-columns: 1fr;
  }
}


.alt-video-platforms {
  padding-top: 24px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.platform-card {
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 20% 10%, rgba(157, 124, 255, 0.18), transparent 44%),
    rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.platform-card p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .platform-grid {
    grid-template-columns: 1fr;
  }
}


.contact-button-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 22px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(85, 214, 194, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.contact-btn-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(157, 124, 255, 0.18);
  color: var(--accent-2);
}

.contact-btn b {
  display: block;
  color: var(--text);
  line-height: 1.2;
}

.contact-btn small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
  word-break: break-word;
}

.email-btn .contact-btn-icon {
  background: rgba(255, 209, 102, 0.15);
  color: var(--gold);
}

.telegram-btn .contact-btn-icon {
  background: rgba(85, 214, 194, 0.16);
  color: var(--accent-2);
}

.whatsapp-btn .contact-btn-icon {
  background: rgba(64, 220, 120, 0.16);
  color: #8ff5b0;
}

.imo-btn .contact-btn-icon {
  background: rgba(157, 124, 255, 0.18);
  color: #c7b8ff;
}


.hero-platform-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}







.platform-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  border-width: 1px;
  border-style: solid;
  border-radius: 16px;
  min-height: 54px;
  padding: 14px 18px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

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

.platform-btn span {
  color: inherit;
}

.platform-icon-wrap {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.btn-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.vk-btn {
  background: linear-gradient(135deg, #0b72ff 0%, #2486ff 55%, #4a9bff 100%);
  color: #ffffff;
  border-color: rgba(110, 173, 255, 0.58);
  box-shadow: 0 14px 36px rgba(21, 112, 255, 0.25);
}

.vk-btn:hover {
  background: linear-gradient(135deg, #0964e2 0%, #1b7af2 55%, #3f90f4 100%);
  border-color: rgba(150, 198, 255, 0.82);
  box-shadow: 0 18px 40px rgba(21, 112, 255, 0.32);
  color: #ffffff;
}

.vk-icon-wrap {
  background: rgba(255,255,255,0.18);
}

.vk-btn-icon {
  width: 22px;
  height: 22px;
  border-radius: 7px;
}

.dzen-btn {
  background: linear-gradient(135deg, #121212 0%, #1f1f21 55%, #2a2a2d 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.dzen-btn:hover {
  background: linear-gradient(135deg, #000000 0%, #161616 55%, #242427 100%);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
  color: #ffffff;
}

.dzen-icon-wrap {
  background: rgba(255,255,255,0.12);
}

.dzen-btn-icon {
  width: 22px;
  height: 22px;
  border-radius: 7px;
}

.large-platform-btn {
  min-width: 220px;
}

@media (max-width: 980px) {
  .platform-btn,
  .large-platform-btn {
    width: 100%;
  }
}
