:root {
  --bg: #050505;
  --bg-card: #0a0a0a;
  --bg-elevated: #0e0e0e;
  --bg-page: #050505;
  --accent: #00e87b;
  --accent-dim: rgba(0, 232, 123, 0.12);
  --accent-glow: rgba(0, 232, 123, 0.25);
  --text-primary: #f0f0f0;
  --text-secondary: rgba(240, 240, 240, 0.55);
  --text-muted: rgba(240, 240, 240, 0.3);
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(0, 232, 123, 0.12);
  --radius: 16px;
  --radius-inner: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
}

.font-display {
  font-family: 'Big Shoulders Display', sans-serif;
}

.accent {
  color: var(--accent);
}

/* Noise overlay */
.noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.9) 0%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s ease;
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.95);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.nav-logo-text span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--accent);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--accent) !important;
  color: #050505 !important;
  border-radius: var(--radius-inner);
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 24px rgba(0, 232, 123, 0.3);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 10001;
  position: relative;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Scroll lock when menu open */
body.menu-open {
  overflow: hidden;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Specific Hero Styles from index3, index4, index5, index6 */
.hero.subpage {
  min-height: 85vh;
  align-items: flex-end;
  padding-bottom: 80px;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.6);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(5, 5, 5, 0.7) 80%),
    linear-gradient(to bottom, rgba(5, 5, 5, 0.3) 0%, transparent 30%, transparent 70%, rgba(5, 5, 5, 1) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center top;
  filter: brightness(0.2) saturate(0.4);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(0, 232, 123, 0.06) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0.2) 40%, rgba(5, 5, 5, 0.95) 90%, var(--bg) 100%);
}

.hero-canvas-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  z-index: 2;
  pointer-events: none;
}

.hero-canvas-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 32px;
  width: 100%;
}

.hero.subpage .hero-content {
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-subtitle {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0.8;
}

.hero-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 10vw, 120px);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.hero.subpage .hero-title {
  font-size: clamp(64px, 9vw, 110px);
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
  display: block;
}

.hero.subpage .hero-title em {
  display: inline;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: var(--accent);
  color: #050505;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-inner);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease;
}

.hero-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 40px rgba(0, 232, 123, 0.35);
}

.hero-cta:active {
  transform: scale(0.97);
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--accent);
  color: #050505;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-inner);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 40px rgba(0, 232, 123, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-inner);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--accent);
  color: #050505;
  box-shadow: 0 4px 24px rgba(0, 232, 123, 0.2);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce-hint 2s ease-in-out infinite;
}

.hero-scroll-hint .line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

@keyframes bounce-hint {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
  color: var(--accent);
}

.hero-breadcrumb .sep {
  color: var(--accent);
  opacity: 0.4;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  margin-bottom: 24px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

/* ==================== COURSES SECTION ==================== */
.courses-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 32px;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.7;
}

.section-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.section-title .accent {
  color: var(--accent);
}

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

/* CARD STYLES */
.card-wrapper {
  perspective: 900px;
}

.course-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 1px 3px rgba(0, 232, 123, 0.03), 0 8px 32px rgba(0, 0, 0, 0.4);
  will-change: transform, box-shadow;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.course-card:hover {
  box-shadow: 0 0 30px rgba(0, 232, 123, 0.4), 0 0 60px rgba(0, 232, 123, 0.2), 0 0 0 1px rgba(0, 232, 123, 0.5) inset;
  transform: translateY(-5px);
}

.course-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 2px;
  background: linear-gradient(135deg, rgba(0, 232, 123, 0.8), rgba(0, 232, 123, 0) 40%, rgba(0, 232, 123, 0) 60%, rgba(0, 232, 123, 0.8));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 10;
}

.course-card:hover::before {
  opacity: 1;
}

.card-visual {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  transform: translateZ(40px);
  flex-shrink: 0;
}

.card-bg-photo {
  position: absolute;
  inset: 0;
  background-position: center;
  filter: blur(8px) brightness(0.4) saturate(0.6);
  transform: scale(1.2);

  transition: filter 0.6s ease, transform 0.6s ease;
  z-index: 0;
}

.course-card:hover .card-bg-photo {
  filter: blur(0px) brightness(1.1) saturate(1.1);
  transform: scale(1.15);
}

