/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

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

/* ===== VARIABLES ===== */
:root {
  --bg-primary: #2C2C2C;
  --bg-secondary: #333333;
  --bg-card: #3A3A3A;
  --text-primary: #FFFFFF;
  --text-secondary: #CCCCCC;
  --text-muted: #999999;
  --border: #4A4A4A;
  --font-heading: 'Bebas Neue', 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

/* ===== BASE ===== */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

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

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: #FFFFFF;
}

::selection {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 24px;
}

.section--alt {
  background: var(--bg-secondary);
}

.label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(255,255,255,0.2), 0 0 40px rgba(255,255,255,0.1), 0 0 80px rgba(255,255,255,0.05);
}

.divider {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 24px auto 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--primary {
  background: #fff;
  color: #2C2C2C;
}

.btn--primary:hover {
  background: transparent;
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}

.btn--outline:hover {
  background: #fff;
  color: #2C2C2C;
  border-color: #fff;
}

/* ===== NAVBAR ===== */
/* ===== NAVBAR — MORPHING + INDICATOR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 90px;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: none;
  transition: height 0.4s cubic-bezier(0.4,0,0.2,1),
              background 0.4s ease,
              border-bottom 0.4s ease;
}
.navbar--scrolled {
  height: 90px;
  background: #050508;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.navbar__inner {
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.navbar__links-left,
.navbar__links-right {
  display: flex;
  align-items: center;
  gap: 36px;
  transition: gap 0.4s ease;
}
.navbar--scrolled .navbar__links-left,
.navbar--scrolled .navbar__links-right { gap: 36px; }

.navbar__links-left {
  flex: 1;
  justify-content: flex-end;
  padding-right: 36px;
}
.navbar__links-right {
  flex: 1;
  justify-content: flex-start;
  padding-left: 36px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.navbar__logo svg {
  width: 56px;
  height: 56px;
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1), height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.navbar--scrolled .navbar__logo svg {
  width: 56px;
  height: 56px;
}

.navbar__logo-text { display: none; }
.navbar__links { display: none; }
.navbar__item { position: relative; }

.navbar__link {
  padding: 8px 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease, font-size 0.4s ease;
}
.navbar__link:hover,
.navbar__link.active-section { color: #fff; }
.navbar--scrolled .navbar__link { font-size: 12px; }

.navbar__right { display: contents; }
.navbar__lang { display: none; }
.navbar__cta { display: none; }

/* Indicator line */
.navbar__indicator {
  position: absolute;
  bottom: 16px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(255,255,255,0.3);
  transition: left 0.4s cubic-bezier(0.4,0,0.2,1),
              width 0.4s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.3s ease,
              opacity 0.3s ease;
  pointer-events: none;
  opacity: 0;
}
.navbar__indicator.visible { opacity: 1; }
.navbar__indicator--hover { box-shadow: 0 0 14px rgba(78,170,212,0.8); }
.navbar--scrolled .navbar__indicator { bottom: 10px; }

.navbar__indicator-ghost {
  position: absolute;
  bottom: 16px;
  height: 2px;
  background: rgba(78,170,212,0.3);
  border-radius: 1px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.navbar__indicator-ghost.visible { opacity: 1; }
.navbar--scrolled .navbar__indicator-ghost { bottom: 10px; }

/* Mobile menu */
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.navbar__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s;
}


.navbar__burger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.navbar__burger.active span:nth-child(2) {
  opacity: 0;
}
.navbar__burger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 62px 0 0 0;
  background: var(--bg-primary);
  z-index: 90;
  overflow-y: auto;
  padding: 32px 24px;
  animation: fadeIn 0.3s ease;
}

.mobile-menu.active { display: block; }

.mobile-menu__item {
  border-bottom: 1px solid var(--border);
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.mobile-menu__toggle {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 8px;
}

.mobile-menu__toggle svg {
  transition: transform 0.3s;
}

.mobile-menu__toggle.active svg {
  transform: rotate(180deg);
}

.mobile-menu__sub {
  display: none;
  padding: 0 0 16px 16px;
}

.mobile-menu__sub.active { display: block; }

.mobile-menu__sub a {
  display: block;
  padding: 8px 0;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.mobile-menu__sub a:hover { color: #fff; }

.mobile-menu__cta {
  display: block;
  text-align: center;
  margin-top: 32px;
  padding: 14px;
  background: #fff;
  color: #2C2C2C;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 90px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #111 50%, #0a0a0a 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.5);
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero__logo {
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.hero__logo svg {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.hero__title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  letter-spacing: 0.06em;
  line-height: 1;
  color: #fff;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero__title span {
  color: rgba(255,255,255,0.5);
}

.hero__subtitle {
  margin-top: 24px;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero__buttons {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

/* ===== STATS ===== */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-primary);
}

.stats__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats__item {
  text-align: center;
  padding: 56px 16px;
  border-right: 1px solid var(--border);
}

.stats__item:last-child { border-right: none; }

.stats__number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: 0.06em;
}

.stats__label {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-preview__image {
  aspect-ratio: 4/3;
  background: #404040;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-preview__image-placeholder {
  text-align: center;
}

.about-preview__image-placeholder span {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 4rem;
  color: rgba(255,255,255,0.05);
  letter-spacing: 0.1em;
}

.about-preview__image-placeholder p {
  font-size: 11px;
  color: rgba(255,255,255,0.08);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 8px;
}

.about-preview__text p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-top: 24px;
}

/* ===== TEAMS GRID ===== */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  transition: border-color 0.5s;
}

.team-card:hover { border-color: rgba(255,255,255,0.15); }

.team-card__bg {
  position: absolute;
  inset: 0;
  background: #363636;
  transition: transform 0.7s ease;
}

.team-card:hover .team-card__bg { transform: scale(1.05); }

.team-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,255,255,0.7), rgba(255,255,255,0.15), transparent);
  z-index: 2;
}

