/* ============================================================
   ActiveClass — main stylesheet (ITCSS layered, atomic naming)
   1. Settings  → :root tokens
   2. Generic   → normalize-style reset
   3. Elements  → bare HTML
   4. Objects   → layout primitives (.l-, .container)
   5. Components→ reusable units (cards, modules)
   6. Utilities → trumps
   ============================================================ */
:root {
  --bg-primary: #141414;
  --bg-secondary: #1c1c1c;
  --bg-tertiary: #242424;
  --bg-quaternary: #2d2d2d;

  --accent: #bd3d65;
  --accent-hover: #d64573;
  --accent-soft: rgba(189, 61, 101, 0.15);

  --header-bg: #a5d2f2;
  --header-bg-darker: #88b9dd;
  --header-text: #141414;

  --text-primary: #ffffff;
  --text-secondary: #c0c0c0;
  --text-muted: #888888;
  --text-on-light: #1c1c1c;

  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.18);
  --space-3xs: 4px;
  --space-2xs: 8px;
  --space-xs: 12px;
  --space-sm: 18px;
  --space-md: 28px;
  --space-lg: 44px;
  --space-xl: 68px;
  --space-2xl: 96px;
  --space-3xl: 128px;

  --container-w: 1200px;
  --sidebar-w: 250px;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --t-base: 1rem;
  --t-sm: 0.875rem;
  --t-xs: 0.78125rem;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote {
  margin: 0;
}
ul,
ol {
  padding: 0;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
a {
  color: inherit;
}
body {
  font-family:
    "Lato",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 400;
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-primary);
  min-height: 100vh;
}

h1 {
  font-family: "Lato", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h2 {
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
}
h3 {
  font-family: "Lato", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.35;
}
h4 {
  font-family: "Lato", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
}
p {
  font-size: 1rem;
  line-height: 1.65;
}
a {
  text-decoration: none;
}
a:hover {
  color: var(--accent);
}

::selection {
  background: var(--accent);
  color: #fff;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 12px 16px;
  background: var(--accent);
  color: #fff;
  z-index: 9999;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}
.l-app {
  position: relative;
  min-height: 100vh;
}

.l-main {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
  padding-bottom: var(--space-2xl);
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.module {
  padding: var(--space-2xl) 0;
}
.module:nth-child(odd) {
  background: var(--bg-tertiary);
}
.module:nth-child(even) {
  background: var(--bg-secondary);
}

.module-header {
  max-width: 720px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}
.module-header__eyebrow {
  display: inline-block;
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: var(--space-2xs);
}
.module-header__title {
  margin-bottom: var(--space-sm);
}
.module-header__lead {
  color: var(--text-secondary);
  font-size: 1.0625rem;
}
.sidebar {
  background: var(--header-bg);
  color: var(--header-text);
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  width: var(--sidebar-w);
  height: 100vh;
  overflow-y: auto;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.28s ease;
}
.sidebar.mm-open {
  transform: translateX(0);
}
[data-mm-overlay] {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 900;
}
[data-mm-overlay].mm-visible {
  display: block;
}
@media (min-width: 768px) {
  .sidebar {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    right: auto !important;
    width: var(--sidebar-w) !important;
    height: 100vh !important;
    background: var(--header-bg) !important;
    flex-direction: column !important;
    padding: 32px 22px !important;
    overflow-y: auto !important;
    transform: none !important;
    border-right: 1px solid rgba(20, 20, 20, 0.12);
    z-index: 50;
  }
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--header-text);
  font-weight: 900;
  font-size: 1.375rem;
  margin-bottom: 4px;
}
.sidebar-logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--accent);
  color: #fff;
  border-radius: 9px;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.5px;
}
.sidebar-logo__name {
  letter-spacing: -0.01em;
}

.sidebar-tagline {
  font-size: var(--t-xs);
  color: rgba(20, 20, 20, 0.72);
  margin-bottom: 26px;
  line-height: 1.4;
}

.sidebar-list {
  list-style: none;
  flex: 1 0 auto;
}
.sidebar-item + .sidebar-item {
  margin-top: 2px;
}
.sidebar-link {
  display: block;
  padding: 11px 14px;
  border-radius: var(--r-md);
  color: var(--header-text);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.sidebar-link:hover {
  background: rgba(20, 20, 20, 0.08);
  color: var(--accent);
}
.sidebar-link[aria-current="page"] {
  background: var(--accent);
  color: #fff;
}

.sidebar-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-meta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 20, 20, 0.15);
  font-size: var(--t-xs);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar-phone {
  color: var(--header-text);
  font-weight: 700;
}
.sidebar-phone:hover {
  color: var(--accent);
}
.sidebar-hours {
  color: rgba(20, 20, 20, 0.7);
}

