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

html, body {
  background: #ffffff !important;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  color: #1e1b4b;
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

:root {
  --vd: #2d0b6b;
  --vm: #5b21b6;
  --vb: #7c3aed;
  --vs: #ede9fe;
  --vss: #f5f3ff;
  --gold: #c8961a;
  --border: rgba(124, 58, 237, 0.15);
  --shadow: 0 8px 40px rgba(91, 33, 182, 0.12);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  min-height: 100svh;
  overflow: hidden;
  background: #fff;
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 70px 52px;
  background: linear-gradient(160deg, var(--vd) 0%, var(--vm) 60%, var(--vb) 100%);
}

.hero-panel::before {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 65%);
  content: "";
  pointer-events: none;
}

.hero-panel::after {
  position: absolute;
  right: -20px;
  bottom: -40px;
  color: rgba(255, 255, 255, 0.04);
  content: "S";
  font-size: 320px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 28px;
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: fadeUp 0.7s ease both;
}

.hero-title {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.92;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-title span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-divider {
  width: 44px;
  height: 2px;
  margin: 24px 0;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-desc {
  max-width: 340px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  line-height: 1.75;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeUp 0.7s 0.4s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-white {
  background: #fff;
  color: var(--vm);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.btn-white:hover,
.btn-wa-alt:hover,
.s-btn:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

.hero-img-col {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: #fff !important;
  perspective: 900px;
}

/* Background elements removed for a clean white experience */

.dance-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 455px;
  max-height: 92vh;
  object-fit: contain;
  object-position: center top;
  filter: contrast(1.04) saturate(1.08); /* Removed shadows to kill grey line */
  transform: rotateY(-7deg) rotateX(2deg) translateZ(26px) scale(1.06);
  transform-origin: center bottom;
  transition: transform 0.45s ease, filter 0.45s ease;
  animation:
    riseUp 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both,
    danceGroove 4.8s 1.35s ease-in-out infinite;
}

.hero-img-col:hover .dance-img {
  filter: contrast(1.05) saturate(1.1);
  transform: rotateY(-3deg) rotateX(1deg) translateY(-10px) translateZ(42px) scale(1.09);
  animation-play-state: paused;
}

.float-card {
  position: absolute;
  top: 36px;
  right: 16px;
  z-index: 4;
  max-width: 160px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.14);
  animation: fadeUp 1s 0.8s ease both;
}

.float-card-name {
  margin-bottom: 2px;
  color: var(--vd);
  font-size: 13px;
  font-weight: 800;
}

.float-card-role {
  color: var(--vb);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.float-card-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s ease-in-out infinite;
}

.marquee-wrap {
  overflow: hidden;
  padding: 13px 0;
  background: var(--vd);
}

.marquee-track {
  display: flex;
  color: rgba(240, 192, 64, 0.85);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  margin-right: 28px;
}

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 72px 24px;
}

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

.sec-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--vb);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.sec-eyebrow::before {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--vb);
  content: "";
}

.sec-title {
  margin-bottom: 34px;
  color: var(--vd);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
}

/* ===== Personal Brand Bento Grid ===== */
.brand-bento-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 40px;
}

.brand-bento-item {
  position: relative;
  padding: 40px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.brand-main {
  grid-row: span 2;
  background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-dance {
  background: #f8fafc;
}

.brand-visionary {
  background: #0f172a;
  color: #fff;
}

.brand-visionary h3,
.brand-visionary .brand-sub {
  color: #fff;
}

.brand-visionary .brand-sub {
  opacity: 0.8;
  font-size: 14px;
}

.brand-method {
  grid-column: span 2;
  background: #fff;
}

.brand-bento-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--vb);
}

.brand-badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--vd);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-bento-item h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 800;
}

.brand-list {
  padding: 0;
  list-style: none;
  font-size: 15px;
  color: #64748b;
}

.brand-list li {
  margin-bottom: 8px;
}

.brand-list li::before {
  content: "•";
  margin-right: 8px;
  color: var(--vb);
}

.brand-social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.brand-social-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.brand-social-btn.yt {
  background: #ef4444;
  color: #fff;
}

.brand-social-btn.ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.brand-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

@media (max-width: 1000px) {
  .brand-bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brand-main {
    grid-row: span 1;
    grid-column: span 2;
  }

  .brand-method {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .brand-bento-grid {
    grid-template-columns: 1fr;
  }

  .brand-main,
  .brand-method {
    grid-column: span 1;
  }

  .brand-bento-item {
    padding: 30px;
  }
}

.curr-intro {
  max-width: 680px;
  margin: -20px 0 28px;
  color: #5f5870;
  font-size: 14px;
  line-height: 1.75;
}

.curr-grid,
.sched-grid,
.support-grid,
.fee-grid {
  display: grid;
}

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

.curr-item,
.sched-card,
.supp-item,
.form-box {
  border: 1px solid var(--border);
  background: #fff;
}

.curr-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 142px;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.05);
  transition: all 0.25s ease;
}

.curr-item:hover,
.supp-item:hover {
  border-color: var(--vb);
  box-shadow: var(--shadow);
}

.curr-item:hover {
  transform: translateY(-4px);
}

.curr-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--vs), #fff);
  box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.12);
  font-size: 20px;
}

.curr-no {
  display: block;
  margin-bottom: 6px;
  color: var(--vb);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.curr-label {
  margin: 0 0 7px;
  color: #1e1b4b;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.curr-item p {
  color: #625b72;
  font-size: 12.5px;
  line-height: 1.6;
}

.curr-feature {
  grid-column: 1 / -1;
  min-height: auto;
  border-color: rgba(200, 150, 26, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 243, 255, 0.96)),
    #fff;
}

.curr-feature .curr-icon {
  background: linear-gradient(135deg, rgba(200, 150, 26, 0.2), #fff);
}

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

.sched-card {
  position: relative;
  overflow: hidden;
  padding: 22px 20px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.05);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  animation: cardFloatIn 0.7s ease forwards;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.sched-card::after {
  position: absolute;
  right: -26px;
  bottom: -34px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.06);
  content: "";
  transform: scale(0.8);
  transition: transform 0.35s ease, background 0.35s ease;
}

.sched-card:nth-child(1) {
  animation-delay: 0.05s;
}

.sched-card:nth-child(2) {
  animation-delay: 0.14s;
}

.sched-card:nth-child(3) {
  animation-delay: 0.23s;
}