.team-card__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 120px;
  color: rgba(255,255,255,0.02);
  letter-spacing: 0.1em;
  white-space: nowrap;
  user-select: none;
}

.team-card__content {
  position: relative;
  z-index: 3;
}

.team-card__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: 0.06em;
  transition: transform 0.3s;
}

.team-card:hover .team-card__title { transform: translateX(8px); }

.team-card__subtitle {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.team-card__arrow {
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.team-card:hover .team-card__arrow { color: rgba(255,255,255,0.7); }

.team-card__arrow svg {
  transition: transform 0.3s;
}

.team-card:hover .team-card__arrow svg { transform: translateX(4px); }

/* ===== NEWS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.news-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  padding: 24px;
  transition: border-color 0.3s;
  cursor: pointer;
}

.news-card:hover { border-color: rgba(255,255,255,0.15); }

.news-card__image {
  aspect-ratio: 16/10;
  background: #404040;
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card__image-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s;
}

.news-card:hover .news-card__image-inner { transform: scale(1.05); }

.news-card__image-inner span {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.8rem;
  color: rgba(255,255,255,0.04);
}

.news-card__meta {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.news-card__title {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  text-transform: none;
  letter-spacing: normal;
  transition: color 0.2s;
}

.news-card:hover .news-card__title { color: #fff; }

/* ===== SPONSORS ===== */
.sponsors {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
  overflow: hidden;
  background: var(--bg-primary);
}

.sponsors__label {
  text-align: center;
  margin-bottom: 32px;
}

.sponsors__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.sponsors__item {
  flex-shrink: 0;
  margin: 0 48px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.06);
  transition: color 0.3s;
  cursor: default;
}

.sponsors__item:hover { color: rgba(255,255,255,0.5); }

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-section p {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.cta-section .btn {
  margin-top: 40px;
}

/* ===== FOOTER ===== */
.footer {
  background: #0c0c0c;
  padding: 0 24px;
}

.footer__cta {
  text-align: center;
  padding: 80px 0 60px;
  max-width: 600px;
  margin: 0 auto;
}

.footer__cta h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 28px);
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(255,255,255,0.2), 0 0 40px rgba(255,255,255,0.1), 0 0 80px rgba(255,255,255,0.05);
}

.footer__cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  line-height: 1.6;
}

.footer__cta a {
  display: inline-block;
  padding: 14px 36px;
  background: #fff;
  color: #111;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 4px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.footer__cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.15);
}

.footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
  margin-top: 20px;
}

