:root {
  --gold: #FFB800;
  --orange: #FF7A00;
  --blue: #00BFFF;
  --pink: #FF4FA0;
  --purple: #9B5DE5;
  --green: #06D6A0;
  --bg: #07071A;
  --bg2: #0C0C25;
  --card-bg: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --text: #FFFFFF;
  --muted: rgba(255, 255, 255, 0.55);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  overflow-x: hidden;
}

/* ===== ANIMATED STARS BG ===== */
.stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: twinkle ease-in-out infinite;
}

@keyframes twinkle {

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

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

/* ===== FLOATING SHAPES ===== */
.shapes {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: drift ease-in-out infinite alternate;
  opacity: 0.25;
}

.s1 {
  width: 500px;
  height: 500px;
  background: var(--blue);
  top: -100px;
  left: -80px;
  animation-duration: 18s;
}

.s2 {
  width: 400px;
  height: 400px;
  background: var(--pink);
  bottom: -80px;
  right: -60px;
  animation-duration: 22s;
  animation-delay: -8s;
}

.s3 {
  width: 350px;
  height: 350px;
  background: var(--gold);
  top: 40%;
  left: 40%;
  animation-duration: 15s;
  animation-delay: -4s;
}

@keyframes drift {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(40px, -30px) scale(1.15);
  }
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  backdrop-filter: blur(24px);
  background: rgba(7, 7, 26, 0.8);
  border-bottom: 1px solid rgba(255, 184, 0, 0.12);
  transition: all 0.3s;
}

nav.scrolled {
  padding: 12px 48px;
  box-shadow: 0 4px 40px rgba(0, 191, 255, 0.06);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.nav-logo .top {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-logo .bottom {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav-date {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-date::before {
  content: '📅';
  font-size: 0.9rem;
}

.btn-nav {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
  padding: 10px 24px;
  border-radius: 40px;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 0 24px rgba(255, 184, 0, 0.25);
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 184, 0, 0.5);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}

/* Ticket-style decorative element */
.ticket-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 184, 0, 0.08);
  border: 1px solid rgba(255, 184, 0, 0.25);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  animation: fadeUp 0.8s ease both;
}

.ticket-label .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

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

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

.hero-emoji-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 2.4rem;
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.05s ease both;
}

.hero-emoji {
  display: inline-block;
  animation: bounce 2s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(255, 184, 0, 0.4));
}

.hero-emoji:nth-child(2) {
  animation-delay: 0.3s;
}

.hero-emoji:nth-child(3) {
  animation-delay: 0.6s;
}

.hero-emoji:nth-child(4) {
  animation-delay: 0.9s;
}

.hero-emoji:nth-child(5) {
  animation-delay: 1.2s;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.hero-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2.4rem, 6.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  animation: fadeUp 0.9s 0.1s ease both;
}

.hero-title .t1 {
  display: block;
  color: var(--text);
}

.hero-title .t2 {
  display: block;
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--pink), var(--blue), var(--purple));
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeUp 0.9s 0.1s ease both, gradMove 5s ease-in-out infinite;
}

@keyframes gradMove {

  0%,
  100% {
    background-position: 0%
  }

  50% {
    background-position: 100%
  }
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fadeUp 1s 0.2s ease both;
}

.hero-sub strong {
  color: var(--text);
  font-weight: 700;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.3s ease both;
}

.count-unit {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  min-width: 80px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.count-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.count-lbl {
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.4s ease both;
}

.btn-main {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
  padding: 18px 44px;
  border-radius: 50px;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 0 50px rgba(255, 184, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-main:hover::after {
  opacity: 1;
}

.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 60px rgba(255, 184, 0, 0.55);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 18px 44px;
  border-radius: 50px;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.2);
  transform: translateY(-3px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ===== SECTION COMMONS ===== */
section {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.sec-head {
  text-align: center;
  margin-bottom: 56px;
}

.sec-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255, 184, 0, 0.3);
  border-radius: 30px;
  padding: 6px 18px;
  margin-bottom: 16px;
}

.sec-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.sec-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 540px;
  margin: 14px auto 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== ABOUT SECTION ===== */
.about {
  padding: 100px 40px;
}

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

.about-text h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.25;
}

.about-text h3 span {
  color: var(--gold);
}

.about-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text p strong {
  color: var(--text);
}

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

.about-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.3s;
}

.about-card:hover {
  border-color: rgba(255, 184, 0, 0.25);
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(6px);
}