.card-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 70%, rgba(0, 232, 123, 0.05) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.card-visual canvas {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.card-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--bg-card), transparent);
  pointer-events: none;
  z-index: 3;
}

.hit-flash {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(0, 232, 123, 0.2), transparent 55%);
  opacity: 0;
  pointer-events: none;
  z-index: 4;
  transition: opacity 0.08s ease-out;
}

.hit-flash.active {
  opacity: 1;
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  transform: translateZ(50px);
}

.badge-dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.card-body {
  padding: 24px 32px 32px;
  transform: translateZ(20px);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-meta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.card-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 28px;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  transform: translateZ(30px);
}

.card-title .a {
  color: var(--accent);
}

.card-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex-grow: 1;
}

.card-divider {
  height: 1px;
  background: linear-gradient(to right, var(--accent-dim), transparent);
  margin-bottom: 24px;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--accent);
  color: #050505;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-inner);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease;
  transform: translateZ(25px);
  align-self: flex-start;
}

.card-cta:hover {
  transform: translateZ(25px) scale(1.03);
  box-shadow: 0 4px 24px rgba(0, 232, 123, 0.3);
}

.card-cta .arrow {
  display: inline-flex;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.course-card:hover .card-cta .arrow {
  transform: translateX(4px);
}

.card-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.course-card:hover .card-cta::after {
  left: 100%;
}

.card-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--accent);
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: gap 0.3s ease;
  transform: translateZ(25px);
  align-self: flex-start;
}

.course-card:hover .card-cta-ghost {
  gap: 14px;
}

.card-stats {
  display: flex;
  gap: 0;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  transform: translateZ(15px);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  padding: 0 12px;
  border-right: 1px solid var(--border);
}

.stat:first-child {
  padding-left: 0;
}

.stat:last-child {
  border-right: none;
  padding-right: 0;
}

.stat-value {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  line-height: 1.1;
}

.stat-value .stat-accent {
  color: var(--accent);
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* ==================== CONTENT SECTIONS ==================== */
.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px;
}

.content-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.content-text p {
  margin-bottom: 20px;
}

.content-text p:last-child {
  margin-bottom: 0;
}

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

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  pointer-events: none;
}

/* Green corner accent on image */
.about-image::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 60px;
  height: 60px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  border-radius: var(--radius) 0 0 0;
  z-index: 2;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
}

.about-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 480px;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-inner);
  transition: all 0.3s ease;
  align-self: flex-start;
  background: transparent;
}

.about-cta:hover {
  background: var(--accent);
  color: #050505;
  box-shadow: 0 4px 24px rgba(0, 232, 123, 0.2);
}

.about-cta .arrow {
  transition: transform 0.3s ease;
}

.about-cta:hover .arrow {
  transform: translateX(4px);
}

/* ==================== SCHEDULE STRIP ==================== */
.schedule-strip {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 5;
  margin-top: -40px;
}

.schedule-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.schedule-item {
  background: var(--bg-card);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.3s ease;
}

.schedule-item:hover {
  background: var(--bg-elevated);
}

.schedule-item-label {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.schedule-item-days {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.schedule-item-time {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--text-primary);
}

/* ==================== SCHEDULE SECTION (Global) ==================== */
.schedule-section {
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
}

.schedule-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 232, 123, 0.02) 0%, transparent 50%, rgba(0, 232, 123, 0.015) 100%);
  pointer-events: none;
}

.schedule-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.schedule-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.schedule-block {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.schedule-days {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.schedule-hours {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: var(--accent);
}

.schedule-note {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 8px;
}

.schedule-map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 1px solid var(--border);
}

.schedule-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) brightness(0.4) contrast(1.2);
  transition: filter 0.5s ease;
}

.schedule-map:hover iframe {
  filter: grayscale(0.5) brightness(0.5) contrast(1.1);
}

.schedule-map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(5, 5, 5, 0.5);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.schedule-map:hover .schedule-map-overlay {
  opacity: 0.3;
}

.schedule-map-address {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.schedule-map-detail {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ==================== FOOTER ==================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 32px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 280px;
  margin-top: 16px;
}

.footer-heading {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 16px rgba(0, 232, 123, 0.15);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* ==================== NAV DROPDOWN ==================== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown>a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown>a .dropdown-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.3s ease;
  margin-left: 2px;
}

.nav-dropdown:hover>a .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-inner);
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 200;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 232, 123, 0.05) inset;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown-menu li a::after {
  display: none !important;
}

