:root {
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gold-dark: #8a6d2b;
  --bg-deep: #0a0a0f;
  --bg-card: #12121c;
  --bg-section: #0e0e16;
  --text-primary: #e8e4dc;
  --text-muted: #9a9488;
  --text-dim: #6b6660;
  --accent-purple: #3d2a5c;
  --accent-violet: #5c3d7a;
  --border: rgba(201, 168, 76, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans", sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  font-weight: 300;
  line-height: 1.7;
}

/* ─── Cosmic Background ─── */
.cosmic-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 80% 60% at 20% 10%,
      rgba(61, 42, 92, 0.25) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 50% at 80% 80%,
      rgba(92, 61, 42, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 40% 40% at 50% 50%,
      rgba(201, 168, 76, 0.04) 0%,
      transparent 50%
    );
}

/* ─── Stars ─── */
.stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: twinkle var(--dur) ease-in-out infinite alternate;
  opacity: 0;
}
@keyframes twinkle {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: var(--max-o);
    transform: scale(1);
  }
}

/* ─── Layout ─── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

section {
  padding: 100px 0;
  position: relative;
}

/* ─── Navigation ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s;
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-logo span {
  color: var(--text-muted);
  font-weight: 300;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  font-family: "Raleway", sans-serif;
}
.nav-links a:hover {
  color: var(--gold);
}

/* ─── Hamburger ─── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  width: 32px;
  height: 28px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  position: absolute;
  left: 4px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger span:nth-child(1) {
  top: 6px;
}
.hamburger span:nth-child(2) {
  top: 13px;
}
.hamburger span:nth-child(3) {
  top: 20px;
}
.hamburger.active span:nth-child(1) {
  top: 13px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: 13px;
  transform: rotate(-45deg);
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 50%;
  animation: pulse-ring 6s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  border: 1px solid rgba(201, 168, 76, 0.05);
  border-radius: 50%;
  animation: pulse-ring 6s ease-in-out 1.5s infinite;
}
@keyframes pulse-ring {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 0.4;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}

/* ─── Tarot symbol ─── */
.tarot-symbol {
  width: 80px;
  height: 120px;
  margin: 0 auto 40px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  position: relative;
  opacity: 0;
  animation: fadeUp 1s 0.15s forwards;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tarot-symbol::before {
  content: "☽";
  font-size: 2rem;
  color: var(--gold);
}
.tarot-symbol::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 6px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── CTA Button ─── */
.cta-btn {
  display: inline-block;
  padding: 18px 52px;
  font-family: "Raleway", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.3);
}
.cta-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s;
}
.cta-btn:hover::after {
  left: 100%;
}

/* ghost variant — used for secondary action in hero */
.cta-btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.cta-btn--ghost:hover {
  background: rgba(201, 168, 76, 0.08);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.15);
}
.cta-btn--ghost::after {
  display: none;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}
.hero-actions .cta-btn {
  opacity: 1;
  animation: none;
}

/* ─── Scroll indicator ─── */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeUp 1s 1.6s forwards;
}
.scroll-hint span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ─── Section Title ─── */
.section-title {
  text-align: center;
  margin-bottom: 64px;
}
.section-title h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 12px;
}
.section-title h2 em {
  font-style: italic;
  color: var(--gold);
}
.section-title p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ─── Divider ─── */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 40px;
  max-width: 200px;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider span {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ─── About Section ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.95) contrast(1.05);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-image:hover img {
  transform: scale(1.03);
}
.about-image::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  pointer-events: none;
  z-index: 1;
}
.about-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(10, 10, 15, 0.4) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.about-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 20px;
}
.about-text h3 em {
  color: var(--gold);
  font-style: italic;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.stat-item strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 400;
}
.stat-item span {
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─── YouTube Section ─── */
.youtube-section {
  overflow: hidden;
}
.youtube-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.youtube-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 100px;
  margin-bottom: 24px;
}
.youtube-badge span {
  font-family: "Raleway", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}
.youtube-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.3;
}
.youtube-content h3 em {
  color: var(--gold);
  font-style: italic;
}
.youtube-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.8;
}
.youtube-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.yt-stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1.2;
}
.yt-stat span {
  color: var(--text-dim);
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.youtube-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  text-decoration: none;
  transition: all 0.3s;
}
.youtube-btn:hover {
  background: var(--gold);
  color: var(--bg-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.2);
}