.sidebar-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(20, 20, 20, 0.08);
  color: var(--header-text);
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
}
@media (min-width: 768px) {
  .sidebar-close {
    display: none;
  }
}
.topbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  position: fixed;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  background: var(--header-bg);
  border: 1px solid rgba(20, 20, 20, 0.18);
  border-radius: 10px;
  cursor: pointer;
  z-index: 1001;
  padding: 11px;
}
.topbar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--header-text);
  border-radius: 2px;
}
@media (max-width: 767.98px) {
  .topbar-toggle {
    display: flex;
  }
  .l-main {
    margin-left: 0;
    padding-top: 68px;
  }
  .sidebar {
    padding: 60px 24px 24px;
  }
}
.btn {
  display: inline-block;
  padding: 13px 26px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}
.btn-ghost:hover {
  background: rgba(20, 20, 20, 0.08);
}
.btn-light {
  background: #fff;
  color: var(--text-on-light);
  border-color: #fff;
}
.btn-light:hover {
  background: var(--header-bg);
  border-color: var(--header-bg);
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1.0625rem;
}
.hero-video-module {
  position: relative;
  min-height: 600px;
  background-image:
    linear-gradient(
      135deg,
      rgba(20, 20, 20, 0.55) 0%,
      rgba(20, 20, 20, 0.85) 100%
    ),
    url("/static/images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: var(--space-2xl) 0;
}
.hero-video-module__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 30%,
    rgba(189, 61, 101, 0.18) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.hero-video-module__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.hero-video-module__copy {
  max-width: 600px;
}
.hero-video-module__eyebrow {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-video-module__title {
  color: #fff;
  margin-bottom: 22px;
}
.hero-video-module__title em {
  color: var(--accent);
  font-style: normal;
}
.hero-video-module__lead {
  font-size: 1.1875rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.55;
}
.hero-video-module__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-video-module__trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--text-secondary);
  font-size: var(--t-sm);
}
.hero-video-module__trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}
.hero-player::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}
.hero-player__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 2;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.18),
    0 14px 30px rgba(0, 0, 0, 0.6);
}
.hero-player__duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: var(--t-xs);
  font-weight: 700;
  z-index: 2;
}
.hero-player__meta {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
}
.hero-player__title {
  color: #fff;
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 4px;
}
.hero-player__byline {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--t-xs);
}
.categories-module-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.category-card {
  flex: 1 1 220px;
  background: var(--bg-quaternary);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.category-card__icon {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 22px;
  font-weight: 900;
}
.category-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
}
.category-card__lead {
  color: var(--text-secondary);
  font-size: var(--t-sm);
  line-height: 1.5;
  flex: 1 0 auto;
}
.category-card__meta {
  font-size: var(--t-xs);
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}
.featured-module__featured {
  margin-bottom: var(--space-lg);
}

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

.video-card {
  background: var(--bg-quaternary);
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.video-card:hover {
  border-color: var(--accent);
}

.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}
.video-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(0, 0, 0, 0.55) 100%
  );
}
.video-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
}
.video-card:hover .video-card__play {
  opacity: 1;
  visibility: visible;
}
.video-card__duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.82);
  color: #fff;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: var(--t-xs);
  font-weight: 700;
  z-index: 2;
}
.video-card__lock {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(189, 61, 101, 0.92);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  z-index: 2;
}
.video-card__body {
  padding: 14px 16px 18px;
}
.video-card__title {
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.35;
  margin-bottom: 6px;
}
.video-card__byline {
  color: var(--text-secondary);
  font-size: var(--t-xs);
  margin-bottom: 4px;
}
.video-card__views {
  color: var(--text-muted);
  font-size: var(--t-xs);
}

