/* ==========================================================================
   HR FOR BUSINESS — OFFICIAL DESIGN SYSTEM & STYLESHEET
   Strict BEM Architecture | Mobile-First | Vanilla CSS3 (Pure PX Units)
   ========================================================================== */

/* 1. CSS VARIABLES & THEME SETUP */
:root {
  /* Brand Colors */
  --color-primary-red: #8D0000;
  --color-primary-red-hover: #B30000;
  --color-accent-blue: #1E51FF;
  --color-accent-blue-hover: #3867FF;
  --bg-dark-stage: #0A0B0E;
  --bg-card: #12141C;
  --bg-card-hover: #181B26;
  
  /* Text Colors */
  --color-text: #FFFFFF;
  --color-text-subtle: #E2E8F0;
  --color-muted: #9CA3AF;
  
  /* Borders & Dividers */
  --color-border: #222634;
  --color-border-light: #2B3042;
  --color-red-border: #4D0000;
  
  /* Typography */
  --font-heading: 'Unbounded', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Component Tokens */
  --curved-top: 20px 20px 0 0;
  --badge-border: 1px solid #000000;
  --container-max-width: 1240px;
  --header-height: 80px;
  
  /* Z-Index Hierarchy */
  --z-back: -1;
  --z-normal: 1;
  --z-sticky: 100;
  --z-drawer: 200;
  --z-modal: 300;
}

/* 2. RESET & BASE STYLES */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  background-color: var(--bg-dark-stage);
  color: var(--color-text);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg-dark-stage);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Defaults & Safety */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.2;
  overflow-wrap: break-word;
  hyphens: none;
}

p, span, li, a {
  overflow-wrap: break-word;
  hyphens: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* 3. LAYOUT UTILITIES & GLOBAL CLASSES */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.section {
  padding-top: 72px;
  padding-bottom: 72px;
  position: relative;
}

@media (min-width: 992px) {
  .section {
    padding-top: 104px;
    padding-bottom: 104px;
  }
}

.section-tag {
  display: inline-block;
  background-color: rgba(163, 8, 12, 0.15);
  border: 1px solid var(--color-primary-red);
  color: var(--color-text);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24px;
  text-transform: none;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .section-tag {
    font-size: 16px;
    letter-spacing: 0.6px;
    padding: 7px 17px;
  }
}

.section-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 16px;
  border-left: 4px solid var(--color-primary-red);
  padding-left: 16px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 40px;
  }
}

.section-subtitle {
  font-size: 17px;
  color: var(--color-muted);
  max-width: 780px;
  margin-bottom: 40px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 19px;
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
  padding: 14px 28px;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--wrap {
  white-space: normal;
}

.btn--primary {
  background-color: var(--color-primary-red);
  color: var(--color-text);
  box-shadow: 0 4px 20px rgba(163, 8, 12, 0.4);
}

.btn--primary:hover {
  background-color: var(--color-primary-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(163, 8, 12, 0.6);
}

.concept__cta-btn,
.concept__cta-btn:hover {
  box-shadow: none;
}

.btn--secondary {
  background-color: var(--color-accent-blue);
  color: var(--color-text);
  box-shadow: 0 4px 20px rgba(30, 81, 255, 0.3);
}

.btn--secondary:hover {
  background-color: var(--color-accent-blue-hover);
  transform: translateY(-2px);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border-light);
}

.btn--outline:hover {
  border-color: var(--color-primary-red);
  background-color: rgba(163, 8, 12, 0.1);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 16px;
}

@media (max-width: 767px) {
  .btn {
    font-size: 11px;
    padding: 11px 21px;
  }

  .btn--lg {
    font-size: 12px;
    padding: 14px 27px;
  }
}

/* WHITE PILL BADGE */
.pill-badge {
  display: inline-block;
  background-color: #FFFFFF;
  color: #000000;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  border: var(--badge-border);
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
}

/* ==========================================================================
   4. SECTION SPECIFIC COMPONENT STYLES (STRICT BEM)
   ========================================================================== */

/* HEADER BLOCK (.header) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: var(--z-modal);
  background-color: rgba(10, 11, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(34, 38, 52, 0.6);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.header--scrolled {
  background-color: rgba(10, 11, 14, 0.96);
  border-bottom-color: var(--color-primary-red);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: var(--color-text);
}

.header__logo-accent {
  color: var(--color-primary-red);
}

.header__logo-img {
  width: 90px;
  height: 32px;
  display: block;
}

.header__nav {
  display: none;
}

@media (min-width: 992px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 29px;
  }
}

.header__nav-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-text-subtle);
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary-red);
  transition: width 0.3s ease;
}

.header__nav-link:hover {
  color: var(--color-text);
}

.header__nav-link:hover::after {
  width: 100%;
}

/* COUNTDOWN TIMER IN HEADER */
.header__countdown {
  display: none;
}

@media (min-width: 1200px) {
  .header__countdown {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(18, 20, 28, 0.8);
    border: 1px solid var(--color-red-border);
    padding: 6px 14px;
    border-radius: 20px;
  }
}

.countdown__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
  color: var(--color-muted);
}