.sched-card:nth-child(4) {
  animation-delay: 0.32s;
}

.sched-card:nth-child(5) {
  animation-delay: 0.41s;
}

.sched-card:hover,
.fee-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px) scale(1.01);
}

.sched-card:hover::after {
  background: rgba(124, 58, 237, 0.1);
  transform: scale(1.2);
}

.sched-card.full {
  display: flex;
  gap: 16px;
  grid-column: 1 / -1;
  align-items: flex-start;
  border-color: rgba(200, 150, 26, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.92)),
    #fff;
}

.sched-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  place-items: center;
  border-radius: 14px;
  background: var(--vss);
  color: var(--vb);
}

.sched-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.sched-card:hover .sched-icon {
  animation: iconBeat 0.75s ease;
}

.sched-key {
  position: relative;
  z-index: 1;
  margin-bottom: 5px;
  color: var(--vb);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.sched-val {
  position: relative;
  z-index: 1;
  color: var(--vd);
  font-size: 16px;
  font-weight: 700;
}

.sched-note {
  position: relative;
  z-index: 1;
  max-width: 610px;
  margin-top: 8px;
  color: #625b72;
  font-size: 12.5px;
  line-height: 1.65;
}

.fee-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.fee-intro {
  max-width: 660px;
  margin: -20px 0 28px;
  color: #5f5870;
  font-size: 14px;
  line-height: 1.75;
}

.fee-card {
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.fee-featured {
  border-color: rgba(200, 150, 26, 0.7);
  box-shadow: 0 18px 50px rgba(91, 33, 182, 0.16);
  transform: translateY(-8px);
}

.fee-head {
  position: relative;
  padding: 20px 20px 16px;
}

.fee-card:nth-child(1) .fee-head {
  background: linear-gradient(135deg, var(--vd), var(--vm));
}

.fee-card:nth-child(2) .fee-head {
  background: linear-gradient(135deg, var(--vm), var(--vb));
}

.fee-card:nth-child(3) .fee-head {
  background: linear-gradient(135deg, var(--vb), #9333ea);
}

.fee-slot-tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.fee-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fee-tier-name {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.formStatus {
  display: none;
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}

.formStatus.show {
  display: block;
  animation: fadeUp 0.5s ease both;
}

.fee-body {
  padding: 22px 20px;
  text-align: center;
}

.fee-amount {
  margin-bottom: 4px;
  color: #7c3aed !important;
  /* ELECTRIC VIOLET */
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
  /* VIOLET GLOW */
}

.fee-month {
  margin-bottom: 6px;
  color: #999;
  font-size: 12px;
}

.fee-per-class {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--vss);
  color: var(--vb);
  font-size: 11px;
  font-weight: 800;
}

.fee-divider {
  height: 1px;
  margin-bottom: 14px;
  background: var(--border);
}

.fee-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: #514a5f;
  font-size: 12.5px;
  line-height: 1.55;
  text-align: left;
}

.fee-list li {
  position: relative;
  padding-left: 18px;
}

.fee-list li+li {
  margin-top: 8px;
}

.fee-list li::before {
  position: absolute;
  left: 0;
  color: var(--vb);
  content: "✓";
  font-weight: 800;
}

.fee-cta {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--vd), var(--vb));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fee-cta:hover {
  box-shadow: 0 12px 30px rgba(91, 33, 182, 0.28);
  transform: translateY(-2px);
}

.fee-cta-muted {
  background: var(--vss);
  color: var(--vd);
  box-shadow: inset 0 0 0 1px var(--border);
}

.fee-alert {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 18px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 12px;
  margin-top: 14px;
  background: #fff;
  color: #1e1b4b;
  font-size: 12.5px;
  line-height: 1.6;
}

.fee-alert b {
  color: var(--vb);
}

.fee-alert>span:first-child {
  flex: 0 0 auto;
  color: var(--vb);
  font-weight: 800;
}

.payment-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(45, 11, 107, 0.96), rgba(91, 33, 182, 0.92)),
    var(--vd);
  color: #fff;
  box-shadow: var(--shadow);
}

.payment-label {
  margin-bottom: 6px;
  color: rgba(240, 192, 64, 0.9);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.payment-box h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.payment-box p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.65;
}

.payment-points {
  display: grid;
  gap: 8px;
}

.payment-points span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

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

.supp-item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 138px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  color: #1e1b4b;
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  animation: supportFloat 5.8s ease-in-out infinite;
}

.supp-item:nth-child(2) {
  animation-delay: 0.2s;
}

.supp-item:nth-child(3) {
  animation-delay: 0.4s;
}

.supp-item:nth-child(4) {
  animation-delay: 0.6s;
}

.supp-item:nth-child(5) {
  animation-delay: 0.8s;
}

.supp-item:nth-child(6) {
  animation-delay: 1s;
}

.supp-item::after {
  position: absolute;
  right: -24px;
  bottom: -34px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.06);
  content: "";
  transition: transform 0.35s ease, background 0.35s ease;
}

.supp-item:hover {
  border-color: var(--vb);
  box-shadow: var(--shadow);
  transform: translateY(-7px) scale(1.01);
  animation-play-state: paused;
}

.supp-item:hover::after {
  background: rgba(124, 58, 237, 0.12);
  transform: scale(1.2);
}

.supp-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 14px;
  background: var(--vss);
  color: var(--vb);
  font-size: 12px;
  font-weight: 800;
}

.supp-item h3,
.supp-item p {
  position: relative;
  z-index: 1;
}

.supp-item h3 {
  margin-bottom: 7px;
  color: var(--vd);
  font-size: 16px;
  line-height: 1.25;
}

.supp-item p {
  color: #625b72;
  font-size: 12.5px;
  line-height: 1.6;
}

.supp-feature,
.supp-promise {
  grid-column: 1 / -1;
}

.supp-feature {
  border-color: rgba(200, 150, 26, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.94)),
    #fff;
}

.supp-promise {
  min-height: auto;
  background: linear-gradient(135deg, var(--vd), var(--vm));
}

.supp-promise .supp-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.supp-promise h3 {
  color: #fff;
}

.supp-promise p {
  color: rgba(255, 255, 255, 0.7);
}

.tagline-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.tagline-section .sec-eyebrow {
  justify-content: center;
}

