/* ============================================
   THE JOURNEY OF CLOW – LANDING PAGE STYLES
   Color Palette: Sunburst (#F4BC7E) + Tangaroa (#0C1736)
   ============================================ */

@font-face {
  font-family: 'TieuDe';
  src: url('tieude.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* ---- CUSTOM CURSOR ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: url('hinh/chuot.png') 16 0, auto;
}

/* ---- CSS VARIABLES ---- */
:root {
  --gold: #F4BC7E;
  --gold-dark: #C9902A;
  --gold-light: #FDDDB3;
  --navy: #0C1736;
  --navy-mid: #111E45;
  --navy-light: #1A2B5C;
  --navy-card: #0E1B40;
  --white: #FFFFFF;
  --white-70: rgba(255,255,255,0.7);
  --white-40: rgba(255,255,255,0.4);
  --white-15: rgba(255,255,255,0.08);
  --gold-glow: rgba(244,188,126,0.3);
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
  --radius: 18px;
  --radius-sm: 10px;
}

/* ---- BASE ---- */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---- UTILITY ---- */
.gold-italic {
  color: var(--gold);
  font-style: italic;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-tag::before, .section-tag::after {
  content: '';
  display: inline-block;
  height: 1px;
  width: 36px;
  background: linear-gradient(90deg, transparent, var(--gold));
  float: left;
  margin-right: 8px;
  margin-top: 2px;
}
.section-tag::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
  font-family: 'TieuDe', 'Montserrat', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 18px;
  text-align: center;
  text-wrap: balance;
}

.section-title.left-align {
  text-align: left;
}

.section-desc {
  font-size: 1rem;
  color: var(--white-70);
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
}

.section {
  padding: 100px 0;
  position: relative;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(244,188,126,0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(244,188,126,0.55);
}

.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 30px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-secondary:hover {
  background: rgba(244, 188, 126, 0.1);
  box-shadow: 0 4px 15px rgba(244,188,126,0.2);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 50px;
  background: transparent;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(244,188,126,0.35);
}

.full-width {
  width: 100%;
  text-align: center;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(12, 23, 54, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(244,188,126,0.15);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
  filter: drop-shadow(0 0 10px rgba(244,188,126,0.15));
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(244,188,126,0.4));
}

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

.nav-links a {
  color: var(--white-70);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.btn-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--navy) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.92rem;
}

.btn-nav::after { display: none !important; }
.btn-nav:hover { box-shadow: 0 4px 20px rgba(244,188,126,0.5) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 4px;
  cursor: url('hinh/chuot.png') 16 0, pointer;
  position: relative;
  z-index: 1001;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hamburger open state animations */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 9, 28, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
  text-align: center;
  background: radial-gradient(ellipse 120% 80% at 50% 0%, #1A2B6B 0%, var(--navy) 60%);
}

/* Stars background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 20%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 10%, rgba(244,188,126,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 30%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(2px 2px at 85% 15%, rgba(244,188,126,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 55%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 70%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 60%, rgba(244,188,126,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 80%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 85%, rgba(255,255,255,0.3) 0%, transparent 100%);
  pointer-events: none;
}

.hero-bg-circle {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,188,126,0.07) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-magic-circle {
  position: absolute;
  width: min(780px, 95vw);
  height: min(780px, 95vw);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3; /* Adjusted for white color to maintain text readability */
  pointer-events: none;
}

.hero-magic-circle .magic-circle-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hero-cards {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-card {
  position: absolute;
  width: 130px;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(244,188,126,0.2);
  opacity: 0.7;
}

.card-left {
  left: 8%;
  top: -80px;
  transform: rotate(-18deg);
}

.card-right {
  right: 8%;
  top: -80px;
  transform: rotate(18deg);
}

.hero-card-main {
  position: absolute;
  width: 280px;
  left: 50%;
  transform: translateX(-50%) translateY(-180px);
  filter: drop-shadow(0 20px 50px rgba(244,188,126,0.35));
  opacity: 0.85;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 950px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(244,188,126,0.4);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold);
  background: rgba(244,188,126,0.08);
  margin-bottom: 28px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); /* Added shadow to stand out */
}

.hero-title {
  font-family: 'TieuDe', 'Montserrat', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 22px;
  /* Stronger text shadow to pop out from the background */
  text-shadow: 0 4px 40px rgba(0,0,0,0.8), 
               0 2px 10px rgba(10, 18, 46, 0.9);
}

.hero-title-line {
  display: block;
  opacity: 0;
  transform: translateY(-44px);
}

.hero-title-reveal .hero-title-line {
  animation: title-drop-reveal 1.45s cubic-bezier(.16,1,.3,1) forwards;
}

.hero-title-reveal .hero-title-line-gold {
  animation:
    title-drop-reveal 1.55s cubic-bezier(.16,1,.3,1) 0.42s forwards,
    shimmer-text 4s linear 2.1s infinite;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  line-height: 1.8;
  text-wrap: balance;
  /* Stronger text shadow to pop out from the background */
  text-shadow: 0 2px 12px rgba(0,0,0,0.95), 0 1px 3px rgba(0,0,0,0.95);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 16px 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.stat-num {
  font-family: 'TieuDe', 'Montserrat', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 20px rgba(244,188,126,0.5);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--white-70);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(244,188,126,0.25);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--navy-mid);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ---- GIF background ---- */
.about-gif-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  display: block;
}

/* ---- Dark overlay for readability ---- */
.about-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8, 12, 36, 0.78) 0%,
    rgba(8, 12, 36, 0.60) 40%,
    rgba(8, 12, 36, 0.75) 100%
  );
  backdrop-filter: blur(1.5px);
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,188,126,0.3), transparent);
  z-index: 3;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 54px;
  position: relative;
}