.countdown__timer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 14px;
  color: var(--color-primary-red);
}

.countdown__unit {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.countdown__value {
  color: var(--color-text);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__cta-btn {
  padding: 10px 21px;
  font-size: 11px;
}

.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: var(--z-modal);
}

@media (min-width: 992px) {
  .header__burger {
    display: none;
  }
}

.header__burger-line {
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__burger--active .header__burger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.header__burger--active .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger--active .header__burger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* MOBILE DRAWER MENU */
.header__mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  overflow-y: auto;
  background-color: var(--bg-dark-stage);
  border-left: 1px solid var(--color-primary-red);
  padding: 96px 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  z-index: var(--z-drawer);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0,0,0,0.8);
}

.header__mobile-menu--open {
  right: 0;
}

.header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.header__mobile-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  text-transform: none;
  color: var(--color-text);
}

.header__mobile-link:hover {
  color: var(--color-primary-red);
}

.header__mobile-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.header__mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-muted);
}

.header__mobile-contact-link {
  color: var(--color-muted);
}

.header__mobile-contact-link:hover {
  color: var(--color-primary-red);
}

/* HERO BLOCK (.hero) */
.hero {
  padding-top: calc(var(--header-height) + 16px);
  padding-bottom: 80px;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 50% 20%, #610307 0%, #2E0508 50%, #17181F 100%);
  overflow: hidden;
}

.hero__video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.hero__video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100%;
  min-width: 177.78vh; /* 16:9 */
  transform: translate(-50%, -50%);
  border: 0;
}

.hero__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
background: linear-gradient(180deg, rgba(10, 11, 14, 0.5) 0%, rgba(10, 11, 14, 0.65) 55%, rgba(10, 11, 14, 0.8) 100%);
  pointer-events: none;
}

.hero__bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/hero-bg.svg?v=1023');
  background-size: cover;
  background-position: center;
  opacity: 0.65;
  pointer-events: none;
}

/* На мобілці відео починається одразу під шапкою, а не ховається за нею */
@media (max-width: 767px) {
  .hero__video-bg,
  .hero__video-overlay,
  .hero__bg-glow {
    top: var(--header-height);
    height: calc(100% - var(--header-height));
  }
}

.hero__container {
  position: relative;
  z-index: var(--z-normal);
}

.hero__badge-wrapper {
  margin-bottom: 24px;
}

/* Hero Main Title (Strict PX as configured) */
.hero__title {
  font-size: 25px;
  line-height: 1.25;
  margin-bottom: 24px;
  max-width: 980px;
  color: var(--color-text);
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 35px;
  }
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: #F3F4F6;
  max-width: 820px;
  margin-bottom: 40px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 21px;
  }
}

/* HERO FACTS GRID */
.hero__facts {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin-bottom: 48px;
  background: rgba(18, 20, 28, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-red-border);
  border-radius: 12px;
  padding: 20px;
}