.tagline {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  color: var(--vd);
  font-size: clamp(32px, 6vw, 62px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
  text-shadow: 0 10px 28px rgba(91, 33, 182, 0.12);
}

.tag-orbit {
  position: absolute;
  z-index: 0;
  display: grid;
  width: clamp(48px, 8vw, 74px);
  height: clamp(48px, 8vw, 74px);
  place-items: center;
  border: 1px solid rgba(124, 58, 237, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(237, 233, 254, 0.86)),
    #fff;
  box-shadow:
    0 18px 35px rgba(91, 33, 182, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: clamp(24px, 4vw, 36px);
  transform-style: preserve-3d;
  animation: tagFloat 5.5s ease-in-out infinite;
}

.tag-orbit-one {
  top: 44px;
  left: 34px;
  transform: rotate(-10deg);
}

.tag-orbit-two {
  right: 52px;
  bottom: 54px;
  animation-delay: 0.8s;
  transform: rotate(9deg);
}

.tag-orbit-three {
  top: 36px;
  right: 24%;
  animation-delay: 1.4s;
  transform: rotate(7deg);
}

.join-section {
  position: relative;
  overflow: hidden;
}

.join-section::before {
  position: absolute;
  inset: 34px 0 auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12), transparent 68%);
  content: "";
  pointer-events: none;
}

.join-float {
  position: absolute;
  z-index: 0;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(124, 58, 237, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 38px rgba(91, 33, 182, 0.12);
  font-size: 26px;
  animation: joinFloat 5.2s ease-in-out infinite;
}

.join-float-one {
  top: 58px;
  right: 18px;
}

.join-float-two {
  bottom: 70px;
  left: 8px;
  animation-delay: 0.9s;
}

.join-float-three {
  top: 46%;
  right: 42%;
  animation-delay: 1.5s;
}

.join-section>.sec-eyebrow,
.join-section>.sec-title,
.join-section .form-layout {
  position: relative;
  z-index: 1;
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 36px;
  align-items: start;
  perspective: 1100px;
}

.join-pill {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 13px;
  border: 1px solid rgba(124, 58, 237, 0.16);
  border-radius: 999px;
  background: var(--vss);
  color: var(--vb);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-info-title {
  margin-bottom: 10px;
  color: var(--vd);
  font-size: 20px;
  font-weight: 800;
}

.form-info-desc {
  margin-bottom: 22px;
  color: #555;
  font-size: 13.5px;
  line-height: 1.7;
}

.form-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}

.form-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  transform: translateX(0);
  transition: transform 0.25s ease, color 0.25s ease;
}

.form-feat:hover {
  color: var(--vd);
  transform: translateX(5px);
}

.form-feat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vd), var(--vb));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.btn-wa-alt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  background: #25d366;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.25s;
}

.form-box {
  position: relative;
  overflow: hidden;
  padding: 32px 28px;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 243, 255, 0.72)),
    #fff;
  box-shadow:
    0 24px 70px rgba(91, 33, 182, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: rotateY(-2deg) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.form-box::before {
  position: absolute;
  top: -80px;
  right: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.11);
  content: "";
}

.form-box:hover {
  box-shadow:
    0 32px 90px rgba(91, 33, 182, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: rotateY(0deg) translateY(-5px);
}

.form-box-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.form-box-head span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 15px;
  background: var(--vss);
  font-size: 22px;
  animation: iconBeat 2.8s ease-in-out infinite;
}

.form-box-head h3 {
  color: var(--vd);
  font-size: 17px;
}

.form-box-head p {
  color: #777083;
  font-size: 12px;
  line-height: 1.5;
}

.form-box form {
  position: relative;
  z-index: 1;
}

.field-group {
  margin-bottom: 18px;
  animation: fieldRise 0.7s ease both;
}

.field-group:nth-child(2) {
  animation-delay: 0.06s;
}

.field-group:nth-child(3) {
  animation-delay: 0.12s;
}

.field-group:nth-child(4) {
  animation-delay: 0.18s;
}

.field-group:nth-child(5) {
  animation-delay: 0.24s;
}

.field-group:nth-child(6) {
  animation-delay: 0.3s;
}

.field-label {
  display: block;
  margin-bottom: 7px;
  color: var(--vd);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  appearance: none;
  background: #fff;
  color: #1e1b4b;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field-input:focus {
  border-color: var(--vb);
  box-shadow:
    0 0 0 3px rgba(124, 58, 237, 0.1),
    0 12px 28px rgba(91, 33, 182, 0.08);
  transform: translateY(-1px);
}

.field-select {
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237C3AED' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 6px;
  padding: 14px;
  border: none;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--vd), var(--vb));
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(91, 33, 182, 0.3);
  transition: all 0.25s;
}

.form-submit:hover {
  box-shadow: 0 12px 32px rgba(91, 33, 182, 0.45);
  transform: translateY(-2px);
}

.form-submit:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}