.target-card {
  position: relative;
  background: rgba(10, 18, 46, 0.45); /* deep navy translucent backdrop */
  border: 1px solid rgba(244, 188, 126, 0.14); /* delicate golden border */
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: visible; /* allows background glows to expand outside */
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Inner card star highlights */
.target-card::before {
  content: '✦';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.65rem;
  color: rgba(244, 188, 126, 0.4);
  pointer-events: none;
  transition: var(--transition);
}

.target-card::after {
  content: '✦';
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 0.65rem;
  color: rgba(244, 188, 126, 0.4);
  pointer-events: none;
  transition: var(--transition);
}

.target-card:hover::before,
.target-card:hover::after {
  color: var(--gold-light);
  text-shadow: 0 0 4px var(--gold);
}

/* Background glowing orbs representing elemental energies */
.card-glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.16;
  filter: blur(40px);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), 
              opacity 0.5s ease;
}

/* Elemental color variations */
.orb-gold { background: radial-gradient(circle, #f4bc7e 0%, transparent 70%); }
.orb-pink { background: radial-gradient(circle, #ff6b8b 0%, transparent 70%); }
.orb-teal { background: radial-gradient(circle, #2ed573 0%, transparent 70%); }
.orb-blue { background: radial-gradient(circle, #1e90ff 0%, transparent 70%); }
.orb-purple { background: radial-gradient(circle, #a020f0 0%, transparent 70%); }
.orb-red { background: radial-gradient(circle, #ff4757 0%, transparent 70%); }

.target-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: radial-gradient(circle, rgba(244, 188, 126, 0.15), transparent 70%);
  border: 1px solid rgba(244, 188, 126, 0.22);
  border-radius: 50%;
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.target-card:hover .target-icon {
  background: radial-gradient(circle, rgba(244, 188, 126, 0.3), transparent 70%);
  border-color: rgba(244, 188, 126, 0.7);
  box-shadow: 0 0 15px rgba(244, 188, 126, 0.4);
  transform: scale(1.05);
}

.target-card h3 {
  font-family: 'TieuDe', serif;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 400;
  width: 100%;
  border-bottom: 1px dashed rgba(244, 188, 126, 0.22);
  padding-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-wrap: balance;
  transition: all 0.4s ease;
}

.target-card:hover h3 {
  color: var(--gold-light);
  border-bottom-color: rgba(244, 188, 126, 0.5);
}

.target-card p {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  text-wrap: balance;
}

/* Hover basic styles */
.target-card:hover {
  border-color: rgba(244, 188, 126, 0.45);
  box-shadow: 
    0 20px 45px rgba(0, 0, 0, 0.55),
    0 0 25px rgba(244, 188, 126, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.target-card:hover .card-glow-orb {
  opacity: 0.35;
  transform: translate(-50%, -50%) scale(1.5);
}

/* ============================================
   DESKTOP MYSTICAL CONSTELLATION MASONRY (>= 1025px)
   ============================================ */
@media (min-width: 1025px) {
  .target-grid {
    padding: 30px 0;
  }
  
  /* Stagger columns to form an organic wave/constellation */
  .target-card:nth-child(3n+1) {
    transform: translateY(-20px);
  }
  
  .target-card:nth-child(3n+2) {
    transform: translateY(20px);
  }
  
  .target-card:nth-child(3n) {
    transform: translateY(-10px);
  }

  /* Hover transforms for staggered layout - instantly responsive */
  .target-card:nth-child(3n+1):hover {
    transform: translateY(-32px) scale(1.04);
  }
  
  .target-card:nth-child(3n+2):hover {
    transform: translateY(8px) scale(1.04);
  }
  
  .target-card:nth-child(3n):hover {
    transform: translateY(-22px) scale(1.04);
  }
}

/* ============================================
   INSTRUCTOR
   ============================================ */
.instructor-section {
  background: var(--navy);
  overflow: hidden;
}

.instructor-bg-deco {
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,188,126,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.instructor-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.instructor-img-wrap {
  position: relative;
  width: 320px;
  height: 440px; /* Taller for arch shape */
  margin: 0 auto;
  border-radius: 160px 160px 0 0; /* Arch shape */
  border: 1px solid rgba(244,188,126,0.3);
  padding: 8px; /* Elegant inner frame spacing */
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  background: rgba(244,188,126,0.02);
}

.instructor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 152px 152px 0 0; /* Match outer arch considering padding */
  filter: brightness(0.95) contrast(1.05); /* Slight dramatic effect */
  transition: var(--transition);
}

.instructor-img:hover {
  filter: brightness(1) contrast(1.05);
}

.instructor-glow {
  position: absolute;
  inset: -40px;
  border-radius: 200px 200px 0 0;
  background: radial-gradient(circle at top, rgba(244,188,126,0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.instructor-aka {
  font-size: 1rem;
  color: var(--white-70);
  margin-bottom: 18px;
  margin-top: -10px;
  text-align: center;
}

.instructor-desc {
  font-size: 1rem;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 32px;
  border-left: 2px solid var(--gold);
  padding-left: 18px;
  font-style: italic;
}

.instructor-facts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--white-70);
  padding: 14px 18px;
  background: var(--white-15);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(244,188,126,0.1);
  transition: var(--transition);
}

.fact-item:hover {
  border-color: rgba(244,188,126,0.3);
  background: rgba(244,188,126,0.05);
}

.fact-item strong { color: var(--gold); }

.fact-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits-section {
  background: var(--navy-mid);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ---- Video background ---- */
.benefits-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* ---- Overlay: gradient tối từ trên xuống dưới, đủ để chữ nổi bật ---- */
.benefits-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 40, 0.72) 0%,
    rgba(10, 14, 40, 0.55) 40%,
    rgba(10, 14, 40, 0.68) 100%
  );
  backdrop-filter: blur(1px);
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,188,126,0.3), transparent);
  z-index: 3;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.benefit-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(244,188,126,0.25);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: left;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  backdrop-filter: blur(8px);
}

.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.benefit-card:hover {
  border-color: rgba(244,188,126,0.5);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 20px rgba(244,188,126,0.15);
}

.benefit-card:hover::after { transform: scaleX(1); }

.benefit-num {
  font-family: 'TieuDe', serif;
  font-size: 4.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 400;
  text-shadow: 0 4px 20px rgba(244,188,126,0.5);
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.benefit-card p {
  font-size: 0.94rem;
  color: var(--white-70);
  line-height: 1.6;
  text-wrap: balance;
}



/* ============================================
   FALLING CARDS BACKGROUND
   ============================================ */
.falling-cards-wrapper {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.falling-card {
  position: absolute;
  top: -200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  animation: fall-down linear infinite;
  filter: brightness(0.7) contrast(1.2);
}

@keyframes fall-down {
  0% { top: -200px; transform: rotate(0deg); }
  100% { top: 110%; transform: rotate(360deg); }
}

@keyframes fall-down-reverse {
  0% { top: -200px; transform: rotate(0deg); }
  100% { top: 110%; transform: rotate(-360deg); }
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
/* ============================================
   PRICING TABLE & COMPARISON
   ============================================ */
.pricing-table-section {
  background:
    radial-gradient(ellipse 80% 45% at 50% 0%, rgba(244,188,126,0.1), transparent 62%),
    radial-gradient(ellipse 55% 35% at 86% 46%, rgba(253,221,179,0.08), transparent 70%),
    linear-gradient(180deg, #081330 0%, var(--navy) 48%, #07112c 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

.pricing-table-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,188,126,0.3), transparent);
}

.pricing-bg-deco {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(244,188,126,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 80% 50%, rgba(12,23,54,0) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-table-container {
  max-width: 1100px;
  margin: 52px auto 0;
  position: relative;
  z-index: 2;
  text-align: left;
}

/* ---- Header Row ---- */
.pt-header-row {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr 1.3fr;
  gap: 16px;
  align-items: end;
  margin-bottom: 0;
}

.pt-col-pack {
  padding: 32px 24px;
  text-align: center;
  position: relative;
  border-bottom: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

.pt-col-pack.beginner-pack,
.pt-col-pack.advance-pack {
  background: linear-gradient(180deg, rgba(244, 188, 126, 0.08) 0%, rgba(12, 23, 54, 0.5) 100%);
  border-left: 1px solid rgba(244, 188, 126, 0.35);
  border-right: 1px solid rgba(244, 188, 126, 0.35);
  border-top: 4px solid var(--gold);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -10px 30px rgba(244, 188, 126, 0.08), 0 0 20px rgba(244, 188, 126, 0.05);
}

.pt-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(244, 188, 126, 0.3);
  text-transform: uppercase;
}

.pt-col-pack h3 {
  font-family: 'TieuDe', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(244, 188, 126, 0.3);
  line-height: 1.3;
  margin: 0;
}

.pt-col-pack h3 span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0;
  font-weight: 500;
}

/* ---- Data Rows ---- */
.pt-row {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr 1.3fr;
  gap: 16px;
  padding: 0;
  border-bottom: none;
  transition: background 0.3s ease;
}

.pt-cell-criteria {
  padding: 20px 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pt-cell-val {
  padding: 20px 16px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  display: block;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.pt-cell-val.beginner-val,
.pt-cell-val.advance-val {
  color: rgba(255,255,255,0.9);
  background: rgba(12, 23, 54, 0.55);
  border-left: 1px solid rgba(244, 188, 126, 0.35);
  border-right: 1px solid rgba(244, 188, 126, 0.35);
  border-bottom: 1px solid rgba(244, 188, 126, 0.18);
  box-shadow: 0 0 20px rgba(244, 188, 126, 0.05);
}

/* Row hover effect on columns */
.pt-row:hover .beginner-val,
.pt-row:hover .advance-val {
  background: linear-gradient(180deg, rgba(244, 188, 126, 0.12) 0%, rgba(12, 23, 54, 0.65) 100%);
  border-left-color: rgba(244, 188, 126, 0.55);
  border-right-color: rgba(244, 188, 126, 0.55);
  box-shadow: 0 0 25px rgba(244, 188, 126, 0.15);
}

/* Highlight Price */
.price-highlight {
  font-family: 'TieuDe', serif;
  font-size: 1.65rem;
  color: var(--gold) !important;
  font-weight: 400;
  text-shadow: 0 0 10px rgba(244, 188, 126, 0.4);
}

.fomo-text {
  color: #ff5555;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 85, 85, 0.3);
}

.highlight-text {
  color: var(--gold);
  font-weight: 700;
}

.bold-impact {
  font-weight: 700;
  color: var(--white);
}

/* ---- Group Headers ---- */
.pt-group-header {
  grid-column: 1 / -1;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  padding: 16px 24px;
  margin: 32px 0 16px;
  background: linear-gradient(90deg, rgba(244, 188, 126, 0.12) 0%, rgba(12, 23, 54, 0.6) 100%);
  border: 1px solid rgba(244, 188, 126, 0.25);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
}

.pt-group-svg {
  width: 22px;
  height: 22px;
  margin-right: 12px;
  color: var(--gold);
  filter: drop-shadow(0 0 5px rgba(244,188,126,0.5));
}

/* ---- Focal Point: GIÁ TRỊ CẢM XÚC ---- */
.focal-point {
  background: linear-gradient(90deg, rgba(244, 188, 126, 0.18) 0%, rgba(12, 23, 54, 0.7) 100%) !important;
  border-color: rgba(244, 188, 126, 0.35) !important;
  box-shadow: 0 4px 20px rgba(244, 188, 126, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  color: #fdddb3;
}

.focal-row .pt-cell-criteria {
  color: var(--gold-light);
}

/* ---- Icons & SVGs inside cells ---- */
.magic-star-svg, .magic-row-svg {
  float: left;
  margin-right: 10px;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  transition: var(--transition);
}

/* Star glow and animations */
.beginner-star,
.advance-star {
  color: var(--gold-light);
  filter: drop-shadow(0 0 5px var(--gold)) drop-shadow(0 0 10px rgba(244, 188, 126, 0.4));
  animation: star-pulse-gold 2s infinite ease-in-out;
}

.dim-star {
  color: rgba(255, 255, 255, 0.15);
  filter: grayscale(1);
  opacity: 0.35;
}

/* Mystical Healing Icons */
.mystical-icon {
  color: rgba(244, 188, 126, 0.85);
  filter: drop-shadow(0 0 4px rgba(244, 188, 126, 0.4));
  animation: star-pulse-silver 3s infinite ease-in-out;
}

.advance-val .mystical-icon {
  color: var(--gold-light);
  filter: drop-shadow(0 0 6px rgba(244, 188, 126, 0.6));
  animation: star-pulse-gold 2.5s infinite ease-in-out;
}

.row-chalice.advance-chalice {
  color: #FFD700;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
  animation: star-pulse-gold 2s infinite ease-in-out;
}

/* Animations */
@keyframes star-pulse-gold {
  0%, 100% {
    filter: drop-shadow(0 0 3px #F4BC7E) drop-shadow(0 0 8px rgba(244, 188, 126, 0.4));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 7px #F4BC7E) drop-shadow(0 0 16px rgba(244, 188, 126, 0.7));
    transform: scale(1.15);
  }
}

@keyframes star-pulse-silver {
  0%, 100% {
    filter: drop-shadow(0 0 2px rgba(244, 188, 126, 0.25));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 5px rgba(244, 188, 126, 0.6));
    transform: scale(1.08);
  }
}

@keyframes star-pulse-pink {
  0%, 100% {
    filter: drop-shadow(0 0 2px rgba(255, 105, 180, 0.4));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 7px rgba(255, 105, 180, 0.8));
    transform: scale(1.12);
  }
}

@keyframes star-pulse-cyan {
  0%, 100% {
    filter: drop-shadow(0 0 2px rgba(0, 206, 209, 0.4));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 7px rgba(0, 206, 209, 0.8));
    transform: scale(1.12);
  }
}

@keyframes star-pulse-violet {
  0%, 100% {
    filter: drop-shadow(0 0 2px rgba(186, 85, 211, 0.4));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 7px rgba(186, 85, 211, 0.8));
    transform: scale(1.12);
  }
}

/* ---- Footer Row (CTAs) ---- */
.pt-footer-row {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr 1.3fr;
  gap: 16px;
  margin-top: 0;
}

.pt-footer-row .pt-col-pack {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 24px;
}

.pt-footer-row .beginner-pack,
.pt-footer-row .advance-pack {
  border-left: 1px solid rgba(244, 188, 126, 0.35);
  border-right: 1px solid rgba(244, 188, 126, 0.35);
  border-bottom: 1px solid rgba(244, 188, 126, 0.35);
  border-radius: 0 0 16px 16px;
  background: rgba(12, 23, 54, 0.55);
  box-shadow: 0 10px 30px rgba(244, 188, 126, 0.08);
}

.pt-footer-row:hover .beginner-pack,
.pt-footer-row:hover .advance-pack {
  border-left-color: rgba(244, 188, 126, 0.55);
  border-right-color: rgba(244, 188, 126, 0.55);
  border-bottom-color: rgba(244, 188, 126, 0.55);
  box-shadow: 0 10px 35px rgba(244, 188, 126, 0.15);
}

.pt-btn {
  width: 100%;
  text-align: center;
  padding: 14px 10px;
  font-size: 0.85rem;
}

/* ============================================
   MOBILE RESPONSIVE PRICING CARDS
   ============================================ */
@media (max-width: 900px) {
  .pt-header-row {
    display: none; /* Hide desktop header */
  }

  .pt-group-header {
    text-align: center;
    padding: 14px 16px;
    margin: 24px 0 12px;
    background: linear-gradient(90deg, rgba(244, 188, 126, 0.12) 0%, rgba(12, 23, 54, 0.7) 100%);
    border: 1px solid rgba(244, 188, 126, 0.25) !important;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .pt-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .focal-row {
    background: transparent;
  }

  .pt-cell-criteria {
    order: 1;
    font-size: 1.15rem;
    color: var(--gold);
    justify-content: center;
    text-align: center;
    margin-bottom: 8px;
  }

  /* Advance comes first on Mobile and is larger */
  .pt-cell-val.advance-val {
    order: 2;
    background: linear-gradient(135deg, rgba(244,188,126,0.12), rgba(244,188,126,0.04));
    border: 1px solid rgba(244,188,126,0.4) !important;
    border-radius: 12px;
    padding: 16px;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }

  .pt-cell-val.advance-val::before {
    content: "✦ ADVANCE:";
    display: block;
    width: 100%;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 6px;
    letter-spacing: 0.1em;
  }

  /* Beginner comes second and has similar highlighting now */
  .pt-cell-val.beginner-val {
    order: 3;
    background: linear-gradient(135deg, rgba(244,188,126,0.1), rgba(244,188,126,0.03));
    border: 1px solid rgba(244,188,126,0.3) !important;
    border-radius: 12px;
    padding: 16px;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  .pt-cell-val.beginner-val::before {
    content: "✦ BEGINNER:";
    display: block;
    width: 100%;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 6px;
    letter-spacing: 0.1em;
  }

  .pt-cell-val {
    flex-wrap: wrap;
  }

  .pt-footer-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 30px 16px;
  }

  .pt-footer-row .pt-col-pack {
    border: none;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    background: transparent !important;
  }
  
  .pt-footer-row .advance-pack {
    order: 1; /* Advance CTA first */
  }
  
  .pt-footer-row .beginner-pack {
    order: 2;
  }
}


/* ============================================
   REQUIREMENTS
   ============================================ */
.requirements-section {
  background: var(--navy-mid);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.requirements-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,188,126,0.3), transparent);
  z-index: 3;
}

/* ---- GIF background ---- */
.requirements-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  display: block;
}

/* ---- Dark overlay for readability ---- */
.requirements-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8, 12, 36, 0.85) 0%,
    rgba(8, 12, 36, 0.72) 40%,
    rgba(8, 12, 36, 0.85) 100%
  );
  backdrop-filter: blur(1px);
}

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

.req-card {
  background: var(--white-15);
  border: 1px solid rgba(244,188,126,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.req-card:hover {
  border-color: rgba(244,188,126,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.req-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.req-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  text-wrap: balance;
}

.req-card p {
  font-size: 0.94rem;
  color: var(--white-70);
  line-height: 1.6;
  text-wrap: balance;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--navy);
  text-align: center;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,188,126,0.3), transparent);
}

.feedback-swiper {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 60px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 320px;
  height: auto;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.swiper-slide-active {
  opacity: 1;
}

.testimonial-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(244,188,126,0.2);
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  position: relative;
  background: var(--navy-mid);
}

.testimonial-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.swiper-slide-active .testimonial-item {
  border: 2px solid var(--gold);
  box-shadow: 0 0 25px rgba(244,188,126,0.4), 0 0 50px rgba(244,188,126,0.2);
}

.swiper-pagination-bullet {
  background: var(--gold);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Custom Swiper Navigation Buttons */
.swiper-button-prev,
.swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 18, 46, 0.75);
  border: 1px solid rgba(244, 188, 126, 0.45);
  color: var(--gold) !important;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  z-index: 15;
}

.swiper-button-prev {
  left: 20px;
}

.swiper-button-next {
  right: 20px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.1rem;
  font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(244, 188, 126, 0.2);
  border-color: var(--gold);
  color: #fff !important;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(244, 188, 126, 0.4);
}

@media (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 38px;
    height: 38px;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 0.9rem;
  }
}

@media (min-width: 1025px) {
  .swiper-button-prev {
    left: calc(50% - 240px);
  }
  .swiper-button-next {
    right: calc(50% - 240px);
  }
}

/* ============================================
   REGISTER SECTION – 2-COLUMN FORM LAYOUT
   ============================================ */
.register-section {
  background: var(--navy-mid);
  padding: 100px 0;
  overflow: hidden;
}

.register-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,188,126,0.3), transparent);
}

.register-magic-bg {
  position: absolute;
  height: 95%;
  max-height: 780px;
  aspect-ratio: 1 / 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.25;
  pointer-events: none;
}

.register-magic-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ---- 2-column grid ---- */
.register-inner-new {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ---- LEFT SIDE ---- */
.reg-left {
  position: relative;
}

.reg-title {
  font-family: 'TieuDe', 'Montserrat', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--white);
  white-space: nowrap;
}

.reg-desc {
  font-size: 0.98rem;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* ---- Mode cards ---- */
.reg-mode-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.reg-mode-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(244,188,126,0.15);
  border-radius: 14px;
  transition: var(--transition);
}

.reg-mode-card:hover {
  border-color: rgba(244,188,126,0.4);
  background: rgba(244,188,126,0.04);
  transform: translateX(4px);
}

.reg-mode-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.reg-mode-card strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.reg-mode-card p {
  font-size: 0.92rem;
  color: var(--white-70);
  margin: 0;
  line-height: 1.55;
  text-wrap: balance;
}

/* ---- Decorative card image ---- */
.reg-deco-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  opacity: 0.2;
  transform: translate(-50%, -50%);
  animation: pulse-scale-center 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes pulse-scale-center {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.08); }
}

.reg-deco-card img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* ---- RIGHT SIDE: Form card ---- */
.reg-right {
  position: relative;
  z-index: 2;
}

.reg-form-card {
  background: rgba(10, 18, 46, 0.85);
  border: 1px solid rgba(244,188,126,0.2);
  border-radius: 24px;
  padding: 40px 36px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), inset 0 1px 0 rgba(244,188,126,0.1);
}

.reg-form-title {
  font-family: 'TieuDe', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(244,188,126,0.15);
}

/* ---- Form groups ---- */
.reg-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.req {
  color: var(--gold);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.96rem;
  transition: var(--transition);
  outline: none;
  resize: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(244,188,126,0.5);
  background: rgba(244,188,126,0.04);
  box-shadow: 0 0 0 3px rgba(244,188,126,0.08);
}

/* ---- Select dropdown ---- */
.select-wrap {
  position: relative;
}

.select-wrap select {
  width: 100%;
  padding: 13px 40px 13px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.96rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.select-wrap select:focus {
  border-color: rgba(244,188,126,0.5);
  background: rgba(244,188,126,0.04);
  box-shadow: 0 0 0 3px rgba(244,188,126,0.08);
}

.select-wrap select option,
.select-wrap select optgroup {
  background: #111E45;
  color: var(--white);
}

.select-wrap select optgroup {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.88rem;
}

.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.1rem;
  pointer-events: none;
  line-height: 1;
}

/* ---- Submit button ---- */
.reg-submit-btn {
  margin-top: 6px;
  padding: 16px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  border-radius: 50px;
  border: none;
}

.reg-form-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* ---- Payment installment description ---- */
.payment-desc {
  display: none;
  font-size: 0.86rem;
  color: var(--gold);
  margin-top: 8px;
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding: 8px 12px;
  background: rgba(244, 188, 126, 0.05);
  border-radius: 0 8px 8px 0;
  animation: fade-in-desc 0.3s ease forwards;
}

@keyframes fade-in-desc {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Success state ---- */
.reg-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
  animation: pulse-glow 2s ease-in-out infinite alternate;
}

.reg-success h4 {
  font-family: 'TieuDe', serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 400;
}

.reg-success p {
  font-size: 0.92rem;
  color: var(--white-70);
  line-height: 1.7;
}

/* ---- Responsive register ---- */
@media (max-width: 900px) {
  .register-inner-new {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .reg-deco-card { display: none; }
  .reg-left { text-align: center; }
  .section-tag[style] { justify-content: center !important; }
  .reg-mode-card { text-align: left; }
}

@media (max-width: 540px) {
  .reg-form-card { padding: 28px 20px; }
}



/* ============================================
   FOOTER – NEW 3-COLUMN DESIGN
   ============================================ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(244,188,126,0.15);
}

/* ---- Main grid area ---- */
.footer-main {
  padding: 56px 0 40px;
}

.footer-inner-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ---- Column titles ---- */
.footer-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col-desc {
  font-size: 0.94rem;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 22px;
}

/* ---- Social icon buttons inside footer ---- */
.footer-social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
  float: left;
  margin-right: 8px;
  margin-top: 2px;
}

.footer-social-btn svg {
  width: 18px;
  height: 18px;
}

.footer-social-btn.fb  { background: #1877F2; color: #fff; }
.footer-social-btn.ig  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.footer-social-btn.tt  { background: #010101; color: #fff; border: 1px solid #333; }
.footer-social-btn.yt  { background: #FF0000; color: #fff; }

.footer-social-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

/* ---- Center column: logo + slogan ---- */
.footer-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo-link {
  display: block;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 110px;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(244,188,126,0.4));
  transition: var(--transition);
}

.footer-logo-img:hover {
  filter: drop-shadow(0 0 26px rgba(244,188,126,0.7));
  transform: scale(1.04);
}

.footer-slogan {
  font-family: 'TieuDe', serif;
  font-size: 0.96rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1.5;
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid rgba(244,188,126,0.2);
  width: 100%;
  white-space: nowrap;
}

/* ---- Right column: service links ---- */
.footer-col-right {
  text-align: left;
}

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

.footer-service-links li a {
  color: var(--white-70);
  text-decoration: none;
  font-size: 0.94rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-service-links li a::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  opacity: 0.6;
  transition: var(--transition);
}

.footer-service-links li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-service-links li a:hover::before {
  opacity: 1;
}

/* ---- Bottom bar ---- */
.footer-bottom {
  border-top: 1px solid rgba(244,188,126,0.12);
  padding: 18px 0;
  background: rgba(0,0,0,0.2);
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-love {
  color: var(--gold);
  opacity: 0.7;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* ============================================
   FLOATING SOCIAL BUTTONS (fixed right side)
   ============================================ */
.floating-socials {
  position: fixed;
  right: 24px;
  bottom: 144px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}

.float-btn svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
}

/* Ripple on hover */
.float-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: var(--transition);
}

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

.float-btn:hover {
  transform: translateX(-5px) scale(1.12);
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
}

/* Brand colors */
.float-fb { background: #1877F2; color: #fff; }
.float-ig { background: linear-gradient(145deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #fff; }
.float-tt { background: #010101; color: #fff; border: 1px solid #2a2a2a; }
.float-yt { background: #FF0000; color: #fff; }

/* Tooltip labels */
.float-btn[aria-label]::before {
  content: attr(aria-label);
  position: absolute;
  right: 54px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(12,23,54,0.95);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  border: 1px solid rgba(244,188,126,0.2);
}

.float-btn:hover[aria-label]::before {
  opacity: 1;
  right: 58px;
}

/* ============================================
   RESPONSIVE – FOOTER & FLOATING
   ============================================ */
@media (max-width: 900px) {
  .footer-inner-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-col-center {
    grid-column: 1 / -1;
    order: -1;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(244,188,126,0.12);
  }
}

@media (max-width: 600px) {
  .footer-inner-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-col-right { text-align: left; }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .floating-socials {
    right: 24px;
    gap: 8px;
    bottom: 132px;
  }
  .float-btn {
    width: 38px;
    height: 38px;
  }
  .float-btn svg { width: 17px; height: 17px; }
  .float-btn[aria-label]::before { display: none; }
}


/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spin-slow-reverse {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes float-up {
  from { transform: translateY(0); }
  to { transform: translateY(-16px); }
}

@keyframes float-card {
  0%, 100% { transform: rotate(-18deg) translateY(0); }
  50% { transform: rotate(-18deg) translateY(-14px); }
}

@keyframes float-card-r {
  0%, 100% { transform: rotate(18deg) translateY(0); }
  50% { transform: rotate(18deg) translateY(-14px); }
}

@keyframes float-main {
  0%, 100% { transform: translateX(-50%) translateY(-180px); }
  50% { transform: translateX(-50%) translateY(-196px); }
}

@keyframes pulse-glow {
  from { opacity: 0.6; transform: scale(1); }
  to { opacity: 1; transform: scale(1.08); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- NEW ANIMATIONS ---- */

@keyframes shimmer-text {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes title-drop-reveal {
  0% {
    opacity: 0;
    transform: translateY(-54px);
    filter: blur(8px);
  }
  65% {
    opacity: 1;
    transform: translateY(6px);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes glow-pulse-btn {
  0%, 100% { box-shadow: 0 4px 24px rgba(244,188,126,0.4); }
  50% { box-shadow: 0 8px 48px rgba(244,188,126,0.75), 0 0 20px rgba(244,188,126,0.3); }
}

@keyframes icon-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  30% { transform: translateY(-8px) scale(1.15); }
  60% { transform: translateY(-3px) scale(1.05); }
}

@keyframes particle-drift {
  0% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-120px) translateX(var(--drift-x, 20px)) rotate(var(--drift-r, 180deg)); opacity: 0; }
}

@keyframes wave-enter {
  0% { opacity: 0; transform: translateY(50px) scale(0.95); }
  60% { transform: translateY(-6px) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes border-run {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes sparkle-twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(30px) scale(0.97); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes section-divider-run {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes cursor-trail-fade {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.2); }
}

@keyframes hero-badge-pulse {
  0%, 100% { border-color: rgba(244,188,126,0.4); box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
  50% { border-color: rgba(244,188,126,0.8); box-shadow: 0 0 20px rgba(244,188,126,0.3), 0 4px 12px rgba(0,0,0,0.3); }
}

@keyframes float-gentle {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes number-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); color: #FDDDB3; }
  100% { transform: scale(1); }
}

/* ---- UTILITY CLASSES ---- */
.spin-slow { animation: spin-slow 40s linear infinite; }
.float-card { animation: float-card 5s ease-in-out infinite; }
.float-card-r { animation: float-card-r 5.5s ease-in-out infinite; }
.float-card-main { animation: float-main 4.5s ease-in-out infinite; }

.animate-in {
  animation: fade-in-up 0.7s ease forwards;
}

/* ---- HERO BADGE PULSE ---- */
.hero-badge {
  animation: hero-badge-pulse 3s ease-in-out infinite;
}

/* ---- SHIMMER TITLE ---- */
.shimmer-title {
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--gold-light) 25%,
    var(--gold) 50%,
    var(--gold-light) 75%,
    var(--gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.9)) drop-shadow(0 2px 5px rgba(10, 18, 46, 0.9));
  animation: shimmer-text 4s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-title-line,
  .hero-title-reveal .hero-title-line,
  .hero-title-reveal .hero-title-line-gold {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
}

/* ---- PULSING CTA BUTTON ---- */
.btn-primary {
  animation: glow-pulse-btn 2.5s ease-in-out infinite;
}
.btn-primary:hover {
  animation: none;
}

/* ---- SECTION DIVIDER WITH RUNNING LIGHT ---- */
.section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(244,188,126,0.6) 30%,
    rgba(244,188,126,0.9) 50%,
    rgba(244,188,126,0.6) 70%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: section-divider-run 4s linear infinite;
  pointer-events: none;
}

/* ---- CARD HOVER ICON BOUNCE ---- */
.target-card:hover .target-icon,
.req-card:hover .req-icon,
.fact-item:hover .fact-icon {
  animation: icon-bounce 0.5s ease;
  display: inline-block;
}

/* ---- WAVE ENTER for observed elements ---- */
.wave-enter {
  animation: wave-enter 0.7s cubic-bezier(.22,1,.36,1) forwards;
}

/* ---- FLOATING GENTLE for instructor image ---- */
.instructor-img-wrap {
  animation: float-gentle 6s ease-in-out infinite;
}

/* ---- CARD GLOW BORDER on hover ---- */
.benefit-card:hover,
.price-card:hover,
.target-card:hover,
.req-card:hover {
  box-shadow:
    0 16px 48px rgba(0,0,0,0.4),
    0 0 0 1px rgba(244,188,126,0.25),
    0 0 30px rgba(244,188,126,0.12);
}

/* ---- SCROLL PROGRESS INDICATOR ---- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 99999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 8px rgba(244,188,126,0.5);
}

/* ---- AMBIENT PARTICLES CONTAINER ---- */
#ambient-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,188,126,0.8), transparent);
  pointer-events: none;
  animation: particle-drift var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

/* ---- STAR TWINKLING in hero ---- */
.star-twinkle {
  position: absolute;
  border-radius: 50%;
  background: var(--color, rgba(255,255,255,0.7));
  pointer-events: none;
  animation: sparkle-twinkle var(--dur, 2s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

/* ---- CURSOR TRAIL ---- */
.cursor-trail-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(244,188,126,0.7);
  pointer-events: none;
  z-index: 99998;
  animation: cursor-trail-fade 0.5s ease forwards;
}

/* ---- STAT NUMBERS pop on view ---- */
.stat-num.popped {
  animation: number-pop 0.4s ease;
}

/* ---- CARD STAGGER visible class ---- */
.stagger-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* ---- SLIDE IN from sides ---- */
.slide-left { animation: slide-in-left 0.7s cubic-bezier(.22,1,.36,1) forwards; }
.slide-right { animation: slide-in-right 0.7s cubic-bezier(.22,1,.36,1) forwards; }



/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   MUSIC TOGGLE
   ============================================ */
.music-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 18, 46, 0.8);
  border: 1px solid rgba(244,188,126,0.4);
  color: var(--gold);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: var(--transition);
}

.music-toggle:hover {
  background: rgba(244,188,126,0.2);
  transform: scale(1.1);
}

.music-toggle.paused .music-icon {
  opacity: 0.5;
}
.music-toggle.paused::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 60%;
  background: #ff4757;
  transform: rotate(45deg);
}

@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: 280px;
    background: rgba(12, 23, 54, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 32px 40px;
    gap: 16px;
    z-index: 999;
    border-left: 1px solid rgba(244,188,126,0.15);
    box-shadow: -8px 0 40px rgba(0,0,0,0.5);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
    pointer-events: none;
    display: flex;
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links a {
    font-size: 1.1rem;
    color: var(--white-70);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.04em;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(244,188,126,0.08);
    display: block;
    transition: var(--transition);
  }
  .nav-links a::after {
    display: none;
  }
  .nav-links a:hover {
    color: var(--gold);
    padding-left: 6px;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links .btn-nav {
    text-align: center;
    margin-top: 12px;
    border-bottom: none;
    padding: 12px 24px !important;
  }
  .nav-links .btn-nav:hover {
    padding-left: 24px !important;
  }
  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 900px) {
  .target-grid { grid-template-columns: repeat(2, 1fr); }
  .instructor-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .instructor-desc { border-left: none; border-top: 2px solid var(--gold); padding: 18px 0 0; }
  .section-title.left-align { text-align: center; }
  .instructor-aka { text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .req-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-card { width: 90px; }
  .card-left { left: 2%; }
  .card-right { right: 2%; }
  .hero-card-main { width: 200px; }
}

@media (max-width: 700px) {
  .target-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .sessions-grid { grid-template-columns: 1fr; }
  .req-grid { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
  .hero-magic-circle { 
    display: block;
    opacity: 0.15;
    top: 32%;
  }
  .stat { padding: 0 16px; }
  .stat-num { font-size: 1.8rem; }
  .footer-slogan {
    white-space: normal;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-wrap: balance;
    word-break: keep-all;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .gold-italic { white-space: nowrap; }
  .feedback-swiper { max-width: 320px; margin-left: auto; margin-right: auto; }
  .testimonial-item img { height: auto; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { display: none; }
  .reg-title { white-space: normal; }
}

/* ============================================
   CARD MOBILE/TABLET RESPONSIVE OVERRIDES
   ============================================ */
@media (max-width: 1024px) {
  .target-card:hover {
    transform: translateY(-6px) scale(1.02);
  }
  .target-card:hover .card-glow-orb {
    opacity: 0.28;
    transform: translate(-50%, -50%) scale(1.35);
  }
}

/* Custom Magical SVGs styling */
.magic-svg {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.4s ease;
}

.target-icon .magic-svg {
  width: 38px;
  height: 38px;
  stroke: var(--gold-light);
  filter: drop-shadow(0 0 5px rgba(244, 188, 126, 0.45));
}

.target-card:hover .target-icon .magic-svg {
  stroke: #fff;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.75)) drop-shadow(0 0 15px rgba(244, 188, 126, 0.45));
}

.fact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.fact-icon .magic-svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold-light);
  filter: drop-shadow(0 0 3px rgba(244, 188, 126, 0.4));
}

.fact-item:hover .fact-icon .magic-svg {
  stroke: #fff;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
}

.req-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: radial-gradient(circle, rgba(244, 188, 126, 0.12), transparent 70%);
  border: 1px solid rgba(244, 188, 126, 0.18);
  border-radius: 50%;
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.req-card:hover .req-icon {
  background: radial-gradient(circle, rgba(244, 188, 126, 0.3), transparent 70%);
  border-color: rgba(244, 188, 126, 0.7);
  box-shadow: 0 0 15px rgba(244, 188, 126, 0.4);
  transform: scale(1.05);
}

.req-icon .magic-svg {
  width: 34px;
  height: 34px;
  stroke: var(--gold-light);
  filter: drop-shadow(0 0 5px rgba(244, 188, 126, 0.45));
}

.req-card:hover .req-icon .magic-svg {
  stroke: #fff;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.75)) drop-shadow(0 0 15px rgba(244, 188, 126, 0.45));
}

/* Pill Icon styling for comparison grid */
.pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 10px;
  background:
    radial-gradient(circle, rgba(253, 221, 179, 0.18), transparent 58%),
    linear-gradient(145deg, rgba(244,188,126,0.12), rgba(255,255,255,0.03));
  border: 1px solid rgba(244, 188, 126, 0.28);
  border-radius: 50%;
  transition: all 0.4s ease;
  box-shadow:
    inset 0 0 0 1px rgba(253,221,179,0.08),
    0 0 22px rgba(244,188,126,0.12);
}

.compare-row-card:hover .pill-icon {
  background:
    radial-gradient(circle, rgba(253, 221, 179, 0.28), transparent 60%),
    linear-gradient(145deg, rgba(244,188,126,0.18), rgba(255,255,255,0.06));
  border-color: rgba(244, 188, 126, 0.65);
  box-shadow:
    inset 0 0 0 1px rgba(253,221,179,0.14),
    0 0 22px rgba(244, 188, 126, 0.35);
  transform: scale(1.14) rotate(10deg);
}

.pill-icon .magic-svg {
  width: 30px;
  height: 30px;
  stroke: var(--gold-light);
  filter: drop-shadow(0 0 6px rgba(244, 188, 126, 0.5));
}

.compare-row-card:hover .pill-icon .magic-svg {
  stroke: #fff;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.65));
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 84px; /* Stacked cleanly above music-toggle at 24px */
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 18, 46, 0.8);
  border: 1px solid rgba(244, 188, 126, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.9);
  transition: all 0.4s ease;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top.show:hover {
  transform: scale(1.1) translateY(0);
}

.scroll-to-top:hover {
  background: rgba(244, 188, 126, 0.2);
  border-color: rgba(244, 188, 126, 0.8);
  box-shadow: 0 4px 16px rgba(244, 188, 126, 0.35);
  transform: scale(1.1);
}

.scroll-to-top .magic-svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-light);
  filter: drop-shadow(0 0 4px rgba(244, 188, 126, 0.45));
}

.scroll-to-top:hover .magic-svg {
  stroke: #fff;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.65));
}