@media (min-width: 640px) {
  .hero__facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero__facts {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero__fact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-subtle);
}

.hero__fact-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-primary-red);
}

.hero__fact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__fact-break {
  display: none;
}

@media (min-width: 1024px) {
  .hero__fact-break {
    display: inline;
  }
}

/* HERO COUNTDOWN WIDGET ABOVE BUTTONS */
.hero__countdown-box {
  background: rgba(18, 20, 28, 0.85);
  border: 1px solid var(--color-primary-red);
  border-radius: 12px;
  padding: 18px 24px;
  margin-bottom: 32px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(141, 0, 0, 0.25);
}

@media (min-width: 640px) {
  .hero__countdown-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}

.hero__countdown-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .hero__countdown-title {
    font-size: 14px;
  }
}

.hero__countdown-timer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
}

.hero__countdown-val {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 22px;
  color: var(--color-primary-red);
  line-height: 1;
}

.hero__countdown-lbl {
  font-size: 11px;
  color: var(--color-muted);
  text-transform: lowercase;
  margin-top: 4px;
}

.hero__countdown-colon {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 20px;
  color: var(--color-primary-red);
  line-height: 1;
  margin-top: -12px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

/* SECTION 3: CONCEPT / THEATRE ACT (.concept) */
.concept {
  background-color: #FFFFFF;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.concept .section-tag {
  color: #141414;
  background-color: transparent;
}

.concept .section-title,
.concept .section-subtitle {
  color: #141414;
}

.concept__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .concept__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.concept__card {
  background-image: url('images/morevid.jpg?v=1023');
  background-size: cover;
  background-position: center;
  border: 1px solid var(--color-primary-red);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.concept__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 11, 14, 0.25) 0%, rgba(10, 11, 14, 0.55) 100%);
  pointer-events: none;
}

.concept__video-trigger {
  position: relative;
  z-index: 1;
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.concept__video-orbit {
  position: absolute;
  inset: 0;
  animation: concept-orbit-spin 16s linear infinite;
}

.concept__video-orbit svg {
  width: 100%;
  height: 100%;
}

.concept__video-orbit-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: none;
  fill: #FFFFFF;
}

@keyframes concept-orbit-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.concept__video-play-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--color-primary-red);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 0 25px rgba(163, 8, 12, 0.6);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.concept__video-trigger:hover .concept__video-play-icon {
  transform: scale(1.08);
  background-color: var(--color-primary-red-hover);
}

@media (prefers-reduced-motion: reduce) {
  .concept__video-orbit {
    animation: none;
  }
}

/* SECTION 4: ABOUT & STATS (.about) */
.about {
  position: relative;
  background-color: #2e0508;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 48px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 48px);
  pointer-events: none;
}
  pointer-events: none;
}

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

.about__text-large {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-subtle);
  margin-bottom: 48px;
  max-width: 900px;
}

@media (min-width: 768px) {
  .about__text-large {
    font-size: 21px;
  }
}

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

@media (min-width: 576px) {
  .about__stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .about__stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about__stat-card {
  background-color: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.about__stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary-red);
}

.about__stat-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 44px;
  color: var(--color-primary-red);
  line-height: 1;
  margin-bottom: 8px;
}

.about__stat-label {
  font-size: 15px;
  color: var(--color-muted);
  font-weight: 500;
}

/* SECTION 5: TOPICS (.topics) */
.topics {
  background-color: #ffffff;
}

.topics .section-title,
.topics__intro-text {
  color: #141414;
}

.topics .section-tag {
  background: transparent;
  color: #141414;
}

.topics__intro-box {
  background: linear-gradient(180deg, rgba(30, 81, 255, 0.08) 0%, rgba(10, 11, 14, 0) 100%);
  border-left: none;
  padding: 24px;
  border-radius: 12px 12px 12px 12px;
  margin-bottom: 48px;
}

.topics__intro-text {
  font-size: 16px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .topics__intro-text {
    font-size: 18px;
  }
}

.topics__grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin: 0 -20px;
  padding: 0 20px 8px;
}