.form-note {
  margin-top: 12px;
  color: #999;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.form-success {
  display: none;
  margin-top: 14px;
  padding: 18px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
  text-align: left;
  animation: successPop 0.58s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.form-success.show {
  display: block;
}

.form-success.success {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 50;
  width: min(420px, calc(100vw - 32px));
  margin: 0;
  padding: 30px 24px 26px;
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(45, 11, 107, 0.96), rgba(91, 33, 182, 0.92)),
    var(--vd);
  color: #fff;
  box-shadow:
    0 30px 90px rgba(45, 11, 107, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  text-align: center;
  transform: translate(-50%, -50%);
  animation: successCenterPop 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.form-success.success::before {
  position: fixed;
  inset: -100vh;
  z-index: -1;
  background: rgba(17, 12, 35, 0.5);
  content: "";
  backdrop-filter: blur(5px);
}

.form-success.success::after {
  position: absolute;
  inset: -8px;
  z-index: -1;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(200, 150, 26, 0.75), rgba(124, 58, 237, 0.45));
  content: "";
  filter: blur(14px);
  opacity: 0.7;
}

.form-success.error {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.success-title {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 800;
  line-height: 1.1;
}

.success-sub {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12.5px;
}

.success-emoji {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-size: 36px;
  animation: successEmojiDance 1.5s ease-in-out infinite;
}

.success-mini {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  letter-spacing: 0.3em;
}

.cta-wrap {
  padding: 0 24px 80px;
}

.cta-block {
  position: relative;
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
  padding: 74px 40px 64px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(200, 150, 26, 0.24), transparent 30%),
    radial-gradient(circle at 88% 78%, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(135deg, var(--vd) 0%, var(--vm) 55%, var(--vb) 100%);
  box-shadow: 0 32px 90px rgba(45, 11, 107, 0.24);
  text-align: center;
}

.cta-block::before {
  position: absolute;
  bottom: -20px;
  left: 50%;
  color: rgba(255, 255, 255, 0.04);
  content: "GROOVES";
  font-size: clamp(60px, 12vw, 120px);
  font-weight: 800;
  letter-spacing: 0.1em;
  pointer-events: none;
  transform: translateX(-50%);
  white-space: nowrap;
  animation: ctaWordSlide 10s ease-in-out infinite;
}

.cta-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(240, 192, 64, 0.95);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cta-title {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto 14px;
  color: #fff;
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.02;
}

.cta-sub {
  position: relative;
  z-index: 1;
  max-width: 590px;
  margin-right: auto;
  margin-bottom: 36px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}

.s-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 100px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all 0.25s;
}

.s-btn.wa {
  background: #25d366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.s-btn.ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #f7961e);
}

.s-btn.yt {
  background: #f00;
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

.s-btn.register-btn {
  background: #fff;
  color: var(--vd);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.18);
}

.cta-orb {
  position: absolute;
  z-index: 1;
  display: grid;
  width: clamp(48px, 7vw, 68px);
  height: clamp(48px, 7vw, 68px);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 20px 38px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-size: clamp(24px, 4vw, 34px);
  backdrop-filter: blur(8px);
  animation: ctaOrbDance 5.4s ease-in-out infinite;
}

.cta-orb-one {
  top: 28px;
  left: 34px;
}

.cta-orb-two {
  right: 34px;
  bottom: 38px;
  animation-delay: 0.8s;
}

.cta-orb-three {
  top: 34px;
  right: 18%;
  animation-delay: 1.5s;
}

.cta-handle {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

footer {
  padding: 18px 24px 32px;
  color: #aaa;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: center;
}

.reveal>* {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal.visible>*:nth-child(1) {
  transition-delay: 0.1s;
}

.reveal.visible>*:nth-child(2) {
  transition-delay: 0.2s;
}

.reveal.visible>*:nth-child(3) {
  transition-delay: 0.3s;
}

.reveal.visible>*:nth-child(4) {
  transition-delay: 0.4s;
}

.reveal.visible>*:nth-child(5) {
  transition-delay: 0.5s;
}

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

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

@keyframes riseUp {
  from {
    opacity: 0;
    transform: rotateY(-7deg) rotateX(2deg) translateY(60px) translateZ(0) scale(1.01);
  }

  to {
    opacity: 1;
    transform: rotateY(-7deg) rotateX(2deg) translateY(0) translateZ(26px) scale(1.06);
  }
}

@keyframes danceGroove {

  0%,
  100% {
    filter:
      drop-shadow(0 18px 18px rgba(45, 11, 107, 0.14)) drop-shadow(0 34px 34px rgba(45, 11, 107, 0.12)) contrast(1.04) saturate(1.08);
    transform: rotateY(-7deg) rotateX(2deg) translateY(0) translateZ(26px) scale(1.06);
  }

  18% {
    transform: rotateY(-10deg) rotateX(2deg) rotateZ(-1.2deg) translateY(-7px) translateX(-4px) translateZ(30px) scale(1.065);
  }

  36% {
    transform: rotateY(-4deg) rotateX(1deg) rotateZ(1deg) translateY(2px) translateX(5px) translateZ(32px) scale(1.07);
  }

  58% {
    filter:
      drop-shadow(0 22px 20px rgba(45, 11, 107, 0.16)) drop-shadow(0 42px 38px rgba(45, 11, 107, 0.14)) contrast(1.05) saturate(1.1);
    transform: rotateY(-8deg) rotateX(3deg) rotateZ(-0.7deg) translateY(-10px) translateX(-2px) translateZ(40px) scale(1.075);
  }

  76% {
    transform: rotateY(-5deg) rotateX(1deg) rotateZ(0.8deg) translateY(-2px) translateX(3px) translateZ(30px) scale(1.065);
  }
}

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

  .sched-card {
    opacity: 1;
    animation: none;
    transform: none;
  }

  .supp-item {
    animation: none;
  }

  .tag-orbit {
    animation: none;
  }

  .cta-orb,
  .cta-block::before {
    animation: none;
  }

  .join-float,
  .form-box-head span,
  .field-group,
  .form-success {
    animation: none;
  }
}

@keyframes pulse {

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

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes cardFloatIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

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

@keyframes iconBeat {

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

  35% {
    transform: scale(1.12) rotate(-4deg);
  }

  65% {
    transform: scale(1.06) rotate(3deg);
  }
}

@keyframes supportFloat {

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

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

@keyframes tagFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-8deg) rotateX(0deg) rotateY(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(8deg) rotateX(10deg) rotateY(-12deg);
  }
}

@keyframes joinFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-8deg) rotateX(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(8deg) rotateX(12deg);
  }
}

@keyframes ctaOrbDance {

  0%,
  100% {
    transform: translateY(0) rotate(-8deg) rotateX(0deg) scale(1);
  }

  50% {
    transform: translateY(-14px) rotate(9deg) rotateX(14deg) scale(1.08);
  }
}

@keyframes ctaWordSlide {

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

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

@keyframes fieldRise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@keyframes successPop {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.94);
  }

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

@keyframes successCenterPop {
  from {
    opacity: 0;
    transform: translate(-50%, -42%) scale(0.82) rotateX(16deg);
  }

  70% {
    transform: translate(-50%, -51%) scale(1.04) rotateX(0deg);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotateX(0deg);
  }
}

@keyframes successEmojiDance {

  0%,
  100% {
    transform: translateY(0) rotate(-6deg) scale(1);
  }

  50% {
    transform: translateY(-7px) rotate(7deg) scale(1.08);
  }
}

@keyframes pulseRed {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulseRed 2s infinite;
}

/* Glassmorphism Hover Glows */
.curr-item {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.curr-item:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15), 0 0 20px rgba(124, 58, 237, 0.05) inset;
  border-color: rgba(124, 58, 237, 0.4);
}

.fee-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.imm-mantra {
  margin-top: 10px;
  margin-bottom: 50px;
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}

.coach-top-heading {
  text-align: center;
}

.coach-signature {
  margin-top: 30px;
}

/* Signature Styles moved to bottom for better control */
.fee-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 48px rgba(124, 58, 237, 0.18), 0 0 30px rgba(124, 58, 237, 0.05) inset;
  border-color: rgba(124, 58, 237, 0.5);
}