.nav-dropdown-menu li a:hover {
  color: var(--accent);
  background: rgba(0, 232, 123, 0.06);
}

/* ==================== MOBILE NAV OPEN ==================== */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 80px 32px;
}

.nav-links.open a {
  font-size: 24px;
  color: var(--text-primary);
}

.nav-links.open .nav-dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: 8px 0 0;
  min-width: 0;
}

.nav-links.open .nav-dropdown-menu li a {
  font-size: 16px;
  padding: 6px 16px;
  text-align: center;
}

/* ==================== TRAINER PAGE ==================== */
.trainer-profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.trainer-profile.reverse {
  direction: rtl;
}

.trainer-profile.reverse>* {
  direction: ltr;
}

.trainer-photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
}

.trainer-photo-corner {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 60px;
  height: 60px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  border-radius: var(--radius) 0 0 0;
  z-index: 2;
  pointer-events: none;
}

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

.trainer-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  align-self: flex-start;
}

.trainer-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--text-primary);
}

.trainer-discipline {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.trainer-bio p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.trainer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.trainer-tag {
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.trainer-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.trainer-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* Trainer card (used on sub-pages like kickboxing.html) */
.trainer-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.trainer-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.trainer-avatar-initials {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.6;
}

.trainer-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.trainer-card .trainer-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1;
}

.trainer-card .trainer-bio {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 480px;
}

/* ==================== PHILOSOPHY SECTION ==================== */
.philosophy-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

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

.philosophy-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
}

.philosophy-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.philosophy-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
  position: relative;
  padding: 100px 40px;
  text-align: center;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 232, 123, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== TRAINING FEATURES ==================== */
.training-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.training-feature {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.training-feature:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.training-feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 12px;
  color: var(--accent);
  font-weight: 700;
  font-family: 'Big Shoulders Display', sans-serif;
}

.training-feature-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.training-feature-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ==================== WHAT IS GRID / EQUIPMENT ==================== */
.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.what-is-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.what-is-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.what-is-image:hover img {
  transform: scale(1.03);
}

.what-is-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  pointer-events: none;
}

.what-is-image::before {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 60px;
  height: 60px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  border-radius: 0 0 var(--radius) 0;
  z-index: 2;
}

.equipment-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.equipment-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
}

.equipment-check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

.equipment-item-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.equipment-item-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 4px;
}

.equipment-note {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-inner);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.equipment-note strong {
  color: var(--accent);
  font-weight: 600;
}

/* ==================== TWO-COL GRID (fitness page) ==================== */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.col-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.col-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  pointer-events: none;
}

.col-image::before {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 60px;
  height: 60px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  border-radius: 0 0 var(--radius) 0;
  z-index: 2;
}

/* ==================== DIVIDER SECTION ==================== */
.divider-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

/* ==================== STATS ROW ==================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 48px;
}

.stat-item {
  background: var(--bg-card);
  padding: 32px;
  text-align: center;
  transition: background 0.3s ease;
}

.stat-item:hover {
  background: var(--bg-elevated);
}

.stat-value {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ==================== FEATURES GRID (fitness page) ==================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

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

.feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 12px;
  color: var(--accent);
  font-weight: 700;
  font-family: 'Big Shoulders Display', sans-serif;
}

.feature-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ==================== COURSE SPLIT CARDS ==================== */
.course-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: -40px;
  position: relative;
  z-index: 5;
}

.course-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  transition: border-color 0.3s ease;
}

.course-card:hover {
  border-color: var(--border-accent);
}

.course-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.course-card-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3vw, 38px);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}

.course-card-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.course-card-stats {
  display: flex;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.course-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.course-stat-value {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--accent);
}

.course-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==================== SCHEDULE GRID (fitness page) ==================== */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.schedule-block {
  background: var(--bg-card);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.3s ease;
}

.schedule-block:hover {
  background: var(--bg-elevated);
}