.topics__grid::-webkit-scrollbar {
  height: 6px;
}

.topics__grid::-webkit-scrollbar-thumb {
  background-color: var(--color-border-light);
  border-radius: 3px;
}

@media (max-width: 767px) {
  .topics__card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
}

@media (min-width: 768px) {
  .topics__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    overflow-x: visible;
    scroll-snap-type: none;
    margin: 0;
    padding: 0;
  }
}

@media (min-width: 1100px) {
  .topics__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* REELS / INSTAGRAM STYLE CONTRAST CARD */
.topics__card {
  background-color: var(--bg-card);
  border: 2px solid var(--color-border-light);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.topics__card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary-red);
  box-shadow: 0 12px 30px rgba(163, 8, 12, 0.25);
}

.topics__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.topics__tag {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  text-transform: none;
  color: #cf1f1f;
}

.topics__card-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 16px;
  line-height: 1.35;
  color: var(--color-text);
  margin-bottom: 16px;
}

.topics__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
  margin-top: auto;
}

.topics__card-badge {
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 600;
}

/* TOPICS PHOTO GALLERY SUBBLOCK */
.topics__gallery-title {
  color: #141414;
  text-align: left;
  margin-top: 56px;
  margin-bottom: 12px;
}

.topics__gallery-desc {
  color: #141414;
  text-align: left;
  margin-bottom: 24px;
}

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

@media (min-width: 768px) {
  .topics__gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.topics__gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.topics__gallery-img:hover {
  transform: scale(1.03);
}

/* SECTION 6: SPEAKERS BLOCK (.speakers) */
.speakers {
  padding-bottom: 40px;
}

.speakers__grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin: 0 -20px 40px;
  padding: 0 20px 8px;
}

.speakers__grid::-webkit-scrollbar {
  height: 6px;
}

.speakers__grid::-webkit-scrollbar-thumb {
  background-color: var(--color-border-light);
  border-radius: 3px;
}

@media (max-width: 767px) {
  .speakers__card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
}

@media (min-width: 768px) {
  .speakers__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    overflow-x: visible;
    scroll-snap-type: none;
    margin: 0 0 40px;
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .speakers__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.speakers__card {
  background: linear-gradient(180deg, #1A0305 0%, #0A0B0E 100%);
  border: 1px solid var(--color-red-border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.speakers__card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary-red);
}

.speakers__img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: var(--bg-card);
}

.speakers__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speakers__topic {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 12px;
}

.speakers__name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-subtle);
  text-transform: none;
  margin-bottom: 4px;
}

.speakers__role {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

.speakers__role--expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.speakers__more-btn {
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  color: #8d0000;
  cursor: pointer;
  margin-top: 2px;
}

.speakers__cta-wrapper {
  text-align: center;
}

/* SECTION 7: SCHEDULE (.schedule) */
.schedule {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #ffffff;
}

.schedule .section-title,
.schedule .section-subtitle {
  color: #141414;
}

.schedule .section-tag {
  background: transparent;
  color: #141414;
}

.schedule__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.schedule__tab {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: none;
  padding: 10px 20px;
  border-radius: 6px;
  background-color: var(--bg-card);
  color: var(--color-muted);
  border: 1px solid var(--color-border);
  transition: all 0.25s ease;
}

.schedule__tab--active, .schedule__tab:hover {
  background-color: var(--color-primary-red);
  color: var(--color-text);
  border-color: var(--color-primary-red);
}

.schedule__timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 56px;
}

.schedule__slot {
  background-color: #f4f5f8;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  color: #141414;
  transition: border-color 0.3s ease;
}

@media (min-width: 768px) {
  .schedule__slot {
    grid-template-columns: 140px 1fr 120px;
  }
}

.schedule__slot[data-hall="workshops"] {
  border-color: #FF7A00;
}

.schedule__slot[data-hall="workshops"] .schedule__hall-badge {
  background-color: rgba(255, 122, 0, 0.15);
  color: #FF7A00;
}

.schedule__time {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 16px;
  color: var(--color-primary-red);
}