/* Light Sweep Button Animation */
.btn,
.s-btn,
.btn-wa-alt,
.fee-cta,
.form-submit {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn::after,
.s-btn::after,
.btn-wa-alt::after,
.fee-cta::after,
.form-submit::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: none;
  z-index: 1;
}

.btn:hover::after,
.s-btn:hover::after,
.btn-wa-alt:hover::after,
.fee-cta:hover::after,
.form-submit:hover::after {
  animation: lightSweep 0.7s ease-in-out forwards;
}

.btn:hover,
.s-btn:hover,
.btn-wa-alt:hover,
.fee-cta:hover,
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(91, 33, 182, 0.3);
}

@keyframes lightSweep {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

.quick-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }

  .hero-panel {
    order: 2;
    padding: 60px 28px 40px;
  }

  .hero-img-col {
    order: 1;
    min-height: 380px;
    background: #fff !important;
  }

  .dance-img {
    max-width: 345px;
    max-height: 390px;
  }

  .float-card {
    top: 20px;
    right: 12px;
  }

  .form-layout {
    grid-template-columns: 1fr;
  }

  .form-box {
    transform: none;
  }

  .payment-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {

  .curr-grid,
  .sched-grid,
  .fee-grid,
  .support-grid,
  .dna-grid, /* Added for mobile containment */
  .quick-form-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 48px 20px 36px;
  }

  .hero-title {
    font-size: clamp(44px, 12vw, 64px);
  }

  .wrap {
    padding: 52px 18px;
  }

  .cta-block {
    padding: 44px 20px;
  }

  .cta-wrap {
    padding: 0 16px 60px;
  }

  .fee-featured {
    transform: none;
  }

  .tag-orbit {
    opacity: 0.42;
  }

  .tag-orbit-one {
    left: 8px;
  }

  .tag-orbit-two {
    right: 10px;
    bottom: 28px;
  }

  .tag-orbit-three {
    top: 22px;
    right: 18px;
  }

  .join-float {
    opacity: 0.38;
  }

  .join-float-three {
    display: none;
  }

  .cta-orb {
    opacity: 0.42;
  }

  .cta-orb-one {
    top: 18px;
    left: 12px;
  }

  .cta-orb-two {
    right: 12px;
    bottom: 24px;
  }

  .cta-orb-three {
    display: none;
  }
}

@media (max-width: 500px) {
  .form-box {
    padding: 22px 16px;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 42px;
  }

  .fee-amount {
    font-size: 36px;
  }
}

/* ===== FAQ Section: Deep Velvet Theme ===== */
.faq-section {
  position: relative;
  overflow: hidden;
  background: var(--vd);
  padding: 100px 0;
}

.faq-section .sec-eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.faq-section .sec-eyebrow::before {
  background: rgba(255, 255, 255, 0.4);
}

.faq-section .sec-title {
  color: #fff;
}

.faq-orbit {
  position: absolute;
  z-index: 0;
  color: rgba(255, 255, 255, 0.05);
  font-size: 120px;
  pointer-events: none;
  user-select: none;
}

.faq-orbit-1 {
  top: 10%;
  left: -40px;
  animation: orbitFloat 12s infinite alternate;
}

.faq-orbit-2 {
  top: 50%;
  right: -30px;
  font-size: 80px;
  animation: orbitFloat 8s infinite reverse;
}

.faq-orbit-3 {
  bottom: 5%;
  left: 20%;
  font-size: 60px;
  animation: orbitFloat 15s infinite;
}

@keyframes orbitFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-40px) rotate(15deg);
  }
}

.faq-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
  border-color: rgba(124, 58, 237, 0.4);
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(8px);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 30px;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 20px;
  transition: all 0.4s ease;
}

.faq-question[aria-expanded="true"] {
  color: var(--gold);
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: var(--vb);
  background: rgba(124, 58, 237, 0.08);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.15);
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--gold);
  color: #000;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  padding: 0 30px 30px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.8;
}

.faq-answer strong {
  color: #fff;
}

.faq-answer a {
  color: var(--gold);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-question {
    padding: 20px 22px;
    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 22px 22px;
  }

  .faq-orbit {
    font-size: 60px;
  }
}

/* ===== Coach Section: Immersive Mastermind ===== */
.coach-section {
  position: relative;
  overflow: hidden;
  background: #050505;
  padding: 160px 0;
  color: #fff;
}

.coach-bg-text {
  position: absolute;
  top: 55%;
  left: 50%;
  z-index: 1;
  color: rgba(255, 255, 255, 0.15);
  font-size: 11vw;
  /* Reduced from 14vw to prevent cutoff */
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  animation: centeredPulse 12s ease-in-out infinite alternate;
  text-shadow: 0 0 40px rgba(124, 58, 237, 0.2);
}

@keyframes centeredPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.95) translateY(-10px);
    opacity: 0.08;
  }

  50% {
    opacity: 0.15;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.05) translateY(10px);
    opacity: 0.08;
  }
}

.stage-streaks {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(115deg, transparent 40%, rgba(124, 58, 237, 0.05) 50%, transparent 60%);
  background-size: 200% 200%;
  animation: streakFlow 10s linear infinite;
  pointer-events: none;
}

@keyframes streakFlow {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 200% 200%;
  }
}

.immersive-bento {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}

@media (max-width: 900px) {
  .immersive-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }

  .imm-main,
  .imm-visionary {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  .imm-card {
    padding: 32px 24px !important;
    border-radius: 30px !important;
  }

  .imm-title {
    font-size: 32px !important;
  }
}

.imm-card {
  padding: 48px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.imm-main {
  grid-column: span 2;
  grid-row: span 1;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, transparent 100%);
  border-color: rgba(124, 58, 237, 0.2);
}

.imm-badge {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--gold);
  color: #000;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.imm-title {
  margin-bottom: 16px;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(to bottom, #fff 40%, rgba(255, 255, 255, 0.5));
  -webkit-background-clip: text;
  color: transparent;
}

.imm-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  line-height: 1.6;
}

.imm-visionary {
  grid-row: span 2;
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(255, 255, 255, 0.1);
}