@media (max-width: 1100px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 720px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 460px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}
.metrics-module-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.metric {
  flex: 1 1 220px;
  text-align: center;
  padding: 30px 22px;
  background: var(--bg-quaternary);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.metric__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 22px;
  font-weight: 900;
}
.metric__number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.metric__label {
  color: var(--text-secondary);
  font-size: var(--t-sm);
}
.about-module-grid {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
  flex-wrap: wrap;
}
.about-module__copy {
  flex: 1 1 360px;
}
.about-module__copy h2 {
  margin-bottom: var(--space-sm);
}
.about-module__copy p {
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}
.about-module__list {
  list-style: none;
  margin: var(--space-sm) 0 var(--space-md);
}
.about-module__list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--text-secondary);
}
.about-module__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}
.about-module__media {
  flex: 1 1 360px;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background-image: url("/static/images/about.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}
.instructors-module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1100px) {
  .instructors-module-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .instructors-module-grid {
    grid-template-columns: 1fr;
  }
}

.instructor-card {
  background: var(--bg-quaternary);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.instructor-card__photo {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
}
.instructor-card__body {
  padding: 18px 20px 22px;
}
.instructor-card__name {
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.instructor-card__role {
  color: var(--accent);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 10px;
}
.instructor-card__bio {
  color: var(--text-secondary);
  font-size: var(--t-sm);
  line-height: 1.55;
  margin-bottom: 12px;
}
.instructor-card__meta {
  display: flex;
  gap: 14px;
  font-size: var(--t-xs);
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.features-module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) {
  .features-module-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .features-module-grid {
    grid-template-columns: 1fr;
  }
}

.feature {
  padding: 26px 24px;
  background: var(--bg-quaternary);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 16px;
}
.feature__title {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: 700;
}
.feature__lead {
  color: var(--text-secondary);
  font-size: var(--t-sm);
  line-height: 1.55;
}
.pricing-module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .pricing-module-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .pricing-module-grid {
    grid-template-columns: 1fr;
  }
}

.plan {
  background: var(--bg-quaternary);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan--popular {
  border-color: var(--accent);
  box-shadow:
    0 0 0 1px var(--accent),
    0 25px 50px rgba(189, 61, 101, 0.18);
  transform: translateY(-6px);
}
.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 5px 14px;
  font-size: var(--t-xs);
  font-weight: 700;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.plan__name {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 6px;
  font-weight: 700;
}
.plan__sub {
  color: var(--text-muted);
  font-size: var(--t-sm);
  margin-bottom: 20px;
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.plan__price-amount {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}
.plan__price-currency {
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 1.125rem;
}
.plan__price-period {
  color: var(--text-muted);
  font-size: var(--t-sm);
}
.plan__save {
  color: var(--accent);
  font-weight: 700;
  font-size: var(--t-xs);
  margin-bottom: 18px;
  min-height: 18px;
}
.plan__list {
  list-style: none;
  margin-bottom: 26px;
  flex: 1 0 auto;
}
.plan__list li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-secondary);
  font-size: var(--t-sm);
  border-bottom: 1px solid var(--border);
}
.plan__list li:last-child {
  border-bottom: 0;
}
.plan__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--accent);
  font-weight: 900;
}
.cancellation-module-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
@media (max-width: 1100px) {
  .cancellation-module-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .cancellation-module-steps {
    grid-template-columns: 1fr;
  }
}
.step {
  background: var(--bg-quaternary);
  padding: 26px 22px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 16px;
  right: 18px;
  color: var(--accent);
  font-weight: 900;
  font-size: 1.5rem;
  opacity: 0.4;
}
.step__title {
  color: #fff;
  margin-bottom: 6px;
  font-weight: 700;
}
.step__lead {
  color: var(--text-secondary);
  font-size: var(--t-sm);
}

