*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html, body { height: 100%; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
:root {
--bg-primary: #141414;
  --bg-secondary: #1c1c1c;
  --bg-tertiary: #242424;
  --accent: #bd3d65;
  --accent-hover: #d64573;
  --header-bg: #a5d2f2;
  --header-text: #141414;
  --text-primary: #ffffff;
  --text-secondary: #c0c0c0;
  --text-muted: #888888;
  --border-color: rgba(255, 255, 255, 0.1);
  --sidebar-width: 250px;
--fluid-font-sm: clamp(0.875rem, 1vw, 1rem);
  --fluid-font-md: clamp(1rem, 2vw, 1.25rem);
  --fluid-font-lg: clamp(1.5rem, 4vw, 3rem);
  --fluid-font-xl: clamp(2.5rem, 6vw, 4.5rem);
--fluid-space-sm: clamp(0.5rem, 2vw, 1rem);
  --fluid-space-md: clamp(1rem, 3vw, 2rem);
  --fluid-space-lg: clamp(2rem, 5vw, 4rem);
  --fluid-width: clamp(320px, 90%, 1200px);
}
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }
.pageTransition { animation: slideIn 0.5s ease; }
@keyframes slideIn {
  from { transform: translateX(-30px); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}
.bannerTop {
  background: var(--accent);
  color: #fff;
  padding: 0.55rem 1rem;
  text-align: center;
  font-weight: 600;
  font-size: var(--fluid-font-sm);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 200;
}
.bannerTop a { color: #fff; text-decoration: underline; }
.mobileHeader {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--header-bg);
  color: var(--header-text);
  position: sticky;
  top: 0;
  z-index: 250;
  border-bottom: 2px solid var(--accent);
}
.mobileLogoText { font-size: 1.2rem; font-weight: 900; color: var(--header-text); text-decoration: none; }
.root    { min-height: 100%; }
.wrapper { min-height: 100%; }
.container { display: flex; min-height: 100vh; }
.sidebar--left {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: var(--sidebar-width);
  background: var(--header-bg);
  color: var(--header-text);
  z-index: 150;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  border-right: 3px solid var(--accent);
  transition: transform 0.3s ease;
}
.header-wrapper {
  flex: 1;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
}
.header-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
}
.headerLogo .logoLink {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--header-text);
  text-decoration: none;
  font-weight: 900;
}
.logoIcon { font-size: 2rem; }
.logoText { font-size: 1.2rem; letter-spacing: -0.02em; }

.headerNav { flex: 1; }
.navList { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.2rem; }
.navLink {
  display: block;
  padding: 0.55rem 0.75rem;
  color: var(--header-text);
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.92rem;
  transition: all 0.2s;
  text-decoration: none;
}
.navLink:hover,
.navLink.active {
  background: var(--accent);
  color: #fff;
}

.authSection {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.15);
  padding-bottom: 0.5rem;
}
.userName {
  font-size: 0.8rem;
  color: #444;
  padding: 0.2rem 0;
  font-weight: 600;
}
.primaryButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
}
.primaryButton:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #fff; }
.authBtn { font-size: 0.82rem; padding: 0.55rem 1rem; }

.secondaryButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  background: transparent;
  color: var(--header-text);
  border: 2px solid var(--header-text);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
}
.secondaryButton:hover { background: rgba(0,0,0,0.08); }

.outlineButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.outlineButton:hover { border-color: var(--accent); color: var(--accent); }
.mainContent {
  margin-left: var(--sidebar-width);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.main-wrapper { flex: 1; }
.content      { flex: 1; }
.main         { flex: 1; }
.heroModule {
  min-height: 90vh;
  background: var(--bg-primary);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5% 6%;
  overflow: hidden;
}
.heroModule::before {
  content: '';
  position: absolute;
  right: -5%;
  top: 15%;
  width: 55%;
  height: 75%;
  background: radial-gradient(ellipse, rgba(189,61,101,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.aboutModule {
  background: var(--bg-secondary);
  padding: 4% 6%;
  position: relative;
}
.servicesModule {
  background: var(--bg-tertiary);
  padding: 4% 6%;
  position: relative;
}
.contactModule {
  background: var(--bg-secondary);
  padding: 4% 6%;
}
.libraryModule {
  background: var(--bg-primary);
  padding: 4% 6%;
  min-height: 80vh;
}
.pricingModule {
  background: var(--bg-secondary);
  padding: 4% 6%;
  min-height: 70vh;
}
.faqModule {
  background: var(--bg-primary);
  padding: 4% 6%;
  min-height: 60vh;
}
.dashboardModule {
  background: var(--bg-primary);
  min-height: 80vh;
}
.authModule {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 4%;
  background: var(--bg-primary);
}
.legalModule {
  padding: 4% 6%;
  background: var(--bg-primary);
  max-width: 860px;
}
h1 { font-size: var(--fluid-font-xl); font-weight: 900; line-height: 1.05; color: var(--text-primary); margin-bottom: 1rem; }
h2 { font-size: 2rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.75rem; }
h3 { font-size: 1.5rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.5rem; }
h4 { font-size: 1.1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.4rem; }
p  { font-size: 1rem; line-height: 1.6; color: var(--text-secondary); margin-bottom: 1rem; }

.sectionLabel  { color: var(--accent); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700; margin-bottom: 0.5rem; display: block; }
.sectionTitle  { margin-bottom: 0.5rem; }
.sectionLead   { color: var(--text-muted); font-size: 1rem; margin-bottom: 2rem; }
.heroContent { position: relative; z-index: 1; max-width: 65%; }
.heroTagline {
  color: var(--accent);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: block;
}
.heroTitle { font-size: var(--fluid-font-xl); font-weight: 900; line-height: 1.05; margin-bottom: 1.25rem; }
.heroSubtitle { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 2rem; max-width: 95%; }
.heroCtas { display: flex; gap: 1rem; flex-wrap: wrap; }
.heroGiantStats {
  display: flex;
  gap: 3rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}
.giantStat     { text-align: left; }
.giantStatNumber {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.giantStatLabel {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-top: 0.35rem;
}
.carouselWrapper  { position: relative; overflow: hidden; border-radius: 12px; margin: 2rem 0; }
.carouselTrack    { display: flex; transition: transform 0.45s ease; gap: 1.25rem; }
.carouselSlide    {
  min-width: 30%;
  background: var(--bg-tertiary);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.carouselSlide img   { width: 100%; height: 175px; object-fit: cover; }
.slideImagePlaceholder {
  width: 100%;
  height: 175px;
  background: linear-gradient(135deg, var(--bg-tertiary), rgba(189,61,101,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.slideOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.85));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}
.slideTitle { font-size: 0.88rem; font-weight: 700; color: #fff; }
.slideDate  { font-size: 0.72rem; color: #ccc; margin-top: 0.2rem; }
.slideLiveBadge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #e11d48;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.carouselControls { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1rem; }
.carouselBtn {
  width: 34px;
  height: 34px;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.carouselBtn:hover { background: var(--accent); color: #fff; }
.aboutGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.aboutCard {
  background: var(--bg-primary);
  padding: 1.75rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: border-color 0.2s;
}
.aboutCard:hover { border-color: var(--accent); }
.aboutCardIcon { font-size: 2.5rem; margin-bottom: 1rem; }
.eventsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.eventCard {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.eventCard:hover { border-color: var(--accent); transform: translateY(-2px); }
.eventCardBanner {
  width: 100%;
  height: 150px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--bg-tertiary), rgba(189,61,101,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.eventCardBody { padding: 1rem; }
.eventCardFederation { font-size: 0.68rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.35rem; }
.eventCardTitle { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.35rem; }
.eventCardDate  { font-size: 0.78rem; color: var(--text-muted); }
.videoGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.videoCard {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.videoCard:hover { border-color: var(--accent); transform: translateY(-2px); }
.videoThumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-tertiary), rgba(189,61,101,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}
.videoLockOverlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.75rem;
  transition: background 0.2s;
}
.videoLockText { font-size: 0.75rem; color: #fff; font-weight: 600; }
.videoDuration {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 0.68rem;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
}
.videoCardBody { padding: 0.9rem; }
.videoCardFederation { font-size: 0.68rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.3rem; }
.videoCardTitle { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.3rem; }
.videoCardMeta  { font-size: 0.72rem; color: var(--text-muted); }
.pricingGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.pricingCard {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s;
}
.pricingCard.featured {
  border-color: var(--accent);
  background: var(--bg-tertiary);
}
.pricingBadge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.pricingPlanName { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.pricingPrice {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin: 1rem 0;
}
.pricingPrice .pricingPer { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; }
.pricingDesc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.pricingFeatures { list-style: none; padding: 0; margin: 1.25rem 0 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; }
.pricingFeatures li { font-size: 0.88rem; color: var(--text-secondary); }
.pricingFeatures li::before { content: '✓ '; color: var(--accent); font-weight: 700; }
.faqList { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
.faqItem {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}
.faqQuestion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  transition: background 0.2s;
  font-size: 0.95rem;
  user-select: none;
}
.faqQuestion:hover { background: var(--bg-tertiary); }
.faqToggle { font-size: 1.2rem; color: var(--accent); transition: transform 0.3s; flex-shrink: 0; }
.faqItem.open .faqToggle { transform: rotate(45deg); }
.faqAnswer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faqItem.open .faqAnswer { max-height: 400px; }
.faqAnswer p { padding: 0 1.25rem 1.1rem; margin: 0; color: var(--text-secondary); font-size: 0.92rem; }
.contactLayout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}
.sidebarFormWrapper {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  position: sticky;
  top: 2rem;
}
.sidebarFormTitle { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.25rem; }
.contactForm { display: flex; flex-direction: column; gap: 1rem; }
.formGroup { display: flex; flex-direction: column; gap: 0.35rem; }
.formLabel { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); }
.formInput, .formTextarea, .formSelect {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-primary);
  padding: 0.7rem 0.9rem;
  font-size: 0.92rem;
  width: 100%;
  transition: border-color 0.2s;
}
.formInput:focus, .formTextarea:focus, .formSelect:focus { outline: none; border-color: var(--accent); }
.formTextarea { min-height: 120px; resize: vertical; }
.formError { font-size: 0.78rem; color: #f87171; }
.alertError {
  background: rgba(225,29,72,0.1);
  border: 1px solid rgba(225,29,72,0.3);
  color: #f87171;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}
.alertSuccess {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  color: #34d399;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}
.authCard {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
}
.authTitle    { font-size: 1.75rem; font-weight: 900; margin-bottom: 0.35rem; }
.authSubtitle { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 2rem; }
.authBottom   { margin-top: 1.5rem; text-align: center; color: var(--text-muted); font-size: 0.88rem; }
.authLink     { color: var(--accent); }
.checkboxLabel { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--text-secondary); cursor: pointer; }
.dashboardHeader { padding: 2.5% 6%; background: var(--bg-secondary); border-bottom: 1px solid var(--border-color); }
.dashboardWelcome { font-size: 1.75rem; font-weight: 900; }
.dashboardContent { padding: 2% 6%; }
.dashboardStatGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}
.dashStatCard {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}
.dashStatNumber { font-size: 2.5rem; font-weight: 900; color: var(--accent); line-height: 1; }
.dashStatLabel  { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.4rem; }
.pageHeader {
  padding: 2.5% 6% 2%;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}
.pageHeader p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }
.filterBar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.filterBtn {
  padding: 0.38rem 0.9rem;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  border-radius: 20px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
}
.filterBtn:hover, .filterBtn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.liveBadge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #e11d48;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.18rem 0.5rem;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.liveDot { animation: blink 1.2s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.footerSection {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 3% 6%;
}
.footerGrid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}
.footerLogo     { font-size: 1.2rem; font-weight: 900; margin-bottom: 0.7rem; }
.footerBrand p  { color: var(--text-secondary); font-size: 0.88rem; }
.footerLinks ul, .footerLegal ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.footerLinks a, .footerLegal a { color: var(--text-secondary); font-size: 0.88rem; }
.footerLinks a:hover, .footerLegal a:hover { color: var(--accent); }
.footerContact p { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 0.4rem; }
.footerBottom { padding-top: 1.25rem; color: var(--text-muted); font-size: 0.8rem; }
.fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 54px;
  height: 54px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(189,61,101,0.45);
  z-index: 100;
  transition: all 0.2s;
}
.fab:hover { background: var(--accent-hover); transform: scale(1.1); }
.fab-form {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  width: 315px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: 100;
  overflow: hidden;
  display: none;
}
.fab-form__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.2rem;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border-color);
}
.fab-form__header h3 { font-size: 0.95rem; font-weight: 700; margin: 0; }
.fab-form__close { background: none; border: none; color: var(--text-muted); font-size: 1.4rem; cursor: pointer; padding: 0; line-height: 1; }
.fab-form__content { padding: 1.2rem; display: flex; flex-direction: column; gap: 0.7rem; }
.fab-form__content input,
.fab-form__content textarea {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-primary);
  padding: 0.6rem 0.75rem;
  font-size: 0.88rem;
  width: 100%;
}
.fab-form__content input:focus,
.fab-form__content textarea:focus { outline: none; border-color: var(--accent); }
.fab-form__content textarea { height: 78px; resize: none; }
.menuToggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.menuToggle span { display: block; width: 22px; height: 2px; background: var(--header-text); transition: all 0.3s; }
.sidebarOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 140;
}
.sidebarOverlay.active { display: block; }
.legalContent h2    { font-size: 1.35rem; margin-top: 2rem; margin-bottom: 0.65rem; }
.legalContent h3    { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.legalContent p,
.legalContent li    { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.75; }
.legalContent ul    { padding-left: 1.5rem; margin-bottom: 1rem; }
.legalContent .legalDate { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 2rem; }
.contactInfoItem {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.contactInfoIcon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.contactInfoText h4 { font-size: 0.88rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.contactInfoText p  { font-size: 0.95rem; color: var(--text-primary); margin: 0; }
@media (max-width: 768px) {
  :root { --sidebar-width: 0px; }

  .sidebar--left {
    transform: translateX(-100%);
    width: 82%;
    max-width: 280px;
    top: 0 !important;
    height: 100vh !important;
    z-index: 300;
  }
  .sidebar--left.open { transform: translateX(0); }

  .mobileHeader { display: flex; }
  .menuToggle   { display: flex; }
  .mainContent  { margin-left: 0; }
  .bannerTop    { font-size: 0.72rem; }
.mobileScrollContainer {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mobileScrollContainer::-webkit-scrollbar { display: none; }
  .mobileScrollSection {
    min-width: 100vw;
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .heroContent    { max-width: 100%; }
  .heroGiantStats { gap: 1.5rem; }
  .giantStatNumber{ font-size: 2rem; }
  .aboutGrid      { grid-template-columns: 1fr; }
  .eventsGrid     { grid-template-columns: 1fr; }
  .videoGrid      { grid-template-columns: 1fr; }
  .pricingGrid    { grid-template-columns: 1fr; }
  .contactLayout  { grid-template-columns: 1fr; }
  .footerGrid     { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .carouselSlide  { min-width: 85%; }
  .fab            { bottom: 1rem; right: 1rem; }
  .fab-form       { bottom: 5rem; right: 1rem; width: calc(100vw - 2rem); max-width: 315px; }
  h1              { font-size: clamp(2rem, 9vw, 3rem); }
  .heroModule     { padding: 6% 5%; }
  .heroTitle      { font-size: clamp(1.9rem, 8vw, 2.8rem); }
}

@media (max-width: 1100px) {
  .footerGrid  { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pricingGrid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .aboutGrid   { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
}