.imm-tag {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.imm-sig {
  margin-top: auto;
  padding-top: 40px;
}

.sig-name {
  font-family: 'Dancing Script', cursive;
  font-size: 52px;
  background: linear-gradient(to right, var(--gold), #fde68a, var(--gold));
  -webkit-background-clip: text;
  color: transparent;
  display: block;
  line-height: 1.2;
  margin-bottom: 5px;
  filter: drop-shadow(0 0 10px rgba(200, 150, 26, 0.3));
}

.sig-title {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.imm-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.imm-links a {
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.imm-links a:hover {
  background: var(--vb);
  transform: translateY(-2px);
}

/* --- Main Form Specific Button Upgrade --- */
#enquiryForm .form-submit {
  --vd: #2d0b6b;
  --vm: #5b21b6;
  --vb: #7c3aed;
  --vs: #ede9fe;
  --vss: #f5f3ff;
  --gold: #c8961a;
  --border: rgba(124, 58, 237, 0.15);
  --shadow: 0 8px 40px rgba(91, 33, 182, 0.12);

  box-sizing: border-box;
  margin: 0;
  width: 100%;
  margin-top: 6px;
  font: inherit;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%) !important;
  color: #ffffff !important;
  border: none;
  padding: 22px !important;
  border-radius: 20px;
  font-size: 18px !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.4) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer;
  display: block;
}

#enquiryForm .form-submit:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 30px 60px rgba(124, 58, 237, 0.6) !important;
}

/* Quick Reserve Grid Logic */
.quick-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 640px) {
  .quick-form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.field-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

/* Violet Success State Override */
.quick-box .form-success {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #fff !important;
}

/* ===== The 60-Minute Blueprint: Neural Pulse Timeline ===== */
.weekend-flow {
  padding: 140px 0;
  background: radial-gradient(circle at 50% 50%, #111115 0%, #050505 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.weekend-flow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 45%, rgba(124, 58, 237, 0.05) 50%, transparent 55%);
  background-size: 200% 200%;
  animation: streakFlow 8s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.flow-header {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto 80px;
}

/* Unique 60-Minute Badge */
.blueprint-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  background: rgba(0, 242, 255, 0.05);
  border: 1px solid rgba(0, 242, 255, 0.3);
  border-radius: 100px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  animation: badgePulse 4s infinite;
}

.blueprint-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.2), transparent);
  animation: shine 3s infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.1);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.3);
    transform: scale(1.02);
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.badge-number {
  font-size: 24px;
  font-weight: 900;
  color: #00f2ff;
  letter-spacing: -0.02em;
}

.badge-text {
  font-size: 11px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.8;
}

.flow-header .sec-title {
  color: #ffffff !important;
  margin-bottom: 12px;
}

.flow-header .flow-intro {
  color: rgba(255, 255, 255, 0.7) !important;
}

.flow-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.flow-container::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--vb), var(--gold), transparent);
  content: "";
  opacity: 0.4;
}

.flow-item {
  position: relative;
  display: flex;
  margin-bottom: 60px;
  align-items: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.flow-item:hover {
  transform: translateX(20px);
}

.flow-meta {
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  flex-shrink: 0;
  padding-top: 10px;
  /* Spacing from top */
}

.flow-time,
.flow-tag {
  color: #00f2ff !important;
  /* ELECTRIC CYAN */
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 12px;
  display: block;
  position: relative;
  z-index: 9999 !important;
  opacity: 1 !important;
  text-shadow: 0 0 15px rgba(0, 242, 255, 0.6);
  /* Cyan Glow */
}

.flow-dot {
  width: 44px;
  height: 44px;
  background: #050505;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold) !important;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 0 20px rgba(200, 150, 26, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.flow-item:hover .flow-dot {
  background: var(--gold);
  color: #000 !important;
  transform: scale(1.3);
  box-shadow: 0 0 30px var(--gold);
}

.flow-content {
  margin-left: 60px;
  /* Increased gap to prevent merging */
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  flex-grow: 1;
}

.flow-content h3 {
  color: #ffffff !important;
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 900;
  line-height: 1.2;
}

.flow-content p {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 16px;
  line-height: 1.6;
}

/* ===== Style DNA: Neon Collector Cards (PERFECT CENTER + NEON SOUL) ===== */
.style-dna-gallery {
  margin-top: 100px;
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.dna-header {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.dna-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: rgba(200, 150, 26, 0.05);
}

.dna-header h3 {
  color: #ffffff !important;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 12px;
}

.dna-header p {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 18px;
}

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

.dna-card {
  position: relative;
  padding: 40px 24px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

/* The Neon Aura */
.dna-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: var(--glow-color);
  opacity: 0.1;
  filter: blur(15px);
  transition: opacity 0.4s ease;
  z-index: 1;
}

/* The Neon Breathing Border */
.dna-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--glow-color);
  border-radius: 30px;
  opacity: 0.2;
  transition: all 0.4s ease;
  z-index: 2;
  animation: neonBreath 3s infinite alternate ease-in-out;
}

@keyframes neonBreath {
  0% {
    box-shadow: 0 0 5px var(--glow-color);
    opacity: 0.2;
  }

  100% {
    box-shadow: 0 0 20px var(--glow-color);
    opacity: 0.4;
  }
}

.dna-card:hover {
  transform: translateY(-15px) scale(1.03);
  border-color: var(--glow-color);
  z-index: 10;
}

.dna-card:hover::before {
  opacity: 0.4;
}

.dna-card:hover::after {
  opacity: 1;
  box-shadow: 0 0 30px var(--glow-color);
}

.dna-card * {
  position: relative;
  z-index: 5;
}

.dna-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.dna-card h4 {
  color: #ffffff !important;
  font-size: 22px;
  margin-bottom: 6px;
  font-weight: 900;
}

.dna-card p {
  color: rgba(255, 255, 255, 0.6) !important;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* The Neon Aura */
.dna-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: var(--glow-color);
  opacity: 0.1;
  filter: blur(15px);
  transition: opacity 0.4s ease;
  z-index: 1;
}

/* The Neon Breathing Border */
.dna-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--glow-color);
  border-radius: 30px;
  opacity: 0.2;
  transition: all 0.4s ease;
  z-index: 2;
  animation: neonBreath 3s infinite alternate ease-in-out;
}

@keyframes neonBreath {
  0% {
    box-shadow: 0 0 5px var(--glow-color);
    opacity: 0.2;
  }

  100% {
    box-shadow: 0 0 20px var(--glow-color);
    opacity: 0.4;
  }
}

.dna-card:hover {
  transform: translateY(-15px) scale(1.03);
  border-color: var(--glow-color);
  z-index: 10;
}