.cancellation-module__note {
  margin-top: var(--space-md);
  background: var(--bg-quaternary);
  border-left: 3px solid var(--accent);
  padding: 18px 22px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--text-secondary);
  font-size: var(--t-sm);
}
.payment-module-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.payment-method {
  flex: 0 1 180px;
  background: var(--bg-quaternary);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 14px;
  text-align: center;
}
.payment-method__icon {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 6px;
}
.payment-method__name {
  color: #fff;
  font-weight: 700;
  font-size: var(--t-sm);
}
.payment-method__lead {
  color: var(--text-muted);
  font-size: var(--t-xs);
  margin-top: 4px;
}
.payment-module__security {
  margin-top: var(--space-md);
  text-align: center;
  color: var(--text-secondary);
  font-size: var(--t-sm);
}
.payment-module__security strong {
  color: #fff;
}
.faq-module-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 22px 50px 22px 0;
  color: #fff;
  font-weight: 700;
  font-size: 1.0625rem;
  cursor: pointer;
  position: relative;
}
.faq-item__q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 900;
  color: var(--accent);
}
.faq-item.is-open .faq-item__q::after {
  content: "−";
}
.faq-item__a {
  display: none;
  padding: 0 0 22px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 720px;
}
.faq-item.is-open .faq-item__a {
  display: block;
}
.registration-module {
  background: linear-gradient(135deg, var(--accent) 0%, #8b2848 100%);
  padding: var(--space-xl) 0;
}
.registration-module .module-header__eyebrow {
  color: rgba(255, 255, 255, 0.85);
}
.registration-module h2 {
  color: #fff;
}
.registration-module p {
  color: rgba(255, 255, 255, 0.92);
}
.registration-module__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.registration-module__copy {
  flex: 1 1 480px;
}
.registration-module__copy h2 {
  margin-bottom: 14px;
}
.registration-module__cta {
  flex: 0 0 auto;
}
.contact-module-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-xl);
}
@media (max-width: 900px) {
  .contact-module-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info {
  color: var(--text-secondary);
}
.contact-info h3 {
  color: #fff;
  margin-bottom: 14px;
}
.contact-info p {
  margin-bottom: var(--space-sm);
}
.contact-info__row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.contact-info__row-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: 0 0 auto;
}
.contact-info__row-label {
  color: var(--text-muted);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-info__row-value {
  color: #fff;
  font-weight: 700;
}
.form {
  background: var(--bg-quaternary);
  padding: 32px 30px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.form-row {
  margin-bottom: 18px;
}
.form-row label {
  display: block;
  color: #fff;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: var(--t-sm);
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  color: #fff;
  font-size: 1rem;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--accent);
  border-color: var(--accent);
}
.form-row textarea {
  min-height: 130px;
  resize: vertical;
}
.form-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-secondary);
  font-size: var(--t-sm);
}
.form-checkbox input {
  width: auto;
  margin-top: 4px;
}
.form-error {
  color: #ff6b8a;
  background: rgba(189, 61, 101, 0.12);
  padding: 10px 14px;
  border-radius: var(--r-md);
  margin-bottom: 16px;
  font-size: var(--t-sm);
}
.form-success {
  color: #8ee6a3;
  background: rgba(46, 160, 67, 0.14);
  padding: 10px 14px;
  border-radius: var(--r-md);
  margin-bottom: 16px;
  font-size: var(--t-sm);
}
.form-note {
  color: var(--text-muted);
  font-size: var(--t-xs);
  margin-top: 14px;
}
.auth-shell {
  max-width: 480px;
  margin: var(--space-xl) auto;
  padding: 0 24px;
}
.auth-shell h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.auth-shell p.lead {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}
.auth-shell .form {
  padding: 30px 26px;
}
.auth-foot {
  text-align: center;
  margin-top: var(--space-md);
  color: var(--text-secondary);
  font-size: var(--t-sm);
}
.auth-foot a {
  color: var(--accent);
  font-weight: 700;
}
.page-hero {
  padding: var(--space-xl) 0;
  background:
    linear-gradient(
      135deg,
      rgba(20, 20, 20, 0.55) 0%,
      rgba(20, 20, 20, 0.85) 100%
    ),
    url("/static/images/hero.jpg") center/cover fixed;
  text-align: center;
}
.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 14px;
}
.page-hero p {
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.0625rem;
}
.blog-module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1000px) {
  .blog-module-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .blog-module-grid {
    grid-template-columns: 1fr;
  }
}
.post-card {
  background: var(--bg-quaternary);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.post-card__image {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}
.post-card__body {
  padding: 22px 24px 24px;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
.post-card__meta {
  display: flex;
  gap: 14px;
  font-size: var(--t-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 10px;
}
.post-card__category {
  color: var(--accent);
}
.post-card__title {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.3;
}
.post-card__excerpt {
  color: var(--text-secondary);
  font-size: var(--t-sm);
  flex: 1 0 auto;
  margin-bottom: 14px;
}
.post-card__more {
  color: var(--accent);
  font-weight: 700;
  font-size: var(--t-sm);
}
.post-article {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-xl) 24px;
}
.post-article__back {
  color: var(--accent);
  font-weight: 700;
  font-size: var(--t-sm);
  margin-bottom: 18px;
  display: inline-block;
}
.post-article__meta {
  color: var(--text-muted);
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.post-article h1 {
  margin-bottom: 18px;
  line-height: 1.2;
}
.post-article__lead {
  font-size: 1.1875rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.55;
}
.post-article__media {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border-radius: var(--r-lg);
  margin-bottom: var(--space-md);
}
.post-article__content p {
  color: var(--text-secondary);
  margin-bottom: 18px;
}
.post-article__content h2 {
  color: #fff;
  margin: var(--space-md) 0 14px;
  font-size: 1.5rem;
}
.post-article__content h3 {
  color: #fff;
  margin: var(--space-sm) 0 10px;
}
.post-article__content ul {
  list-style: none;
  margin-bottom: 18px;
}
.post-article__content ul li {
  position: relative;
  padding-left: 20px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.post-article__content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}
.dash-locked {
  max-width: 600px;
  margin: var(--space-xl) auto;
  padding: 50px 36px;
  background: var(--bg-quaternary);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
}
.dash-locked__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  font-weight: 900;
}
.site-footer {
  background: #0e0e0e;
  margin-left: var(--sidebar-w);
  padding: var(--space-xl) 0 var(--space-md);
  border-top: 1px solid var(--border);
}
@media (max-width: 767.98px) {
  .site-footer {
    margin-left: 0;
  }
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-md);
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 900;
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.footer-logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--accent);
  border-radius: 8px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 900;
}
.footer-about {
  color: var(--text-secondary);
  font-size: var(--t-sm);
  margin-bottom: 14px;
  max-width: 360px;
}
.footer-contact {
  color: var(--text-secondary);
  font-size: var(--t-sm);
  line-height: 1.7;
}
.footer-contact a:hover {
  color: var(--accent);
}
.footer-title {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--t-xs);
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-list {
  list-style: none;
}
.footer-list li {
  margin-bottom: 10px;
}
.footer-list a {
  color: var(--text-secondary);
  font-size: var(--t-sm);
}
.footer-list a:hover {
  color: var(--accent);
}
.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: var(--t-xs);
}
.footer-disclaimer {
  margin-top: 10px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 800px;
}
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(18px) saturate(0.6);
  -webkit-backdrop-filter: blur(18px) saturate(0.6);
  animation: vm-fade 280ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
}
.video-modal__player {
  position: relative;
  width: 100%;
  max-width: 820px;
  aspect-ratio: 16 / 9;
  background: rgba(10, 10, 10, 0.85);
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
  animation: vm-pop 280ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.video-modal__play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
  animation: vm-pulse 2.5s ease-in-out infinite;
}
.video-modal__play-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translate(-50%, -50%) scale(1.1);
}
.video-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  cursor: pointer;
  z-index: 4;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.video-modal__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 0 16px 10px;
  z-index: 3;
}
.video-modal__controls-track {
  flex: 1 0 auto;
  height: 3px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  position: relative;
}
.video-modal__controls-track::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18%;
  height: 100%;
  background: #fff;
  border-radius: 2px;
}
.video-modal__title {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  padding: 16px 60px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    transparent 100%
  );
  z-index: 2;
}
@keyframes vm-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes vm-pop {
  from {
    transform: scale(0.92);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes vm-pulse {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
  }
  50% {
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.35);
  }
}