.schedule-block-label {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.schedule-block-days {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.schedule-block-time {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--text-primary);
}

/* ==================== NEWS FEED ==================== */
.news-feed {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.feed-item {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.feed-item:first-child {
  padding-top: 0;
}

.feed-item:last-child {
  border-bottom: none;
}

.feed-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.6s ease;
}

@media (max-width: 900px) {
  .feed-item {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feed-img {
    aspect-ratio: 16/9;
  }
}

.feed-item:hover .feed-img {
  transform: scale(1.01);
}

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

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

.feed-category {
  display: inline-flex;
  padding: 4px 10px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.feed-date {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.feed-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--text-primary);
}

.feed-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 680px;
}

.feed-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: var(--accent);
  color: #050505;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-inner);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease;
  margin-top: 16px;
  align-self: flex-start;
}

.feed-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(0, 232, 123, 0.3);
  gap: 12px;
}

.feed-link span {
  transition: transform 0.3s ease;
}

.feed-link:hover span {
  transform: translateX(4px);
}

.feed-link:hover {
  gap: 12px;
}

.feed-link span {
  transition: transform 0.3s ease;
}

.feed-link:hover span {
  transform: translateX(4px);
}

/* ==================== SCROLL ANIMATIONS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

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

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .schedule-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .schedule-strip-inner {
    grid-template-columns: 1fr;
  }

  .trainer-profile {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trainer-profile.reverse {
    direction: ltr;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .training-features {
    grid-template-columns: 1fr 1fr;
  }

  .equipment-grid {
    grid-template-columns: 1fr 1fr;
  }

  .what-is-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .course-split {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .trainer-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .trainer-card .trainer-bio {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .courses-section,
  .about-section {
    padding: 80px 16px;
  }

  .schedule-section {
    padding: 80px 16px;
  }

  .navbar {
    padding: 16px 20px;
  }

  /* ---- MOBILE FULLSCREEN MENU ---- */
  .nav-toggle {
    display: flex !important;
  }

  .nav-links {
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100dvh !important;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 99990;
    background: rgba(5, 5, 5, 0.98);
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0.4s;
  }


  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links>li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .nav-links.open>li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.open>li:nth-child(1) {
    transition-delay: 0.06s;
  }

  .nav-links.open>li:nth-child(2) {
    transition-delay: 0.12s;
  }

  .nav-links.open>li:nth-child(3) {
    transition-delay: 0.18s;
  }

  .nav-links.open>li:nth-child(4) {
    transition-delay: 0.24s;
  }

  .nav-links.open>li:nth-child(5) {
    transition-delay: 0.30s;
  }

  .nav-links>li>a {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    padding: 12px 0;
    display: block;
    text-align: center;
  }

  .nav-links>li>a:hover,
  .nav-links>li>a:focus {
    color: var(--accent);
  }

  .nav-links .nav-cta {
    margin-top: 16px;
    font-size: 18px;
    padding: 14px 40px;
  }

  /* Mobile dropdown — inline accordion */
  .nav-dropdown-menu {
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    display: none;
    padding: 4px 0 8px;
    min-width: unset;
  }

  .nav-dropdown.dropdown-open .nav-dropdown-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .nav-dropdown-menu li a {
    font-size: 18px;
    color: var(--text-secondary);
    padding: 8px 0;
  }

  .nav-dropdown-menu li a:hover {
    color: var(--accent);
  }

  .nav-dropdown>a .dropdown-arrow {
    transition: transform 0.3s ease;
  }

  .nav-dropdown.dropdown-open>a .dropdown-arrow {
    transform: rotate(180deg);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .schedule-strip {
    padding: 0 20px;
    margin-top: -30px;
  }

  .hero-canvas-wrap {
    display: none;
  }

  .hero {
    min-height: 70vh;
    padding-bottom: 60px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .content-section {
    padding: 80px 20px;
  }

  .training-features {
    grid-template-columns: 1fr;
  }

  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .trainer-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 32px;
  }

  .trainer-avatar {
    margin: 0 auto;
  }

  .cta-banner {
    padding: 60px 20px;
  }

  .course-split {
    padding: 0 20px;
    margin-top: -30px;
  }
}

@media (max-width: 480px) {
  .card-visual {
    height: 200px;
  }

  .card-body {
    padding: 20px 24px 28px;
  }

  .card-title {
    font-size: 24px;
  }

  .hero-title {
    font-size: 48px;
  }
}