.dna-card:hover::before {
  opacity: 0.4;
}

.dna-card:hover::after {
  opacity: 1;
  box-shadow: 0 0 30px var(--glow-color);
}

.dna-card * {
  position: relative;
  z-index: 5;
}

.dna-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.dna-card h4 {
  color: #ffffff !important;
  font-size: 22px;
  margin-bottom: 6px;
  font-weight: 900;
}

.dna-card p {
  color: rgba(255, 255, 255, 0.6) !important;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* DNA Glow Colors */
.dna-hiphop {
  --glow-color: #9333ea;
}

.dna-afro {
  --glow-color: #eab308;
}

.dna-dancehall {
  --glow-color: #22c55e;
}

.dna-krump {
  --glow-color: #ef4444;
}

.dna-locking {
  --glow-color: #3b82f6;
}

.dna-breaking {
  --glow-color: #f97316;
}

.dna-house {
  --glow-color: #06b6d4;
}

.dna-popping {
  --glow-color: #64748b;
}

.dna-waacking {
  --glow-color: #ec4899;
}

/* ===== Secret Sauce: Cinematic Director's Stage ===== */
.storytelling-section {
  background: radial-gradient(circle at center, #0a0a0c 0%, #000 100%);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}

.stage-light {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 100%;
  background: radial-gradient(ellipse at top, rgba(200, 150, 26, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.story-list {
  list-style: none;
  margin-top: 40px;
}

.story-list li {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  border-radius: 20px;
  margin-bottom: 16px;
  transition: all 0.4s ease;
  cursor: default;
}

.story-list li:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(200, 150, 26, 0.3);
  transform: scale(1.05) translateX(10px);
  box-shadow: 0 0 30px rgba(200, 150, 26, 0.1);
}

.story-list li span {
  font-size: 28px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.story-list strong {
  display: block;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 4px;
}

.story-quote-box {
  padding: 80px 50px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  position: relative;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-quote-box:hover {
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  border-color: var(--gold);
}

.story-quote-box::before {
  content: "“";
  position: absolute;
  top: 20px;
  left: 40px;
  font-size: 120px;
  color: var(--gold);
  opacity: 0.15;
  font-family: serif;
}

.cinematic-quote {
  font-size: 34px;
  line-height: 1.3;
  color: #fff !important;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 30px;
}

.cinematic-quote span {
  background: linear-gradient(to right, var(--gold), #fff);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(200, 150, 26, 0.3);
}

.quote-author {
  font-family: 'Dancing Script', cursive;
  font-size: 32px;
  background: linear-gradient(to right, var(--gold), #fde68a);
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 0;
  text-transform: none;
}

/* ===== Quick Reserve: Liquid Violet & Polar White Energy ===== */
/* ===== Quick Reserve: Elite Precision Specs ===== */
#quick-register .wrap {
  --vd: #2d0b6b;
  --vm: #5b21b6;
  --vb: #7c3aed;
  --vs: #ede9fe;
  --vss: #f5f3ff;
  --gold: #c8961a;
  --border: rgba(124, 58, 237, 0.15);
  --shadow: 0 8px 40px rgba(91, 33, 182, 0.12);

  font-family: "DM Sans", sans-serif;
  color: rgb(30, 27, 75);
  box-sizing: border-box;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 40px;

  /* Elite Reveal Physics */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.2s;
}

#quick-register.visible .wrap {
  opacity: 1;
  transform: translateY(0);
}

.quick-box {
  position: relative;
  /* overflow: hidden; Removed to allow status message to expand */
  padding: 32px 28px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 243, 255, 0.72));
  box-shadow: 0 24px 70px rgba(91, 33, 182, 0.1);
  min-height: min-content;
  display: flex;
  flex-direction: column;
}

.quick-box .form-submit {
  width: 100%;
  margin-top: 6px;
  padding: 14px;
  border: none;
  border-radius: 100px;
  background: linear-gradient(135deg, #2d0b6b, #7c3aed);
  /* Deep Violet */
  color: #fff !important;
  /* LOCK WHITE */
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  box-shadow: none !important;
  /* NO NEON */
}

.quick-box .form-submit .btnText {
  color: #fff !important;
  /* LOCK WHITE SPAN */
}

.quick-box .form-submit:hover,
.quick-box .form-submit:active {
  background: #2d0b6b !important;
  /* Solid Deep Violet */
  color: #fff !important;
  /* STAY WHITE */
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
  /* Standard Shadow, No Neon */
}

.quick-box .form-box-head {
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  margin-bottom: 22px;
  padding-bottom: 16px;
}

.quick-box h3 {
  color: var(--vd) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
}

.quick-box p {
  color: #777083 !important;
  font-size: 12px !important;
}

.speed-badge {
  background: var(--vss);
  color: var(--vb) !important;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 10px;
}

.quick-box .field-label {
  color: var(--vd) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
}

.quick-box .field-input {
  background: #fff !important;
  border: 1.5px solid rgba(124, 58, 237, 0.15) !important;
  color: #1e1b4b !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
}

.quick-box .field-input:focus {
  border-color: var(--vb) !important;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1) !important;
}

.quick-box .form-submit {
  width: 100%;
  margin-top: 6px;
  padding: 14px !important;
  border: none;
  border-radius: 100px !important;
  background: linear-gradient(135deg, var(--vd), var(--vb)) !important;
  color: #fff !important;
  cursor: pointer;
  font: inherit;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(91, 33, 182, 0.3) !important;
  transition: all 0.25s !important;
}

.quick-box .form-submit:hover {
  box-shadow: 0 12px 32px rgba(91, 33, 182, 0.45) !important;
  transform: translateY(-2px) !important;
}

.quick-box .formStatus {
  display: none !important;
  color: #1e1b4b !important;
  /* Deep Navy/Black for high contrast */
  margin-top: 30px !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  text-align: center !important;
  text-shadow: none !important;
  background: transparent !important;
  padding: 0;
}

.quick-box .formStatus.show {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.stage-light {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 100%;
  background: radial-gradient(ellipse at top, rgba(200, 150, 26, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.story-list {
  list-style: none;
  margin-top: 40px;
}

.story-list li {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  border-radius: 20px;
  margin-bottom: 16px;
  transition: all 0.4s ease;
  cursor: default;
}

.story-list li:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(200, 150, 26, 0.3);
  transform: scale(1.05) translateX(10px);
  box-shadow: 0 0 30px rgba(200, 150, 26, 0.1);
}

.story-list li span {
  font-size: 28px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.story-list strong {
  display: block;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 4px;
}

.story-quote-box {
  padding: 80px 50px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  position: relative;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-quote-box:hover {
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  border-color: var(--gold);
}

.story-quote-box::before {
  content: "“";
  position: absolute;
  top: 20px;
  left: 40px;
  font-size: 120px;
  color: var(--gold);
  opacity: 0.15;
  font-family: serif;
}

.cinematic-quote {
  font-size: 34px;
  line-height: 1.3;
  color: #fff !important;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 30px;
}

.cinematic-quote span {
  background: linear-gradient(to right, var(--gold), #fff);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(200, 150, 26, 0.3);
}

.quote-author {
  font-family: 'Dancing Script', cursive;
  font-size: 32px;
  background: linear-gradient(to right, var(--gold), #fde68a);
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 0;
  text-transform: none;
}

/* ============================================================
   MASTER RESPONSIVENESS PASS
   ============================================================ */

/* ============================================================
   MASTER RESPONSIVENESS & MOBILE SPACING OVERHAUL (FINAL)
   ============================================================ */

/* --- 1. Global Stability & Horizontal Lock --- */
html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* --- 2. Universal Breathing & Typography Scaling --- */
@media (max-width: 1200px) {
  .wrap {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {

  section,
  .alt-bg>.wrap {
    padding: 100px 0 !important;
  }

  /* Elite Spacing */
  .wrap {
    padding: 0 24px !important;
  }

  /* Safe Edge Zone */
  .sec-title {
    font-size: 32px !important;
    line-height: 1.2;
    margin-bottom: 28px !important;
  }

  .sec-eyebrow {
    margin-bottom: 14px !important;
    font-size: 11px !important;
  }

  .curr-intro,
  .fee-intro,
  .flow-intro {
    font-size: 15px !important;
    margin-bottom: 44px !important;
    line-height: 1.6 !important;
    margin-top: 0 !important;
  }
}

/* --- 3. Hero Section Mobile (Fluid & Centered) --- */
@media (max-width: 850px) {
  .hero {
    flex-direction: column !important;
    text-align: center !important;
    padding-top: 0 !important; /* Removed gap to kill grey line */
    padding-bottom: 60px !important;
    min-height: auto !important;
    background: #ffffff !important;
  }

  .hero-panel {
    max-width: 100% !important;
    padding: 40px 24px !important;
    background: linear-gradient(160deg, var(--vd) 0%, var(--vm) 60%, var(--vb) 100%) !important;
  }

  .hero-title {
    font-size: 48px !important;
    margin-bottom: 24px !important;
  }

  .hero-btns {
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .hero-btns .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .hero-img-col {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important; /* Flush with top */
    background: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
    padding-top: 0 !important;
  }

  .hero-img-wrap {
    max-width: 380px !important;
    margin: 0 auto !important;
    background: #ffffff !important;
  }
}

/* --- 4. Bento & Coach Identity Mobile --- */
@media (max-width: 1000px) {
  .brand-bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brand-main,
  .brand-method {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .coach-bg-text {
    font-size: 14vw;
    top: 50%;
    opacity: 0.04;
  }

  .brand-bento-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brand-main,
  .brand-method {
    grid-column: span 1;
  }

  .brand-bento-item {
    padding: 32px 24px;
    border-radius: 28px;
  }

  .sig-name {
    font-size: 38px;
  }
}

/* --- 5. Grid Systems (Blueprint, DNA, Support) --- */
@media (max-width: 900px) {
  .flow-container::before {
    left: 24px;
  }

  .flow-meta {
    width: 44px;
  }

  .flow-time {
    font-size: 9px;
    margin-bottom: 8px;
  }

  .flow-item {
    margin-bottom: 40px;
  }

  .flow-content {
    margin-left: 4px;
    padding: 24px;
    border-radius: 24px;
  }

  .curr-grid,
  .sched-grid,
  .dna-grid,
  .support-grid {
    gap: 20px !important;
  }

  .dna-card {
    padding: 32px 20px !important;
  }

  .dna-card h4 {
    font-size: 1.2rem !important;
  }
}

/* --- 6. Storytelling (Secret Sauce) Mobile --- */
@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .story-list {
    margin-top: 32px;
    gap: 20px;
    display: flex;
    flex-direction: column;
  }

  .story-list li {
    padding: 28px;
    text-align: center;
    flex-direction: column;
    transform: none !important;
  }

  .story-list li span {
    margin-bottom: 12px;
  }

  /* Emoji Spacing */
  .story-quote-box {
    padding: 48px 24px;
    border-radius: 32px;
    margin-top: 20px;
  }

  .cinematic-quote {
    font-size: 24px;
    line-height: 1.4;
  }
}

/* --- 7. Pricing & Quick Reserve Mobile --- */
@media (max-width: 768px) {
  .fee-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fee-card {
    padding: 32px 24px;
  }

  .fee-featured {
    transform: none !important;
    margin: 16px 0;
  }

  .fee-amount {
    font-size: 38px !important;
  }

  .quick-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .quick-box {
    padding: 32px 24px;
    border-radius: 32px;
    transform: none !important;
  }

  .quick-box h3 {
    font-size: 26px !important;
  }
}

/* --- 8. Status & Footer Overrides --- */
.form-success {
  margin-top: 28px;
  padding: 28px;
  border-radius: 20px;
}

.footer-wrap {
  padding-top: 80px;
  padding-bottom: 40px;
  text-align: center;
}

@media (max-width: 480px) {

  .btn,
  .hero-btns .btn,
  .form-submit,
  .fee-cta {
    width: 100% !important;
    justify-content: center;
    padding: 18px 24px !important;
    font-size: 14px !important;
  }

  .tag-orbit {
    display: none;
  }

  /* Prevent horizontal drift on tiny screens */
  .faq-question {
    padding: 20px 16px !important;
    font-size: 15px !important;
  }
}

/* --- 9. Story & DNA Centering --- */
@media (max-width: 768px) {

  .dna-card,
  .support-card {
    text-align: center;
    justify-content: center;
  }

  .dna-icon {
    margin: 0 auto 12px !important;
  }

  .fee-intro {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: center;
  }
}

.story-text {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 17px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.story-list li {
  color: #ffffff !important;
  font-size: 15px;
}

.story-list strong {
  color: #ffffff !important;
  font-size: 18px;
}