.footer__brand a {
  display: inline-block;
  margin-top: 24px;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer__brand a:hover { color: #fff; }

.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
  line-height: 1;
  text-decoration: none;
}
.footer__social svg {
  display: block;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.footer__social:hover {
  color: #fff;
  transform: scale(1.1);
}

.footer__col h4 {
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer__col a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s, transform 0.2s;
}

.footer__col a:hover { color: #fff; transform: translateX(4px); }

.footer__bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__bottom p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.footer__bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__bottom button {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  font-family: var(--font-body);
}

.footer__bottom button:hover { color: rgba(255,255,255,0.6); }

.footer__credit {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  text-decoration: none;
}

.footer__credit:hover { color: rgba(255,255,255,0.8); }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 160px 24px 64px;
  text-align: center;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
}

.page-header__subtitle {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ===== TEAM DETAIL (sub-pages) ===== */
.breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 48px;
}

.breadcrumb a {
  transition: color 0.2s;
}

.breadcrumb a:hover { color: #fff; }

.team-intro {
  max-width: 640px;
  margin-bottom: 64px;
}

.team-intro p {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

.age-group {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 40px;
  margin-bottom: 24px;
  transition: border-color 0.3s;
}

.age-group:hover { border-color: rgba(255,255,255,0.08); }

.age-group__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.age-group__title {
  font-size: 2rem;
  letter-spacing: 0.06em;
}

.age-group__level {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.age-group__desc {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.age-group__features {
  margin-top: 16px;
}

.age-group__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.age-group__features li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  margin-top: 8px;
  flex-shrink: 0;
}

.age-group__right {
  text-align: right;
}

.age-group__schedule-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}

.age-group__schedule {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.15);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.5);
}

.form-group textarea {
  resize: none;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.contact-info__item {
  margin-bottom: 24px;
}

.contact-info__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.contact-info__value a { transition: color 0.2s; }
.contact-info__value a:hover { color: #fff; }

.social-links {
  margin-top: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  padding: 12px 16px;
  margin-bottom: 8px;
  transition: all 0.2s;
}

.social-link:hover {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
}

.social-link__label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.social-link__handle {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.contact-map {
  margin-top: 32px;
  aspect-ratio: 4/3;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map p {
  font-size: 12px;
  color: rgba(255,255,255,0.15);
  margin-top: 12px;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  aspect-ratio: 1;
  background: #404040;
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover { border-color: rgba(255,255,255,0.15); }

.gallery-item span {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.04);
}

/* ===== PARTNERS ===== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  aspect-ratio: 3/2;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}

.partner-card:hover { border-color: rgba(255,255,255,0.15); }

.partner-card span {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.06);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.reason {
  padding: 32px;
}

.reason__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.reason__title {
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

.reason__desc {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ===== VALUES ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-item {
  border-left: 2px solid rgba(255,255,255,0.06);
  padding: 16px 0 16px 24px;
}

.value-item h3 {
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

.value-item p {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ===== STAFF ===== */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.staff-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 32px;
  transition: border-color 0.3s;
}

.staff-card:hover { border-color: rgba(255,255,255,0.08); }

.staff-card__avatar {
  width: 80px;
  height: 80px;
  background: #404040;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.staff-card__avatar span {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.06);
}

.staff-card__name {
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

.staff-card__role {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.staff-card__bio {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ===== PARTNERSHIP ===== */
.partnership {
  max-width: 1200px;
  margin: 0 auto;
}

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

.partnership__logo-placeholder {
  aspect-ratio: 3/2;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.partnership__logo-placeholder span {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  color: rgba(255,255,255,0.08);
  letter-spacing: 0.1em;
}

.partnership__logo-placeholder .partnership__x {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.35);
}

.partnership__text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.06em;
}

.partnership__text h3 {
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.partnership__text p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-top: 16px;
}

.partnership__features {
  margin-top: 16px;
}

.partnership__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.partnership__features li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  margin-top: 9px;
  flex-shrink: 0;
}

.partnership__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.partnership__card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 32px;
  transition: border-color 0.3s;
}

.partnership__card:hover {
  border-color: rgba(255,255,255,0.08);
}

.partnership__card h3 {
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.partnership__card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.partnership__card ul {
  margin-top: 12px;
}

.partnership__card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.partnership__card li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  margin-top: 8px;
  flex-shrink: 0;
}

.promo-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 32px;
  text-align: center;
  max-width: 600px;
  margin: 48px auto 0;
}

.promo-box__code {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.15);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: #fff;
}

.promo-box p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

.structure-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.structure-list__item {
  padding: 10px 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: border-color 0.2s;
}

.structure-list__item:hover {
  border-color: rgba(255,255,255,0.15);
}

@media (max-width: 768px) {
  .partnership__hero { grid-template-columns: 1fr; gap: 32px; }
  .partnership__grid { grid-template-columns: 1fr; }
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== KEYFRAMES ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== CATEGORY CARDS HOVER ===== */
.section a[href*="equipes"]:hover img {
  transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .navbar__links,
  .navbar__links-left,
  .navbar__links-right,
  .navbar__right { display: none !important; }
  .navbar__indicator,
  .navbar__indicator-ghost { display: none !important; }
  .navbar__burger { display: flex; }
  .navbar__inner { justify-content: space-between; }

  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 24px; }

  .about-preview { grid-template-columns: 1fr; gap: 32px; }
  .teams-grid { grid-template-columns: 1fr; }
  .team-card { height: 240px; }
  .contact-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: 1fr; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item { border-bottom: 1px solid var(--border); }
  .stats__item:nth-child(2) { border-right: none; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer__bottom-right { justify-content: center; }
  .footer__cta h3 { font-size: 22px; }

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

  .age-group { padding: 24px; }
  .age-group__header { flex-direction: column; }
  .age-group__right { text-align: left; }

  .navbar__logo-text { display: none; }
}

@media (max-width: 480px) {
  .hero__buttons { flex-direction: column; align-items: center; }
  .hero__buttons .btn { width: 100%; max-width: 280px; text-align: center; }
}