body.no-scroll {
  overflow: hidden;
}
.u-text-center {
  text-align: center;
}
.u-mt-md {
  margin-top: var(--space-md);
}
.u-mt-lg {
  margin-top: var(--space-lg);
}
.u-mb-sm {
  margin-bottom: var(--space-sm);
}
.u-block {
  display: block;
}
.u-flex {
  display: flex;
}
.u-gap-sm {
  gap: var(--space-sm);
}
.u-mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.u-max-720 {
  max-width: 720px;
}
@media (max-width: 1100px) {
  .hero-video-module__inner {
    grid-template-columns: 1fr;
  }
  .hero-video-module {
    background-attachment: scroll;
    min-height: auto;
  }
  .registration-module__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767.98px) {
  h1 {
    font-size: 2.25rem;
  }
  h2 {
    font-size: 1.625rem;
  }
  .module {
    padding: var(--space-xl) 0;
  }
  .page-hero {
    padding: var(--space-lg) 0;
    background-attachment: scroll;
  }
  .page-hero h1 {
    font-size: 2rem;
  }
  .sidebar {
    width: 100vw !important;
    max-width: 100vw !important;
  }
  .footer-grid {
    gap: var(--space-md);
  }
  .video-modal {
    padding: 12px;
  }
  .video-modal__play-btn {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }
}