/* YouTube Preview */
.youtube-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.yt-main-video {
  display: block;
  aspect-ratio: 16/9;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.yt-main-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.4s;
}
.yt-main-video:hover img {
  transform: scale(1.03);
  filter: brightness(0.7);
}
.yt-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.3s;
}
.yt-main-video:hover .yt-play-overlay {
  background: rgba(0, 0, 0, 0.45);
}
.yt-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(10, 10, 15, 0.7);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  padding-left: 3px;
}
.yt-main-video:hover .yt-play-btn {
  background: rgba(201, 168, 76, 0.2);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.2);
}
.yt-video-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.yt-mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.yt-mini-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}
.yt-mini-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 48px;
  border-radius: 2px;
  overflow: hidden;
}
.yt-mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.yt-mini-card span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  transition: color 0.3s;
}
.yt-mini-card:hover span {
  color: var(--gold);
}

/* ─── Program ─── */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.program-card {
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.4s;
}
.program-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.program-card .module-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: rgba(201, 168, 76, 0.15);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 16px;
}
.program-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.program-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.8;
}

/* ─── What you'll learn ─── */
.learn-list {
  max-width: 700px;
  margin: 0 auto;
}
.learn-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.learn-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
}
.learn-item h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.learn-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ─── Boosty (hidden, kept for future use) ─── */
#boosty {
  display: none;
}

/* ─── Testimonials (base styles) ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}
.testimonial-card {
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: "„";
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  color: rgba(201, 168, 76, 0.2);
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}
.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-style: italic;
  margin-bottom: 20px;
  padding-top: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.author-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
}
.author-info span {
  color: var(--text-dim);
  font-size: 0.78rem;
}

/* ─── Reviews page: screenshots ─── */
.reviews-screenshots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.review-screenshot {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s;
}
.review-screenshot:hover {
  border-color: rgba(201, 168, 76, 0.3);
}
.review-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── Pricing ─── */
.pricing-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 750px;
  margin: 0 auto;
}
.price-card {
  padding: 48px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(
    180deg,
    rgba(201, 168, 76, 0.06) 0%,
    var(--bg-card) 60%
  );
}
.price-card.featured::before {
  content: "Популярный";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-deep);
  font-family: "Raleway", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
}
.price-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.price-card .price {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  margin: 20px 0;
}
.price-card .price small {
  font-size: 1rem;
  color: var(--text-muted);
}
.price-features {
  list-style: none;
  margin: 24px 0 32px;
  text-align: left;
  flex: 1;
}
.price-features li {
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-features li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.6rem;
}
.price-btn {
  display: block;
  width: 100%;
  padding: 16px;
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  text-align: center;
}
.price-btn:hover,
.price-card.featured .price-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-deep);
  border-color: transparent;
}
.price-card.featured .price-btn:hover {
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
  transform: translateY(-2px);
}

/* ─── Services (visitka) ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}
.service-card {
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.4s;
}
.service-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.service-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 24px;
}
.service-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.service-card > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
  flex: 1;
}
.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.service-duration {
  font-family: "Raleway", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.service-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 400;
}
.services-cta {
  text-align: center;
}

/* ─── Courses ─── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.course-card {
  text-decoration: none;
  color: inherit;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  display: block;
}
.course-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 0% 0%,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.course-card:not(.course-card--soon):hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
}
.course-card:not(.course-card--soon):hover::before {
  opacity: 1;
}
.course-card__inner {
  padding: 36px 32px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.course-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 14px;
  font-family: "Raleway", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg-deep);
  margin-bottom: 24px;
}
.course-tag--muted {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
}
.course-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}
.course-card h4 em {
  font-style: italic;
  color: var(--gold);
}
.course-card__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.course-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.course-features li {
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.course-features li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.55rem;
}
.course-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  transition: gap 0.3s;
}
.course-card:not(.course-card--soon):hover .course-link {
  gap: 16px;
}
.course-link--muted {
  color: var(--text-dim);
}
.course-card--soon {
  opacity: 0.65;
  cursor: default;
}

/* ─── Boosty ─── */
.boosty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 0 auto 56px;
}
.boosty-card {
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.4s;
  position: relative;
}
.boosty-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
}
.boosty-card--featured {
  border-color: var(--gold);
  background: linear-gradient(
    180deg,
    rgba(201, 168, 76, 0.06) 0%,
    var(--bg-card) 60%
  );
}
.boosty-card--featured::before {
  content: "Популярный";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-deep);
  font-family: "Raleway", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
}
.boosty-tier {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.boosty-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold);
  margin: 16px 0 24px;
  line-height: 1;
}
.boosty-price small {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
}
.boosty-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