.schedule__topic-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: #141414;
  margin-bottom: 4px;
}

.schedule__topic-desc {
  font-size: 14px;
  color: #475569;
}

.schedule__hall-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
  padding: 5px 12px;
  border-radius: 4px;
  background-color: #e2e8f0;
  color: #475569;
  text-align: center;
}

/* SECTION 8: REVIEWS / ATMOSPHERE (.reviews) */
.reviews__grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
}

.reviews__grid::-webkit-scrollbar {
  height: 6px;
}

.reviews__grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.reviews__grid::-webkit-scrollbar-thumb {
  background-color: #2e0508;
  border-radius: 3px;
}

.reviews__photo-item {
  cursor: default;
  border-radius: 16px;
  flex: 0 0 80%;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .reviews__photo-item {
    flex: 0 0 calc(33.333% - 16px);
  }
}

.reviews__photo-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.reviews__photo-item:hover .reviews__photo-img {
  transform: none !important;
}

.reviews__carousel {
  position: relative;
}

.reviews__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.reviews__arrow {
  width: 48px;
  height: 48px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-border-light);
  color: var(--color-text);
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.reviews__arrow:hover {
  background-color: var(--color-primary-red);
  border-color: var(--color-primary-red);
  transform: translateY(-2px);
}

.reviews__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: var(--color-border-light);
  cursor: pointer;
  padding: 0;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.reviews__dot--active {
  width: 24px;
  background-color: var(--color-primary-red);
}

/* SECTION 9: TICKETS (.tickets) */
.tickets {
  background-color: #ffffff;
  color: #141414;
}

.tickets .section-title,
.tickets .section-subtitle {
  color: #141414;
}

.tickets .section-tag {
  background: transparent;
  color: #141414;
  border-color: #141414;
}

.tickets__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

@media (min-width: 992px) {
  .tickets__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tickets__card {
  background-color: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.tickets__card--featured {
  border-color: var(--color-primary-red);
  background: linear-gradient(180deg, #1A0305 0%, #12141C 100%);
  box-shadow: none;
}

.tickets__card:hover {
  transform: translateY(-6px);
}

.tickets__card-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: var(--color-primary-red);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid #2e0508;
}

.tickets__plan-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 22px;
  color: var(--color-text);
  margin-bottom: 8px;
}

.tickets__price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 25px;
  color: var(--color-primary-red);
  margin-bottom: 4px;
}

.tickets__validity {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 16px;
}

.tickets__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.tickets__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-subtle);
}

.tickets__check-icon {
  color: var(--color-primary-red);
  font-weight: 900;
}

.tickets__legal-note {
  text-align: center;
  font-size: 13px;
  color: #141414;
}

/* SECTION 10: PARTNERS (.partners) */
.partners__block {
  margin-bottom: 48px;
}

.partners__category-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-muted);
  margin-bottom: 20px;
  text-align: center;
}

.partners__title-box {
  background-color: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}

.partners__subtitle {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.partners__title-img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  margin: 0 auto;
}

.partners__general-img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto;
}

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

@media (min-width: 640px) {
  .partners__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.partners__logo-item {
  background-color: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partners__logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  border-color: var(--color-primary-red);
  transform: translateY(-2px);
}

.partners__logo-img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  margin: 0 auto;
}

.partners__cta-row {
  text-align: center;
}

/* SECTION 11: FAQ ACCORDION (.faq) */
.faq {
  background-color: #ffffff;
  color: #141414;
}

.faq .section-title {
  color: #141414;
}

.faq .section-tag {
  background: transparent;
  color: #141414;
  border-color: #141414;
}

.faq__accordion {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  background-color: #f4f5f8;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq__item--open {
  border-color: var(--color-primary-red);
}

.faq__button {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  color: #141414;
  gap: 16px;
}

@media (max-width: 767px) {
  .faq__button {
    font-size: 16px;
  }
}

.faq__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
  color: var(--color-primary-red);
  transition: transform 0.3s ease;
}

.faq__item--open .faq__icon {
  transform: rotate(45deg);
}