.ac-icon {
  font-size: 2rem;
  width: 56px;
  height: 56px;
  background: rgba(255, 184, 0, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ac-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.ac-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ===== WHO SECTION ===== */
.who {
  padding: 100px 40px;
  background: rgba(255, 255, 255, 0.01);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.who-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.who-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.who-card:hover::before {
  transform: scaleX(1);
}

.who-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.who-emoji {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}

.who-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.who-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  background: linear-gradient(145deg, rgba(255, 184, 0, 0.08), rgba(255, 122, 0, 0.06));
  border-color: rgba(255, 184, 0, 0.3);
  box-shadow: 0 0 60px rgba(255, 184, 0, 0.08);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.feat-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 0 0 14px 14px;
}

.price-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  margin-top: 8px;
}

.price-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.price-tag {
  font-family: 'Unbounded', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.price-tag small {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
}

.price-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.price-features li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

.price-features li strong {
  color: var(--text);
}

.price-btn {
  display: block;
  padding: 14px;
  border-radius: 14px;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  text-align: center;
}

.price-btn-main {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
  box-shadow: 0 4px 24px rgba(255, 184, 0, 0.3);
}

.price-btn-main:hover {
  box-shadow: 0 8px 40px rgba(255, 184, 0, 0.5);
  transform: translateY(-2px);
}

.price-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.price-btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ===== PROGRAM ===== */
.program {
  padding: 100px 40px;
  background: rgba(255, 255, 255, 0.01);
}

.timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 184, 0, 0.3) 10%, rgba(255, 184, 0, 0.3) 90%, transparent);
}

.tl-item {
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.tl-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid rgba(255, 184, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.tl-item:hover .tl-dot {
  background: rgba(255, 184, 0, 0.2);
  box-shadow: 0 0 30px rgba(255, 184, 0, 0.3);
  transform: scale(1.1);
}

.tl-body {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 24px;
  flex: 1;
  transition: all 0.3s;
}

.tl-item:hover .tl-body {
  border-color: rgba(255, 184, 0, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.tl-time {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.tl-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.tl-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== AUDIENCE ===== */
.audience {
  padding: 100px 40px;
}

.audience-inner {
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.05), rgba(255, 79, 160, 0.05));
  border: 1px solid var(--border);
  border-radius: 36px;
  padding: 72px 60px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.audience-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg, transparent 0%, rgba(255, 184, 0, 0.03) 25%, transparent 50%);
  animation: spin 30s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.audience-stars {
  font-size: 1.4rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.audience-text {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.audience-text span {
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.audience-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}

/* ===== FORM ===== */
.reg {
  padding: 100px 40px;
  background: rgba(255, 255, 255, 0.01);
}

.reg-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.reg-info h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.25;
}

.reg-info h3 span {
  color: var(--gold);
}

.reg-info p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
}

.contact-item .ci-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 184, 0, 0.08);
  border: 1px solid rgba(255, 184, 0, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item span {
  color: var(--muted);
}

.contact-item a {
  color: var(--gold);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.reg-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.f-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}

.f-input,
.f-select,
.f-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: all 0.3s;
  -webkit-appearance: none;
}

.f-select option {
  background: #0C0C25;
}

.f-input:focus,
.f-select:focus,
.f-textarea:focus {
  border-color: rgba(255, 184, 0, 0.45);
  box-shadow: 0 0 20px rgba(255, 184, 0, 0.08);
}

.f-input::placeholder,
.f-textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.f-textarea {
  min-height: 110px;
  resize: vertical;
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.f-submit {
  width: 100%;
  padding: 17px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 4px;
}

.f-submit:hover {
  box-shadow: 0 8px 40px rgba(255, 184, 0, 0.45);
  transform: translateY(-2px);
}

.f-note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 48px 32px;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
}

.footer-logo span {
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
}

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

.s-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.3s;
}

.s-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 15px rgba(255, 184, 0, 0.3);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-brand {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-brand a {
  color: var(--gold);
  text-decoration: none;
}

@media (max-width:900px) {
  nav {
    padding: 14px 20px;
  }

  .nav-date {
    display: none;
  }

  .about-grid,
  .reg-inner,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid .price-card.featured {
    order: -1;
  }

  .about,
  .who,
  .pricing,
  .program,
  .audience,
  .reg {
    padding: 60px 20px;
  }

  .audience-inner {
    padding: 48px 24px;
  }

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

  footer {
    padding: 40px 20px 24px;
  }

  .hero {
    padding: 100px 20px 60px;
  }
}

@media (min-width: 901px) {
  .d-none-desktop {
    display: none !important;
  }
}