/* ─── Contact ─── */
.contact-section {
  text-align: center;
  padding: 120px 0;
}
.contact-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 16px;
}
.contact-section h2 em {
  font-style: italic;
  color: var(--gold);
}
.contact-lead {
  color: var(--text-muted);
  margin: 0 auto 56px;
  max-width: 480px;
  font-size: 0.95rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.4s;
}
.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  background: linear-gradient(
    180deg,
    rgba(201, 168, 76, 0.05) 0%,
    var(--bg-card) 100%
  );
}
.contact-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.contact-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 500;
}
.contact-card span {
  font-family: "Raleway", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}
.faq-q:hover {
  color: var(--gold);
}
.faq-q::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 200px;
}
.faq-a p {
  padding-bottom: 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ─── Final CTA ─── */
.final-cta {
  text-align: center;
  padding: 120px 0;
  position: relative;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}
.final-cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  margin-bottom: 16px;
  margin-top: 40px;
}
.final-cta h2 em {
  color: var(--gold);
  font-style: italic;
}
.final-cta p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 40px;
  font-size: 0.95rem;
}
.final-cta .cta-btn {
  opacity: 1;
  animation: none;
}

/* ─── Reviews Slider ─── */
.reviews-slider {
  position: relative;
  margin: 0 auto 56px;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviews-slider__viewport {
  overflow: hidden;
  flex: 1;
  border-radius: 4px;
}
.reviews-slider__track {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: grab;
  user-select: none;
  padding: 8px 0;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}
.reviews-slider__track.grabbing {
  cursor: grabbing;
  transition: none;
}
.reviews-slider__slide {
  flex: 0 0 auto;
  width: 220px;
  max-height: 420px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color 0.3s,
    transform 0.3s;
  background: var(--bg-card);
}
.reviews-slider__slide:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-3px);
}
.reviews-slider__slide img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 418px;
  object-fit: contain;
  pointer-events: none;
}
.reviews-slider__arrow {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 2;
}
.reviews-slider__arrow:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}
.reviews-slider__arrow:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

/* ─── Lightbox ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 5, 10, 0.92);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
}
.lightbox.active {
  display: flex;
  opacity: 1;
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
  transition: color 0.3s;
}
.lightbox__close:hover {
  color: var(--gold);
}
.lightbox__img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 6px;
  border: 1px solid var(--border);
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
  transition: opacity 0.25s;
}
.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(18, 18, 28, 0.7);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 2;
}
.lightbox__arrow:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}
.lightbox__arrow--left {
  left: 16px;
}
.lightbox__arrow--right {
  right: 16px;
}
.lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-dim);
}

/* ─── Footer ─── */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
footer p {
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 1px;
}
footer a {
  color: var(--gold);
  text-decoration: none;
}

/* ─── Animations on scroll ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Tablet ─── */
@media (max-width: 960px) {
  .youtube-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .youtube-preview {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-links.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 15, 0.97);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .hamburger {
    display: block;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image {
    max-height: 400px;
  }
  .about-stats {
    gap: 24px;
  }
  .youtube-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .youtube-content {
    text-align: center;
  }
  .youtube-content h3 {
    font-size: 1.6rem;
  }
  .youtube-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .youtube-stats {
    gap: 20px;
    justify-content: center;
  }
  .yt-stat strong {
    font-size: 1.6rem;
  }
  .youtube-btn {
    margin: 0 auto;
  }
  .yt-mini-thumb {
    width: 64px;
    height: 44px;
  }
  .yt-mini-card span {
    font-size: 0.72rem;
  }
  section {
    padding: 72px 0;
  }
  .hero::before,
  .hero::after {
    display: none;
  }
  .pricing-wrapper {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .services-grid,
  .courses-grid,
  .boosty-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 420px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
    margin: 0 auto;
  }
  .hero-actions .cta-btn {
    width: 100%;
  }
  .contact-section {
    padding: 80px 0;
  }

  /* Slider mobile */
  .reviews-slider__arrow {
    display: none;
  }
  .reviews-slider {
    gap: 0;
  }
  .reviews-slider__slide {
    width: 180px;
    max-height: 340px;
  }
  .reviews-slider__slide img {
    max-height: 338px;
  }
  .lightbox__arrow {
    width: 36px;
    height: 36px;
  }
  .lightbox__arrow--left {
    left: 8px;
  }
  .lightbox__arrow--right {
    right: 8px;
  }
}