.faq__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 24px;
}

.faq__item--open .faq__content {
  padding: 0 24px 24px 24px;
}

.faq__answer {
  font-size: 15px;
  line-height: 1.6;
  color: #141414;
  padding-bottom: 10px;
}

/* SECTION 12: FOOTER (.footer) */
.footer {
  background-color: #07080B;
  border-top: 1px solid var(--color-border);
  padding-top: 64px;
  padding-bottom: 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer__brand-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 21px;
  color: var(--color-text);
  margin-bottom: 12px;
}

.footer__slogan {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
  color: var(--color-text);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 14px;
  color: var(--color-muted);
}

.footer__link:hover {
  color: var(--color-primary-red);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.footer__map-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-top: 16px;
}

.footer__map-card iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  font-size: 13px;
  color: var(--color-muted);
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* MODAL NOTIFICATION WIDGET (.modal) */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal--open {
  opacity: 1;
  pointer-events: auto;
}

.modal__box {
  background-color: var(--bg-card);
  border: 1px solid var(--color-primary-red);
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 10px 40px rgba(163, 8, 12, 0.4);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal--open .modal__box {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 24px;
  color: var(--color-muted);
  cursor: pointer;
}

.modal__box--video {
  max-width: 900px;
  padding: 0;
  background-color: #000000;
  overflow: hidden;
}

.modal__box--video .modal__close {
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  z-index: 1;
}

.modal__video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.modal__video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* GALLERY LIGHTBOX (.lightbox) */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox--open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  transform: scale(0.96);
  transition: transform 0.3s ease;
}

.lightbox--open .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  line-height: 1;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.lightbox__nav:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.lightbox__nav--prev {
  left: 16px;
}

.lightbox__nav--next {
  right: 16px;
}

@media (min-width: 768px) {
  .lightbox__nav--prev {
    left: 32px;
  }

  .lightbox__nav--next {
    right: 32px;
  }
}

.modal__title {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--color-text);
}

.modal__desc {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 24px;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal__input {
  background-color: var(--bg-dark-stage);
  border: 1px solid var(--color-border);
  padding: 14px 16px;
  border-radius: 6px;
  color: var(--color-text);
  font-size: 15px;
}

.modal__input:focus {
  border-color: var(--color-primary-red);
}

.modal__form-status {
  font-size: 13px;
  line-height: 1.5;
  min-height: 0;
  display: none;
}

.modal__form-status--visible {
  display: block;
  margin-bottom: 4px;
}

.modal__form-status--success {
  color: #4ade80;
}

.modal__form-status--error {
  color: #f87171;
}

/* ==========================================================================
   13. THANK YOU PAGE (thank-you.html)
   ========================================================================== */
.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background-color: var(--bg-dark-stage);
}

.thank-you__card {
  width: 100%;
  max-width: 480px;
  background-color: var(--bg-card);
  border: 1px solid var(--color-primary-red);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .thank-you__card {
    padding: 56px 48px;
  }
}

.thank-you__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background-color: rgba(163, 8, 12, 0.15);
  border: 1px solid var(--color-primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-red);
}

.thank-you__icon svg {
  width: 32px;
  height: 32px;
}

.thank-you__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 24px;
  color: var(--color-text);
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .thank-you__title {
    font-size: 28px;
  }
}

.thank-you__subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: 32px;
}

.thank-you__contacts {
  background-color: var(--bg-dark-stage);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 20px;
  text-align: left;
  margin-bottom: 32px;
}

.thank-you__contacts-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-muted);
  text-transform: none;
  margin-bottom: 14px;
}

.thank-you__contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0;
  border-top: 1px solid var(--color-border);
}

.thank-you__contact-item:first-of-type {
  border-top: none;
  padding-top: 0;
}

.thank-you__contact-label {
  font-size: 12px;
  color: var(--color-muted);
}

.thank-you__contact-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}

a.thank-you__contact-value:hover {
  color: var(--color-primary-red);
}

.thank-you__btn {
  width: 100%;
}
