@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  background: #020510;
  color: #fff;
  overflow-x: hidden;
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}
@keyframes gridPulse {
  0%,100% { opacity: 1; } 50% { opacity: 0.45; }
}
@keyframes boltPulse {
  0%,100% { opacity: 0.07; transform: translateX(-50%) scale(1); }
  50%     { opacity: 0.13; transform: translateX(-50%) scale(1.05); }
}
@keyframes badgeGlow {
  0%,100% { box-shadow: 0 0 10px #1a4fff55; }
  50%     { box-shadow: 0 0 26px #1a4fffaa; }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes ringRotate {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}
@keyframes pulseDot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.8); opacity: 0.3; }
}
@keyframes cardSlideIn {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes imgReveal {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  padding: 10px 32px;
  background: transparent;
  pointer-events: none;
}

.navbar-island {
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  padding: 6px 24px;
  border-radius: 999px;
  background: rgba(2,5,16,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.navbar-island.scrolled {
  background: rgba(2,5,16,0.6);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-color: rgba(217,164,65,0.12);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(217,164,65,0.06);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 2.5px;
}
.nav-logo-img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-logo-mobile {
  display: none;
}

.nav-logo-desktop {
  display: block;
}

.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a {
  text-decoration: none;
  color: #bbb;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: #d9a441;
  transition: width 0.3s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active {
  border: 1px solid #d9a441;
  border-radius: 20px;
  padding: 5px 16px;
  color: #fff;
}
.nav-links a.active::after { display: none; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.login-btn {
  text-decoration: none;
  color: #d9a441;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s;
}
.login-btn:hover { opacity: 0.7; }
.get-started-btn {
  text-decoration: none;
  background: linear-gradient(135deg, #d9a441, #ffe8a3);
  color: #000;
  padding: 9px 22px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.get-started-btn:hover {
  background: linear-gradient(135deg, #8f5d16, #d9a441);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217,164,65,0.4);
}

/* ── HERO ── */
@keyframes heroBadge {
  from { opacity:0; transform: translateY(-20px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes heroLine1 {
  from { opacity:0; transform: translateX(-60px); }
  to   { opacity:1; transform: translateX(0); }
}
@keyframes heroLine2 {
  from { opacity:0; transform: translateX(-60px); }
  to   { opacity:1; transform: translateX(0); }
}
@keyframes heroPara {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes heroStats {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes heroBtns {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes heroImgIn {
  from { opacity:0; transform: translateX(80px) scale(0.96); }
  to   { opacity:1; transform: translateX(0) scale(1); }
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-18px); }
}
@keyframes heroRing1 {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}
@keyframes heroRing2 {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(-360deg); }
}
@keyframes heroShine {
  0%   { left: -100%; }
  100% { left: 200%; }
}
@keyframes heroCard1 {
  from { opacity:0; transform: translateX(-40px); }
  to   { opacity:1; transform: translateX(0); }
}
@keyframes heroCard2 {
  from { opacity:0; transform: translateX(40px); }
  to   { opacity:1; transform: translateX(0); }
}
@keyframes heroParticle {
  0%   { transform: translateY(0) scale(1); opacity:0.7; }
  50%  { transform: translateY(-40px) scale(1.3); opacity:1; }
  100% { transform: translateY(0) scale(1); opacity:0.7; }
}
@keyframes heroGridPulse {
  0%,100% { opacity:0.5; } 50% { opacity:1; }
}
@keyframes heroGradShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes heroPulse {
  0%,100% { transform:scale(1); opacity:1; }
  50%     { transform:scale(1.8); opacity:0.3; }
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 80px 80px;
  background: radial-gradient(ellipse at 60% 50%, rgba(217,164,65,0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 10% 80%, rgba(255,232,163,0.13) 0%, transparent 50%),
              #020510;
}

/* grid overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(217,164,65,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,164,65,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
  animation: heroGridPulse 6s ease-in-out infinite;
}

/* glow blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.blob-tl {
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(217,164,65,0.18) 0%, transparent 70%);
}
.blob-br {
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,232,163,0.15) 0%, transparent 70%);
}

/* floating particles */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: #d9a441;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.p1 { width:6px;  height:6px;  top:20%; left:8%;   animation: heroParticle 4s ease-in-out infinite 0s; }
.p2 { width:4px;  height:4px;  top:60%; left:15%;  animation: heroParticle 5s ease-in-out infinite 1s; }
.p3 { width:8px;  height:8px;  top:30%; right:12%; animation: heroParticle 6s ease-in-out infinite 0.5s; }
.p4 { width:5px;  height:5px;  top:70%; right:20%; animation: heroParticle 4.5s ease-in-out infinite 2s; }
.p5 { width:10px; height:10px; top:80%; left:40%;  animation: heroParticle 7s ease-in-out infinite 1.5s; }

/* inner layout */
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: center;
  gap: 0;
}

/* ── LEFT CONTENT ── */
.hero-content { position: relative; z-index: 1; padding-right: 20px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, rgba(217,164,65,0.25), rgba(255,232,163,0.25));
  border: 1px solid rgba(217,164,65,0.4);
  color: #d9a441;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 24px;
  margin-bottom: 28px;
  animation: heroBadge 0.7s cubic-bezier(0.22,1,0.36,1) 0.2s both;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: #d9a441;
  border-radius: 50%;
  animation: heroPulse 1.5s ease-in-out infinite;
}

.hero-h1 {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -3px;
  margin-bottom: 24px;
}
.hero-line1 {
  display: block;
  color: #fff;
  animation: heroLine1 0.8s cubic-bezier(0.22,1,0.36,1) 0.4s both;
}
.hero-line2 {
  display: block;
  color: #fff;
  animation: heroLine2 0.8s cubic-bezier(0.22,1,0.36,1) 0.55s both;
}
.hero-highlight {
  background: linear-gradient(90deg, #d9a441, #ffe8a3, #ffffff, #d9a441);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroGradShift 4s linear infinite;
}

.hero-para {
  color: #8a9bb0;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
  animation: heroPara 0.8s cubic-bezier(0.22,1,0.36,1) 0.7s both;
}
.hero-para strong { color: #e0e0e0; font-weight: 700; }

/* stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  animation: heroStats 0.8s cubic-bezier(0.22,1,0.36,1) 0.85s both;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: #d9a441;
  letter-spacing: -1px;
  line-height: 1;
}
.hero-stat-label {
  display: block;
  font-size: 11px;
  color: #7a8fa0;
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

/* buttons */
.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
  animation: heroBtns 0.8s cubic-bezier(0.22,1,0.36,1) 1s both;
}

/* media logos */
.media-label {
  font-size: 11px;
  color: #555;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}
.media-logos-wrapper {
  overflow: hidden;
  width: 100%;
  animation: heroBtns 0.8s ease 1.2s both;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.media-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: logoScroll 14s linear infinite;
}
.media-logos:hover { animation-play-state: paused; }
.media-logo {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.45;
  white-space: nowrap;
  transition: opacity 0.2s;
  cursor: default;
}
.media-logo:hover { opacity: 0.9; }
.media-logo.ht { font-style: italic; font-size: 12px; }
.media-logo.edex { font-size: 18px; font-weight: 900; letter-spacing: -1px; }
.media-logo.edex .live {
  font-size: 9px; background: #e00; color: #fff;
  padding: 1px 4px; border-radius: 3px;
  vertical-align: super; font-weight: 700;
}
.media-logo.dh {
  font-size: 18px; font-weight: 900;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 2px 8px; line-height: 1.1; text-align: center;
}
.media-logo.dh small { font-size: 6px; font-weight: 400; display: block; letter-spacing: 1px; }
.media-logo.ys {
  border: 2px solid rgba(255,255,255,0.4);
  padding: 5px 10px; font-size: 11px; letter-spacing: 1.5px;
}

/* ── RIGHT IMAGE ── */
.hero-image-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 20px;
  animation: heroImgIn 1s cubic-bezier(0.22,1,0.36,1) 0.3s both;
}

/* rotating rings */
.hero-img-ring {
  position: absolute;
  top: 50%; left: 40%;
  border-radius: 50%;
  pointer-events: none;
}
.ring1 {
  width: 520px; height: 520px;
  border: 1px dashed rgba(77,217,217,0.15);
  transform: translate(-50%,-50%);
  animation: heroRing1 16s linear infinite;
}
.ring2 {
  width: 380px; height: 380px;
  border: 1px solid rgba(200,240,0,0.1);
  transform: translate(-50%,-50%);
  animation: heroRing2 10s linear infinite;
}

/* image frame */
.hero-img-frame {
  position: relative;
  width: 420px;
  height: 540px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  animation: heroFloat 6s ease-in-out infinite;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.8),
    0 0 0 1px rgba(77,217,217,0.15),
    0 0 80px rgba(26,79,255,0.15),
    inset 0 0 0 1px rgba(255,255,255,0.05);
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* shine sweep */
.hero-img-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
  animation: heroShine 4s ease-in-out infinite 2s;
  pointer-events: none;
}

/* floating stat cards */
.hero-float-card {
  position: absolute;
  bottom: 60px;
  left: -20px;
  background: rgba(5,15,30,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(77,217,217,0.25);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: heroCard1 0.8s cubic-bezier(0.22,1,0.36,1) 1.3s both;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.hero-float-card2 {
  position: absolute;
  top: 50px;
  right: -20px;
  background: rgba(5,15,30,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(200,240,0,0.25);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: heroCard2 0.8s cubic-bezier(0.22,1,0.36,1) 1.5s both;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.hero-pulse {
  width: 10px; height: 10px;
  background: #c8f000;
  border-radius: 50%;
  flex-shrink: 0;
  animation: heroPulse 1.5s ease-in-out infinite;
}
.hero-star { font-size: 18px; color: #c8f000; flex-shrink: 0; }
.hero-card-num {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.hero-card-label {
  font-size: 11px;
  color: #7a8fa0;
  margin-top: 3px;
  font-weight: 500;
}

/* ── FLOATING SOCIAL ── */
.float-social {
  position: fixed;
  right: 18px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 200;
}
.float-yt, .float-wa {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  color: #d9a441;
  background: rgba(217,164,65,0.1);
  border: 1px solid rgba(217,164,65,0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.float-yt::before, .float-wa::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(217,164,65,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.float-yt:hover::before, .float-wa:hover::before {
  width: 100%;
  height: 100%;
}

.float-yt svg, .float-wa svg {
  fill: #d9a441;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.float-yt:hover, .float-wa:hover {
  transform: scale(1.15);
  border-color: #d9a441;
  box-shadow: 0 4px 16px rgba(217,164,65,0.4);
}

.float-yt:hover svg, .float-wa:hover svg {
  transform: scale(1.1);
}

/* ── TICKER BAR ── */
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-bar {
  background: #000;
  border-top: 1px solid #1a2a2a;
  border-bottom: 1px solid #1a2a2a;
  overflow: hidden;
  padding: 10px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: tickerScroll 30s linear infinite;
}
.tick {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tick-name { color: #fff; font-weight: 700; }
.tick-up   { color: #00c853; }
.tick-down { color: #ff3d3d; }
.tick-sep  { color: #333; font-size: 16px; }

/* ── STRUGGLE SECTION ── */
@keyframes fadeUpSlow {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes coinFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-20px) rotate(8deg); }
}
@keyframes cardHoverIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.struggle {
  background: #000;
  padding: 90px 72px;
  position: relative;
  overflow: hidden;
}

/* glowing blobs */
.struggle::before {
  content: '';
  position: absolute;
  top: 10%; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,80,200,0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.struggle::after {
  content: '';
  position: absolute;
  bottom: 10%; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(100,180,0,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* floating coin decorations */
.coin {
  position: absolute;
  font-size: 80px;
  width: 90px; height: 90px;
  background: radial-gradient(circle at 35% 35%, #ffe066, #c8a000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a07000;
  font-size: 36px;
  box-shadow: 0 8px 32px rgba(200,160,0,0.4);
  animation: coinFloat 4s ease-in-out infinite;
  z-index: 0;
}
.coin-left  { top: 60px; left: 40px; animation-delay: 0s; }
.coin-right { bottom: 120px; right: 40px; animation-delay: 1.5s; }

.struggle-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.struggle-title {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 14px;
}
.struggle-highlight {
  background: linear-gradient(90deg, #d9a441, #ffe8a3, #d9a441);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s linear infinite;
}

.struggle-sub {
  color: #7a8fa0;
  font-size: 15px;
  margin-bottom: 52px;
}

/* ── TOP 3 CARDS ── */
.struggle-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.s-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.s-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217,164,65,0.4);
  box-shadow: 0 12px 40px rgba(217,164,65,0.08);
}

.s-icon {
  font-size: 36px;
  margin-bottom: 18px;
  display: block;
  filter: hue-rotate(60deg) brightness(1.4);
}

.s-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #d9a441;
  margin-bottom: 14px;
}
.s-card p {
  font-size: 14px;
  color: #8a9bb0;
  line-height: 1.7;
}

/* ── STATS ROW ── */
.struggle-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 14px;
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217,164,65,0.3);
}

.stat-num {
  font-size: 38px;
  font-weight: 900;
  color: #d9a441;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: #8a9bb0;
  font-weight: 500;
}

/* ── VIDEO WALL ── */
@keyframes vwFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.video-wall {
  background: #000;
  padding: 60px 0 80px;
  overflow: hidden;
}

/* ── VIDEO WALL HEADER ── */
.vw-header {
  text-align: center;
  padding: 0 24px 8px;
}
.vw-header h2 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}
.vw-header-highlight {
  color: #d9a441;
}

/* ── SHORTS ROW ── */
.vw-shorts-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 32px;
  min-height: 700px;
}

/* each short card — 9:16 portrait */
.vw-short {
  position: relative;
  width: 260px;
  height: 462px; /* 9:16 ratio */
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

/* stagger: odd cards shift up, even cards shift down */
.vw-short--up   { transform: translateY(-50px); }
.vw-short--down { transform: translateY(50px); }

.vw-short img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.72);
}

/* overlay + play button */
.vw-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  transition: background 0.3s;
}
.vw-play {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #000;
  padding-left: 4px;
  transition: transform 0.25s, background 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* caption */
.vw-caption {
  position: absolute;
  bottom: 14px;
  left: 10px;
  right: 10px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: rgba(0,0,0,0.6);
  padding: 4px 8px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  text-align: center;
  line-height: 1.4;
}

/* hover */
.vw-short:hover img         { transform: scale(1.06); filter: brightness(0.9); }
.vw-short:hover .vw-overlay { background: rgba(0,0,0,0.05); }
.vw-short:hover .vw-play    { transform: scale(1.15); background: #fff; }
.vw-short--up:hover   { transform: translateY(-58px); box-shadow: 0 16px 48px rgba(217,164,65,0.25); }
.vw-short--down:hover { transform: translateY(58px);  box-shadow: 0 16px 48px rgba(217,164,65,0.25); }

/* mobile: horizontal scroll */
@media (max-width: 768px) {
  .vw-header h2 { font-size: 30px; letter-spacing: -0.5px; }
  .vw-shorts-row {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 24px 16px 32px;
    gap: 12px;
    min-height: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .vw-shorts-row::-webkit-scrollbar { display: none; }
  .vw-short {
    width: 180px;
    height: 320px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  .vw-short--up, .vw-short--down { transform: none; }
  .vw-short--up:hover, .vw-short--down:hover { transform: translateY(-4px); }
  .vw-play { width: 44px; height: 44px; font-size: 16px; }
  .vw-caption { font-size: 10px; }
}

@media (max-width: 480px) {
  .vw-header h2 { font-size: 24px; }
  .vw-short { width: 155px; height: 275px; }
}

/* ── YOUTUBE MODAL — Shorts (9:16) ── */
.yt-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.yt-modal.active {
  opacity: 1;
  pointer-events: all;
}

.yt-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
}

.yt-modal-box {
  position: relative;
  z-index: 1;
  width: min(360px, 90vw);
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.8);
  transform: scale(0.92);
  transition: transform 0.3s;
}
.yt-modal.active .yt-modal-box {
  transform: scale(1);
}

.yt-frame-wrap {
  position: relative;
  padding-bottom: 177.78%; /* 9:16 */
  height: 0;
}
.yt-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.yt-close {
  position: absolute;
  top: 12px; right: 14px;
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.yt-close:hover { background: rgba(255,255,255,0.3); }

/* ── TESTIMONIALS ── */
@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.testimonials {
  background: #000;
  padding: 80px 0 90px;
  overflow: hidden;
}

.testi-header {
  text-align: center;
  margin-bottom: 56px;
  padding: 0 24px;
}
.testi-header h2 {
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.testi-highlight {
  background: linear-gradient(90deg, #d9a441, #ffe8a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.testi-header p {
  color: #7a8fa0;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.testi-header .btn-primary {
  display: inline-block;
  background: #d9a441;
  color: #000;
  font-weight: 800;
  font-size: 15px;
  padding: 13px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testi-header .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(217,164,65,0.4);
}

/* WhatsApp Button Styles - Matching Website Theme */
.btn-whatsapp, .gm-btn-whatsapp, .mc-btn-whatsapp, .mc-btn-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(217,164,65,0.1);
  color: #d9a441;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 8px;
  border: 1px solid rgba(217,164,65,0.3);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-whatsapp::before, .gm-btn-whatsapp::before, .mc-btn-whatsapp::before, .mc-btn-whatsapp-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(217,164,65,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-whatsapp:hover::before, .gm-btn-whatsapp:hover::before, .mc-btn-whatsapp:hover::before, .mc-btn-whatsapp-cta:hover::before {
  left: 100%;
}

.btn-whatsapp:hover, .gm-btn-whatsapp:hover, .mc-btn-whatsapp:hover, .mc-btn-whatsapp-cta:hover {
  background: rgba(217,164,65,0.15);
  border-color: #d9a441;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(217,164,65,0.3);
}

.btn-whatsapp svg, .gm-btn-whatsapp svg, .mc-btn-whatsapp svg, .mc-btn-whatsapp-cta svg {
  stroke: #d9a441;
  transition: transform 0.3s ease;
}

.btn-whatsapp:hover svg, .gm-btn-whatsapp:hover svg, .mc-btn-whatsapp:hover svg, .mc-btn-whatsapp-cta:hover svg {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .btn-whatsapp, .gm-btn-whatsapp, .mc-btn-whatsapp, .mc-btn-whatsapp-cta {
    width: 100%;
  }
}

/* scrolling track wrapper */
.testi-track-wrap {
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.testi-track {
  display: flex;
  gap: 20px;
  width: max-content;
}
.testi-track--left  { animation: scrollLeft  40s linear infinite; }
.testi-track--right { animation: scrollRight 40s linear infinite; }
.testi-track:hover  { animation-play-state: paused; }

/* individual card */
.t-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  padding: 28px 26px;
  width: 320px;
  flex-shrink: 0;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.t-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217,164,65,0.3);
  box-shadow: 0 12px 36px rgba(217,164,65,0.07);
}

.t-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a4fff, #0099cc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.t-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.t-stars {
  font-size: 13px;
  color: #f5c518;
  margin-top: 2px;
  letter-spacing: 1px;
}

.t-tag {
  display: inline-block;
  border: 1px solid rgba(217,164,65,0.6);
  color: #d9a441;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.t-card p {
  font-size: 13.5px;
  color: #8a9bb0;
  line-height: 1.7;
}

/* ── WHAT SETS Skip9to5 APART ── */
@keyframes apartFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rowSlideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes glowBlob {
  0%,100% { opacity: 0.5; transform: scale(1); }
  50%     { opacity: 0.8; transform: scale(1.1); }
}

.apart {
  background: #050a05;
  padding: 90px 40px;
  position: relative;
  overflow: hidden;
}

/* background blobs */
.apart::before {
  content: '';
  position: absolute;
  top: 0; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(60,120,0,0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: glowBlob 6s ease-in-out infinite;
}
.apart::after {
  content: '';
  position: absolute;
  bottom: 0; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,60,180,0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: glowBlob 6s ease-in-out infinite 2s;
}

.apart-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.apart-title {
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.apart-highlight {
  background: linear-gradient(90deg, #d9a441, #ffe8a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.apart-sub {
  color: #7a8fa0;
  font-size: 15px;
  margin-bottom: 44px;
}

/* ── TABLE ── */
.apart-table {
  border: 1px solid rgba(217,164,65,0.3);
  border-radius: 14px;
  overflow: hidden;
  text-align: left;
}

/* ── Row reveal animation ── */
@keyframes rowReveal {
  from {
    opacity: 0;
    transform: translateX(-32px);
    background: rgba(217,164,65,0.06);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    background: transparent;
  }
}

.at-row {
  display: grid;
  grid-template-columns: 1.8fr 1.4fr 2fr;
  border-bottom: 1px solid #222;
  /* hidden by default — revealed by JS observer */
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s ease;
}

/* visible state toggled by IntersectionObserver */
.at-row.row-visible {
  opacity: 1;
  transform: translateX(0);
}

/* header always visible, slides from top */
.at-row.at-header {
  opacity: 0;
  transform: translateY(-20px);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.at-row.at-header.row-visible {
  opacity: 1;
  transform: translateY(0);
}

/* gold flash on the haven column when row enters */
.at-row.row-visible .at-col--haven {
  animation: havenFlash 0.6s ease 0.3s both;
}
@keyframes havenFlash {
  0%   { background: rgba(217,164,65,0.18); }
  100% { background: #111; }
}

.at-row:last-child { border-bottom: none; }
.at-row:not(.at-header):hover { background: rgba(217,164,65,0.04); }

/* header row */
.at-header { background: transparent; }
.at-header .at-col {
  font-size: 14px;
  font-weight: 800;
  color: #000;
  padding: 14px 20px;
  text-align: center;
}
.at-header .at-col--feature {
  background: #111;
  color: transparent;
  border-right: 1px solid #1a2a1a;
}
.at-header .at-col--other {
  background: #d9a441;
  color: #000;
  border-right: 1px solid rgba(0,0,0,0.15);
}
.at-header .at-col--haven {
  background: #d9a441;
  color: #000;
}

.at-col {
  padding: 16px 20px;
  font-size: 13.5px;
  color: #ccc;
  line-height: 1.6;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
}
.at-col--feature {
  color: #e0e0e0;
  font-weight: 500;
  border-right: 1px solid #1a2a1a;
  background: #111;
  align-items: flex-start;
}
.at-col--other {
  color: #666;
  font-size: 13px;
  border-right: 1px solid #1a2a1a;
  justify-content: center;
  text-align: center;
  background: #0d0d0d;
  align-items: center;
}
.at-col--haven {
  color: #bbb;
  background: #111;
  align-items: flex-start;
}

.at-dot {
  width: 6px; height: 6px;
  background: #d9a441;
  border-radius: 50%;
  flex-shrink: 0;
}

.at-dash {
  font-size: 18px;
  color: #444;
  font-weight: 700;
}

.at-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: #d9a441;
  color: #000;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
}

/* ── 12 WEEK PROGRAM ── */
@keyframes tlCardLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes tlCardRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes globePulse {
  0%,100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50%     { transform: translate(-50%, -50%) scale(1.05); opacity: 0.7; }
}
@keyframes dotPing {
  0%   { box-shadow: 0 0 0 0 rgba(0,255,120,0.6); }
  100% { box-shadow: 0 0 0 14px rgba(0,255,120,0); }
}
@keyframes lineFill {
  from { height: 0; }
  to   { height: 100%; }
}

.program {
  background: #000;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* blue globe background */
.program-bg-globe {
  position: absolute;
  top: 50%; left: 50%;
  width: 700px; height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 40% 60%, rgba(0,80,200,0.35) 0%, rgba(0,30,80,0.2) 50%, transparent 75%);
  border-radius: 50%;
  pointer-events: none;
  animation: globePulse 6s ease-in-out infinite;
  z-index: 0;
}

/* coin decorations */
.coin-prog-left {
  position: absolute;
  top: 120px; left: 80px;
  width: 100px; height: 100px;
  background: radial-gradient(circle at 35% 35%, #ffe066, #c8a000);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 900; color: #7a5500;
  box-shadow: 0 8px 32px rgba(200,160,0,0.4);
  animation: coinFloat 4s ease-in-out infinite;
  z-index: 1;
}
.coin-prog-right {
  position: absolute;
  top: 20px; right: 80px;
  width: 120px; height: 120px;
  background: radial-gradient(circle at 35% 35%, #c8f000, #7a9900);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px; font-weight: 900; color: #3a5000;
  box-shadow: 0 8px 32px rgba(200,240,0,0.35);
  animation: coinFloat 5s ease-in-out infinite 1s;
  z-index: 1;
}

.program-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.program-title {
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.program-highlight {
  background: linear-gradient(90deg, #d9a441, #ffe8a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.program-sub {
  color: #7a8fa0;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 70px;
}

/* ── TIMELINE LAYOUT ── */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-height: 700px;
}

/* center vertical line */
.tl-line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  transform: translateX(-50%);
  width: 3px;
  background: rgba(255,255,255,0.08);
  z-index: 0;
}
.tl-line-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, #00ff88, #ff3366);
  transition: height 0.05s linear;
  border-radius: 2px;
}

/* dots on the line */
.tl-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  z-index: 2;
}
.tl-dot--green {
  background: #00ff88;
  animation: dotPing 1.5s ease-out infinite;
}
.tl-dot--red {
  background: #ff3366;
  box-shadow: 0 0 0 4px rgba(255,51,102,0.3);
}

/* cards */
.tl-card {
  position: relative;
  width: 42%;
  background: rgba(10,20,30,0.85);
  border: 1px solid #1a3a4a;
  border-radius: 16px;
  padding: 28px 28px 24px;
  text-align: left;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s;
  margin-bottom: 60px;
}
.tl-card.tl-visible { opacity: 1; transform: translateX(0) !important; }
.tl-card:hover {
  box-shadow: 0 12px 40px rgba(217,164,65,0.1);
  border-color: rgba(217,164,65,0.4);
}

.tl-card--right {
  align-self: flex-end;
  transform: translateX(60px);
}
.tl-card--left {
  align-self: flex-start;
  transform: translateX(-60px);
}

/* connector line from card to center */
.tl-card--right::before {
  content: '';
  position: absolute;
  top: 50%; left: -60px;
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, #1a6a8a);
}
.tl-card--left::before {
  content: '';
  position: absolute;
  top: 50%; right: -60px;
  width: 60px; height: 1px;
  background: linear-gradient(270deg, transparent, #1a6a8a);
}

.tl-month {
  display: inline-block;
  background: rgba(217,164,65,0.15);
  border: 1px solid rgba(217,164,65,0.4);
  color: #d9a441;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.tl-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #d9a441;
  margin-bottom: 18px;
  line-height: 1.3;
}

.tl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
  cursor: pointer;
}
.tl-item:hover { background: rgba(217,164,65,0.07); border-color: rgba(217,164,65,0.3); }
.tl-item:last-child { margin-bottom: 0; }

.tl-week {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 4px 8px;
  border: 1px solid rgba(217,164,65,0.6);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  color: #d9a441;
  text-align: center;
  line-height: 1.3;
  flex-shrink: 0;
}

.tl-arrow { color: #d9a441; font-size: 14px; flex-shrink: 0; }

.tl-item > span:nth-child(3) {
  flex: 1;
  font-size: 13.5px;
  color: #ccc;
}

.tl-chevron {
  color: #d9a441;
  font-size: 16px;
  flex-shrink: 0;
}

/* ── DOWNLOAD BROCHURE ── */
@keyframes brochureFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes btnPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,240,0,0.4); }
  50%     { box-shadow: 0 0 0 12px rgba(200,240,0,0); }
}

.brochure {
  background: #000;
  padding: 20px 72px 80px;
}

.brochure-card {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(10,20,35,0.9);
  border: 1px solid rgba(77,217,217,0.2);
  border-radius: 20px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  animation: brochureFadeIn 0.7s ease 0.2s both;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.brochure-card:hover {
  border-color: rgba(217,164,65,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.brochure-text h2 {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.brochure-highlight {
  background: linear-gradient(90deg, #d9a441, #ffe8a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brochure-text p {
  color: #7a8fa0;
  font-size: 14px;
  line-height: 1.7;
}

.brochure-btn {
  text-decoration: none;
  background: #d9a441;
  color: #000;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: btnPulse 2s ease-in-out infinite;
}
.brochure-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(217,164,65,0.4);
  animation: none;
}

/* ── MEET THE MENTORS ── */
@keyframes mentorFadeUp {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes mentorImgReveal {
  from { transform: scale(1.08); filter: brightness(0.6); }
  to   { transform: scale(1);    filter: brightness(1); }
}

.mentors {
  background: #000;
  padding: 80px 72px 100px;
  position: relative;
  overflow: hidden;
}
.mentors::before {
  content: '';
  position: absolute;
  top: 0; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,60,160,0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.mentors::after {
  content: '';
  position: absolute;
  top: 0; right: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(60,120,0,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.mentors-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.mentors-title {
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.mentors-highlight {
  background: linear-gradient(90deg, #d9a441, #ffe8a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mentors-sub {
  color: #7a8fa0;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* list layout */
.mentors-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* mentor item - one by one layout */
.mentor-item {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: center;
  transition: transform 0.3s;
}
.mentor-item:nth-child(even) {
  grid-template-columns: 1fr 380px;
}
.mentor-item:nth-child(even) .mentor-item-img {
  order: 2;
}
.mentor-item:nth-child(even) .mentor-item-content {
  order: 1;
}

.mentor-item-img {
  width: 100%;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
}
.mentor-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) brightness(0.9);
  transition: transform 0.5s ease, filter 0.4s ease;
  animation: mentorImgReveal 0.8s ease both;
}
.mentor-item:hover .mentor-item-img img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1);
}

.mentor-item-content {
  text-align: left;
}
.mentor-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.mentor-item-name {
  font-size: 24px;
  font-weight: 900;
  color: #d9a441;
  letter-spacing: 0.5px;
  margin: 0;
}
.mentor-item-role {
  font-size: 11px;
  font-weight: 700;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.mentor-item-trade {
  font-size: 14px;
  color: #aaa;
  margin: 0 0 16px 0;
  font-weight: 600;
}
.mentor-item-desc {
  font-size: 15px;
  color: #8a9bb0;
  line-height: 1.7;
  margin-bottom: 20px;
}
.mentor-item-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mentor-item-exp {
  font-size: 13px;
  color: #666;
}
.mentor-item-ig {
  text-decoration: none;
  font-size: 18px;
  color: #888;
  transition: color 0.2s, transform 0.2s;
}
.mentor-item-ig:hover { color: #e1306c; transform: scale(1.2); }

/* ── CHOOSE YOUR PATH ── */
@keyframes priceFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes raysRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.pricing {
  background: #020818;
  padding: 80px 72px 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* rotating rays background */
.pricing-rays {
  position: absolute;
  top: 50%; left: 50%;
  width: 1400px; height: 1400px;
  transform: translate(-50%, -50%);
  background: repeating-conic-gradient(
    rgba(0,60,180,0.12) 0deg 10deg,
    transparent 10deg 20deg
  );
  border-radius: 50%;
  animation: raysRotate 40s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.pricing-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-title {
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 16px;
  animation: priceFadeUp 0.7s ease 0.1s both;
}
.pricing-highlight {
  background: linear-gradient(90deg, #d9a441, #ffe8a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-sub {
  color: #7a8fa0;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 56px;
  animation: priceFadeUp 0.7s ease 0.25s both;
}

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

/* card */
.price-card {
  background: rgba(5,15,35,0.92);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 32px 28px;
  text-align: left;
  opacity: 0;
  animation: priceFadeUp 0.7s ease both;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217,164,65,0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.price-tag {
  display: inline-block;
  background: #fff;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 6px;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.price-desc {
  color: #8a9bb0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.price-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #ccc;
  line-height: 1.4;
}
.pf-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: rgba(217,164,65,0.15);
  border: 1px solid rgba(217,164,65,0.6);
  border-radius: 50%;
  color: #d9a441;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

.price-btn {
  display: block;
  width: 100%;
  background: #d9a441;
  color: #000;
  font-size: 16px;
  font-weight: 800;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  margin-bottom: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.price-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(217,164,65,0.4);
}

.price-note {
  text-align: center;
  font-size: 12px;
  color: #555;
}

/* ── WHY Skip9to5 ── */
@keyframes whyFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes orbitSpin1 {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}
@keyframes orbitSpin2 {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(-360deg); }
}
@keyframes dotOrbit1 {
  from { transform: rotate(0deg)   translateX(160px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(160px) rotate(-360deg); }
}
@keyframes dotOrbit2 {
  from { transform: rotate(60deg)  translateX(240px) rotate(-60deg); }
  to   { transform: rotate(420deg) translateX(240px) rotate(-420deg); }
}
@keyframes dotOrbit3 {
  from { transform: rotate(180deg) translateX(200px) rotate(-180deg); }
  to   { transform: rotate(540deg) translateX(200px) rotate(-540deg); }
}
@keyframes dotOrbit4 {
  from { transform: rotate(270deg) translateX(280px) rotate(-270deg); }
  to   { transform: rotate(630deg) translateX(280px) rotate(-630deg); }
}
@keyframes dotOrbit5 {
  from { transform: rotate(120deg) translateX(320px) rotate(-120deg); }
  to   { transform: rotate(480deg) translateX(320px) rotate(-480deg); }
}
@keyframes msgFloat {
  0%,100% { transform: translateY(0); opacity: 1; }
  50%     { transform: translateY(-10px); opacity: 0.9; }
}

.why-ha {
  background: #000;
  padding: 80px 72px 0;
  position: relative;
  overflow: hidden;
}
.why-ha::before {
  content: '';
  position: absolute;
  top: 0; left: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(0,50,160,0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.why-ha::after {
  content: '';
  position: absolute;
  top: 0; right: -80px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(40,100,0,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-ha-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.why-ha-title {
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.why-ha-highlight {
  background: linear-gradient(90deg, #d9a441, #ffe8a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.why-ha-sub {
  color: #7a8fa0;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 52px;
}

/* 4 feature cards */
.why-ha-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.why-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 14px;
  padding: 36px 24px 32px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217,164,65,0.3);
  box-shadow: 0 14px 40px rgba(217,164,65,0.07);
}
.why-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
  filter: grayscale(1) brightness(2);
}
.why-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 13px;
  color: #7a8fa0;
  line-height: 1.6;
}

/* ── ORBIT ── */
.orbit-wrap {
  position: relative;
  width: 100%;
  height: 420px;
  margin: 0 auto;
}

.orbit {
  position: absolute;
  top: 30%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(30,100,200,0.35);
  transform: translate(-50%,-50%);
}
.orbit-1 { width: 320px; height: 320px; animation: orbitSpin1 18s linear infinite; }
.orbit-2 { width: 480px; height: 480px; animation: orbitSpin2 26s linear infinite; }
.orbit-3 { width: 640px; height: 640px; animation: orbitSpin1 36s linear infinite; }

/* dots on orbits */
.orbit-dot {
  position: absolute;
  top: 30%; left: 50%;
  width: 12px; height: 12px;
  background: #d9a441;
  border-radius: 50%;
  box-shadow: 0 0 8px #d9a441;
  transform-origin: 0 0;
}
.od-1 { animation: dotOrbit1 18s linear infinite; }
.od-2 { animation: dotOrbit2 26s linear infinite; }
.od-3 { animation: dotOrbit3 22s linear infinite; }
.od-4 { animation: dotOrbit4 30s linear infinite; }
.od-5 { animation: dotOrbit5 36s linear infinite; }

/* floating message cards */
.orbit-msg {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10,20,35,0.92);
  border: 1px solid rgba(77,217,217,0.2);
  border-radius: 12px;
  padding: 10px 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  animation: msgFloat 4s ease-in-out infinite;
  max-width: 280px;
}
.om-1 { bottom: 80px; left: 5%;  animation-delay: 0s; }
.om-2 { top: 20px;   right: 5%; animation-delay: 1.5s; }

.om-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a4fff, #0099cc);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.om-text {
  font-size: 11px;
  color: #ccc;
  line-height: 1.5;
  text-align: left;
}
.om-text strong { color: #fff; font-size: 12px; }

/* ── FOOTER ── */
@keyframes footerFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.footer {
  background: #0a0a0a;
  border-top: 1px solid #1a1a1a;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 60px;
  padding: 60px 72px 48px;
  max-width: 1280px;
  margin: 0 auto;
  animation: footerFadeIn 0.7s ease 0.1s both;
}

/* COL 1 */
.footer-logo-img {
  height: 200px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 32px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.footer-col p {
  font-size: 13px;
  color: #888;
  line-height: 1.8;
  margin-bottom: 16px;
}
.footer-col a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: #c8f000; }

.footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.footer-policies a {
  font-size: 12px;
  color: #666;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-policies a:hover { color: #c8f000; }

/* COL 2 */
.footer-col--contact p {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-icon { font-size: 14px; }
.footer-col--contact a {
  color: #4dd9d9;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-col--contact a:hover { color: #c8f000; }
.footer-hours-sub {
  color: #666 !important;
  font-size: 12px !important;
  margin-bottom: 10px !important;
}
.footer-hours-note {
  color: #666 !important;
  font-size: 12px !important;
  font-style: italic;
}

/* COL 3 nav */
.footer-col--nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 4px;
}
.footer-col--nav a {
  font-size: 14px;
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col--nav a:hover { color: #fff; }

.footer-nav-home {
  display: inline-block;
  background: #d9a441 !important;
  color: #000 !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  padding: 8px 22px;
  border-radius: 24px;
  width: fit-content;
  transition: box-shadow 0.2s, transform 0.2s !important;
}
.footer-nav-home:hover {
  box-shadow: 0 6px 20px rgba(217,164,65,0.4) !important;
  transform: translateY(-2px) !important;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding: 20px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 13px;
  color: #555;
}
.footer-bottom strong { color: #fff; }

.footer-socials {
  display: flex;
  gap: 12px;
}
.fs-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: #888;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.fs-icon:hover {
  background: #d9a441;
  color: #000;
  transform: translateY(-2px);
  border-color: #d9a441;
}

/* ── HERO ANIMATED CHART ── */
@keyframes barRise {
  0%   { height: 10%; opacity: 0.4; }
  50%  { height: var(--h); opacity: 1; }
  100% { height: calc(var(--h) * 0.85); opacity: 0.85; }
}
@keyframes barPulse {
  0%,100% { height: var(--h); }
  50%     { height: calc(var(--h) * 0.75); }
}
@keyframes curveDraw {
  from { stroke-dashoffset: 800; }
  to   { stroke-dashoffset: 0; }
}
@keyframes chartDotPulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(217,164,65,0.6); }
  50%     { transform: scale(1.4); box-shadow: 0 0 0 8px rgba(217,164,65,0); }
}

.hero-chart {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #020c1a 0%, #041428 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px 24px 40px;
  gap: 0;
}

.chart-grid {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  pointer-events: none;
  padding: 20px 0;
}
.chart-line {
  width: 100%;
  height: 1px;
  background: rgba(217,164,65,0.08);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  width: 100%;
  height: 55%;
  position: relative;
  z-index: 1;
}
.chart-bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--color) 0%, rgba(217,164,65,0.3) 100%);
  animation: barRise 1.2s cubic-bezier(0.22,1,0.36,1) var(--delay) both,
             barPulse 3s ease-in-out calc(var(--delay) + 1.2s) infinite;
  height: var(--h);
  opacity: 0.85;
  box-shadow: 0 0 12px rgba(217,164,65,0.2);
}

.chart-curve {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.curve-line {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: curveDraw 2s cubic-bezier(0.22,1,0.36,1) 0.5s forwards;
}
.curve-fill {
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.chart-label-up {
  position: absolute;
  top: 18px;
  right: 20px;
  background: rgba(200,240,0,0.15);
  border: 1px solid rgba(200,240,0,0.4);
  color: #c8f000;
  font-size: 14px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 3;
  animation: fadeIn 0.6s ease 2s both;
}
.chart-label-up span { font-size: 16px; }

.chart-dots { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.chart-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--dc);
  box-shadow: 0 0 0 3px rgba(217,164,65,0.3);
  animation: chartDotPulse 2s ease-in-out infinite;
  transform: translate(-50%, 50%);
}

/* ── NAVBAR MOBILE FIX ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 10;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .navbar { padding: 6px 12px; }
  .nav-logo-img { height: 32px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 13px; }

  .hero { padding: 120px 40px 60px; }
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-h1 { font-size: 52px; letter-spacing: -2px; }
  .hero-img-frame { width: 340px; height: 440px; }

  .struggle { padding: 70px 40px; }
  .mentors { padding: 70px 40px 80px; }
  .pricing { padding: 70px 40px 80px; }
  .why-ha { padding: 70px 40px 0; }
  .why-ha-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-main { padding: 50px 40px 40px; gap: 40px; }
  .footer-bottom { padding: 18px 40px; }
  .brochure { padding: 20px 40px 60px; }
  .brochure-card { padding: 36px 40px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
═══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Navbar */
  .navbar { padding: 5px 12px; }
  .navbar-island {
    padding: 4px 12px;
    border-radius: 16px;
    position: relative;
    flex-wrap: wrap;
  }
  .nav-logo-img { height: 30px; }
  .nav-hamburger { display: flex; }
  .nav-actions { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: rgba(2,13,13,0.97);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    border-radius: 0;
    color: #ccc;
  }
  .nav-links a.active {
    border: none;
    border-radius: 0;
    padding: 12px 20px;
    background: rgba(77,217,217,0.1);
    color: #fff;
  }
  .nav-links a.active::after { display: none; }

  /* Hero */
  .hero { padding: 110px 20px 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-image-wrap { display: none; }
  .hero-content { padding-right: 0; }
  .hero-h1 { font-size: 40px; letter-spacing: -1.5px; }
  .hero-badge { margin: 0 auto 24px; }
  .hero-stats { justify-content: center; }
  .hero-buttons { justify-content: center; flex-wrap: wrap; }

  /* Struggle */
  .struggle { padding: 60px 20px; }
  .coin { display: none; }
  .struggle-cards { grid-template-columns: 1fr; }
  .struggle-stats { grid-template-columns: 1fr; }
  .struggle-title { font-size: 32px; letter-spacing: -1px; }

  /* Video wall */
  .vw-grid {
    overflow-x: auto;
    padding: 0 16px 16px;
    min-height: auto;
    -webkit-overflow-scrolling: touch;
  }
  .vw-col { min-width: 180px; }
  .vw-col--offset { margin-top: 0; }
  .vw-item { height: 160px; }
  .vw-item--tall, .vw-item--center { height: 200px; }
  .vw-item--sm { height: 130px; }

  /* Testimonials */
  .testi-header h2 { font-size: 30px; }

  /* Apart table */
  .apart { padding: 60px 16px; }
  .apart-title { font-size: 28px; }
  .apart-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .at-row { 
    grid-template-columns: 1.2fr 1fr 1.3fr;
    min-width: 600px;
  }
  .at-col { 
    font-size: 12px;
    padding: 12px 8px;
  }
  .at-col--feature {
    border-right: 1px solid #222;
  }
  .at-col--other {
    border-right: 1px solid #222;
    text-align: center;
  }
  .at-col--haven {
    text-align: center;
  }

  /* Program / Timeline */
  .program { padding: 60px 0 70px; }
  .coin-prog-left, .coin-prog-right { display: none; }
  .program-title { font-size: 28px; }
  .program-inner { padding: 0 20px; }
  .tl-line { display: none; }
  .tl-card {
    width: 90%;
    align-self: center !important;
    transform: none !important;
    margin-bottom: 20px;
  }
  .tl-card--right::before, .tl-card--left::before { display: none; }
  .timeline { min-height: auto; }

  /* Brochure */
  .brochure { padding: 20px 16px 50px; }
  .brochure-card {
    flex-direction: column;
    padding: 28px 20px;
    text-align: center;
    gap: 20px;
  }
  .brochure-text h2 { font-size: 24px; }

  /* Mentors */
  .mentors { padding: 60px 20px 70px; }
  .mentors-list { gap: 28px; }
  .mentor-item { 
    grid-template-columns: 1fr !important;
    gap: 0;
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
  }
  .mentor-item:nth-child(even) .mentor-item-img { order: 0; }
  .mentor-item:nth-child(even) .mentor-item-content { order: 0; }
  .mentor-item-img { 
    height: 850px;
    border-radius: 0;
  }
  .mentor-item-content {
    padding: 24px 20px 28px;
    text-align: center;
  }
  .mentor-item-header {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .mentor-item-role {
    background: rgba(217, 164, 65, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
  }
  .mentor-item-meta {
    justify-content: center;
  }
  .mentor-item-exp {
    background: rgba(217, 164, 65, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(217, 164, 65, 0.2);
  }
  .mentor-item-name { font-size: 20px; }
  .mentors-title { font-size: 30px; }

  /* Pricing */
  .pricing { padding: 60px 20px 70px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-title { font-size: 28px; }

  /* Why HA */
  .why-ha { padding: 60px 20px 0; }
  .why-ha-grid { grid-template-columns: 1fr 1fr; }
  .why-ha-title { font-size: 30px; }
  .orbit-wrap { height: 260px; }
  .orbit-1 { width: 180px; height: 180px; }
  .orbit-2 { width: 260px; height: 260px; }
  .orbit-3 { display: none; }
  .orbit-msg { display: none; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 36px 20px 28px; }
  .footer-logo-img { height: 100px; margin-bottom: 20px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
  }

  /* Float social */
  .float-social { right: 12px; bottom: 60px; }
  .float-yt, .float-wa { width: 40px; height: 40px; font-size: 16px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
═══════════════════════════════════════ */
@media (max-width: 480px) {
  .hero { padding: 100px 16px 50px; }
  .hero-h1 { font-size: 32px; letter-spacing: -0.5px; }
  .hero-para { font-size: 14px; }
  .hero-stat-num { font-size: 20px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons a { text-align: center; }

  .struggle-title { font-size: 26px; }
  .testi-header h2 { font-size: 24px; }
  .t-card { width: 270px; }
  .apart-title { font-size: 22px; }
  .program-title { font-size: 22px; }
  .brochure-text h2 { font-size: 20px; }
  .mentors-title { font-size: 24px; }
  .pricing-title { font-size: 22px; }
  .why-ha-title { font-size: 24px; }
  .why-ha-grid { grid-template-columns: 1fr; }

  .footer-policies { flex-direction: column; gap: 8px; }
  .footer-socials { gap: 8px; }
  .float-yt, .float-wa { width: 36px; height: 36px; font-size: 14px; }
}


/* ── COURSES SECTION ── */
@keyframes courseCardIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.courses-section {
  background: #020510;
  padding: 90px 72px;
  position: relative;
  overflow: hidden;
}

.courses-section::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(217,164,65,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.courses-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.courses-header {
  text-align: center;
  margin-bottom: 36px;
}

.courses-title {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.courses-highlight {
  background: linear-gradient(90deg, #d9a441, #ffe8a3, #d9a441);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s linear infinite;
}

.courses-tagline {
  color: #7a8fa0;
  font-size: 15px;
}

/* filter tabs */
.courses-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.ctab {
  background: transparent;
  border: 1px solid #2a2a3a;
  color: #8a9bb0;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.ctab:hover {
  border-color: rgba(217,164,65,0.4);
  color: #d9a441;
}

.ctab--active {
  background: #d9a441;
  border-color: #d9a441;
  color: #000;
  font-weight: 800;
}

/* card grid — 4 columns */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ccard {
  background: #0d1117;
  border: 1px solid #1e2230;
  border-radius: 16px;
  padding: 28px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  animation: courseCardIn 0.5s ease both;
}

.ccard:nth-child(1)  { animation-delay: 0.05s; }
.ccard:nth-child(2)  { animation-delay: 0.10s; }
.ccard:nth-child(3)  { animation-delay: 0.15s; }
.ccard:nth-child(4)  { animation-delay: 0.20s; }
.ccard:nth-child(5)  { animation-delay: 0.25s; }
.ccard:nth-child(6)  { animation-delay: 0.30s; }
.ccard:nth-child(7)  { animation-delay: 0.35s; }
.ccard:nth-child(8)  { animation-delay: 0.40s; }
.ccard:nth-child(9)  { animation-delay: 0.45s; }
.ccard:nth-child(10) { animation-delay: 0.50s; }
.ccard:nth-child(11) { animation-delay: 0.55s; }
.ccard:nth-child(12) { animation-delay: 0.60s; }

.ccard:hover {
  transform: translateY(-6px);
  border-color: rgba(217,164,65,0.45);
  box-shadow: 0 14px 40px rgba(217,164,65,0.08);
}

/* app icon */
.ccard-img-wrap {
  width: 100%;
  height: 130px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  position: relative;
  flex-shrink: 0;
}

.ccard-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  filter: brightness(0.85);
}

.ccard:hover .ccard-img-wrap img {
  transform: scale(1.06);
  filter: brightness(0.7);
}

.ccard-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #d9a441;
  line-height: 1.4;
  margin-bottom: 10px;
}

/* coming soon badge */
.ccard-soon {
  display: inline-block;
  background: rgba(217,164,65,0.12);
  border: 1px solid rgba(217,164,65,0.35);
  color: #d9a441;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* responsive */
@media (max-width: 900px) {
  .courses-section { padding: 60px 24px; }
  .courses-title { font-size: 32px; }
  .courses-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .courses-tabs { gap: 8px; }
  .ctab { font-size: 12px; padding: 6px 14px; }
}


/* purchase now button on Global Markets card */
.ccard-buy-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 18px;
  background: linear-gradient(135deg, #d9a441, #ffe8a3);
  color: #000;
  font-size: 12px;
  font-weight: 800;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ccard-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217,164,65,0.45);
}

/* ── GLOBAL MARKETS EXPANDED CARD ── */
.gm-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  background: #0d1117;
  border: 1px solid rgba(217,164,65,0.25);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.gm-card-img {
  position: relative;
  overflow: hidden;
}
.gm-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
  transition: transform 0.5s ease;
}
.gm-card:hover .gm-card-img img { transform: scale(1.04); }

.gm-img-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.gm-live-badge {
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(217,164,65,0.4);
  color: #d9a441;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.gm-card-content {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.gm-tag {
  display: inline-block;
  background: linear-gradient(90deg, rgba(217,164,65,0.15), rgba(255,232,163,0.15));
  border: 1px solid rgba(217,164,65,0.35);
  color: #d9a441;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.gm-title {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.gm-desc {
  font-size: 14px;
  color: #7a8fa0;
  line-height: 1.7;
}

.gm-courses {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gm-course {
  padding: 16px 0;
}

.gm-course-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.gm-course-num {
  font-size: 11px;
  font-weight: 800;
  color: #d9a441;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(217,164,65,0.1);
  border: 1px solid rgba(217,164,65,0.25);
  padding: 3px 10px;
  border-radius: 20px;
}

.gm-course-price {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}
.gm-course-price small {
  font-size: 12px;
  color: #7a8fa0;
  font-weight: 500;
}

.gm-course h4 {
  font-size: 15px;
  font-weight: 700;
  color: #e0e0e0;
  margin-bottom: 5px;
}

.gm-course p {
  font-size: 13px;
  color: #7a8fa0;
  line-height: 1.65;
}

.gm-course-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
}

.gm-card-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: auto;
}

.gm-btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #d9a441, #ffe8a3);
  color: #000;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.gm-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,164,65,0.4);
}

.gm-btn-outline {
  display: inline-block;
  background: transparent;
  color: #d9a441;
  border: 1px solid rgba(217,164,65,0.45);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.gm-btn-outline:hover {
  background: rgba(217,164,65,0.08);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .gm-card { grid-template-columns: 1fr; }
  .gm-card-img { height: 260px; }
  .gm-card-content { padding: 28px 24px; }
  .gm-title { font-size: 22px; }
}

/* ── TIMELINE DAY 45 SPECIAL CARD ── */
.tl-card--m4 { margin-top: 0; }

.tl-month--gold {
  background: linear-gradient(135deg, #d9a441, #ffe8a3) !important;
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
}

.tl-card--special {
  border-color: rgba(217,164,65,0.5) !important;
  background: linear-gradient(135deg, rgba(217,164,65,0.07), rgba(255,232,163,0.04)) !important;
  box-shadow: 0 0 40px rgba(217,164,65,0.1);
}

.tl-card--special h3 {
  color: #d9a441;
  font-size: 20px;
}

.tl-special-desc {
  font-size: 14px;
  color: #8a9bb0;
  line-height: 1.7;
  margin: 12px 0 16px;
}
.tl-special-desc strong { color: #fff; }

.tl-special-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tl-special-tags span {
  background: rgba(217,164,65,0.12);
  border: 1px solid rgba(217,164,65,0.3);
  color: #d9a441;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}


/* ══════════════════════════════════════════
   SCROLL-TRIGGERED ANIMATIONS
   ══════════════════════════════════════════ */

/* Base hidden state — applied before element enters viewport */
[data-animate] {
  opacity: 0;
  transition-property: opacity, transform, filter;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  transition-duration: 0.75s;
  will-change: opacity, transform;
}

/* Animated-in state */
[data-animate].is-visible {
  opacity: 1;
  transform: none !important;
  filter: none !important;
}

/* ── Variants ── */
[data-animate="fade-up"]    { transform: translateY(48px); }
[data-animate="fade-down"]  { transform: translateY(-48px); }
[data-animate="fade-left"]  { transform: translateX(60px); }
[data-animate="fade-right"] { transform: translateX(-60px); }
[data-animate="zoom-in"]    { transform: scale(0.82); }
[data-animate="zoom-out"]   { transform: scale(1.18); }
[data-animate="flip-up"]    { transform: perspective(600px) rotateX(22deg) translateY(40px); }
[data-animate="pop"]        { transform: scale(0.7); }
[data-animate="slide-up"]   { transform: translateY(80px); }
[data-animate="blur-in"]    { transform: translateY(24px); filter: blur(12px); }

/* Stagger delays via data-delay attribute */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="250"] { transition-delay: 0.25s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="350"] { transition-delay: 0.35s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="450"] { transition-delay: 0.45s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }
[data-delay="700"] { transition-delay: 0.7s; }
[data-delay="800"] { transition-delay: 0.8s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ══════════════════════════════════════════
   TORCH CURSOR
   ══════════════════════════════════════════ */

/* gold arrow SVG cursor — tip at top-left (0 0) */
*, *::before, *::after {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='28' viewBox='0 0 24 28'%3E%3Cfilter id='g'%3E%3CfeGaussianBlur stdDeviation='1.2' result='blur'/%3E%3CfeComposite in='SourceGraphic' in2='blur' operator='over'/%3E%3C/filter%3E%3Cg filter='url(%23g)'%3E%3Cpath d='M3 2 L3 22 L8 17 L12 25 L14.5 24 L10.5 16 L17 16 Z' fill='%23d9a441' stroke='%23000' stroke-width='1.2' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E") 3 2, auto !important;
}

/* pointer cursor for interactive elements */
a, button, [role="button"], input[type="submit"],
input[type="button"], label, select,
.program-option, .payment-method-btn,
.crypto-network-btn, .cta, .mc-btn-primary,
.mc-btn-outline, .gm-btn-primary, .gm-btn-outline,
.os-btn-primary, .os-btn-outline {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='28' viewBox='0 0 24 28'%3E%3Cfilter id='g'%3E%3CfeGaussianBlur stdDeviation='1.8' result='blur'/%3E%3CfeComposite in='SourceGraphic' in2='blur' operator='over'/%3E%3C/filter%3E%3Cg filter='url(%23g)'%3E%3Cpath d='M3 2 L3 22 L8 17 L12 25 L14.5 24 L10.5 16 L17 16 Z' fill='%23ffe8a3' stroke='%23000' stroke-width='1.2' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E") 3 2, pointer !important;
}

/* outer glow ring */
#torchRing {
  position: fixed;
  top: 0; left: 0;
  width: 380px; height: 380px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(217,164,65,0.13)  0%,
    rgba(217,164,65,0.06)  30%,
    rgba(217,164,65,0.02)  55%,
    transparent            75%
  );
  transition: opacity 0.3s ease;
  will-change: transform;
}

/* no dot — arrow SVG handles the tip */
#torchDot { display: none; }

body.cursor-hover #torchRing {
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(255,232,163,0.18) 0%,
    rgba(217,164,65,0.08)  35%,
    transparent            70%
  );
}

/* hide when mouse leaves window */
body.cursor-out #torchRing { opacity: 0; }

@media (pointer: coarse) {
  *, *::before, *::after { cursor: auto !important; }
  #torchRing { display: none; }
}

/* ══════════════════════════════════════════
   NAVBAR — PREVENT HORIZONTAL OVERFLOW ON MOBILE
   ══════════════════════════════════════════ */
.navbar {
  width: 100%;
  overflow: visible;
}
.navbar-island {
  min-width: 0;
  overflow: visible;
}

/* ══════════════════════════════════════════
   GLOBAL MOBILE OVERFLOW FIX
   ══════════════════════════════════════════ */
html, body {
  overflow-x: hidden;
  width: 100%;
}

/* ══════════════════════════════════════════
   PAYMENT CSS MOBILE
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .payment-grid { grid-template-columns: 1fr !important; }
  .payment-hero { padding: 100px 16px 40px !important; }
  .payment-section { padding: 20px 0 !important; }
  .container { padding: 0 16px !important; }
  .order-summary, .payment-details { padding: 20px 16px !important; }
  .payment-methods { flex-wrap: wrap; gap: 10px !important; }
  .payment-method-btn { flex: 1 1 calc(50% - 10px); min-width: 100px; }
  .modal-content { width: 95% !important; max-width: 95% !important; padding: 20px 16px !important; }
  .crypto-network-list { gap: 8px !important; }
  .crypto-network-btn { padding: 12px 14px !important; }
}

@media (max-width: 480px) {
  .payment-method-btn { flex: 1 1 100%; }
  .modal-content { width: 98% !important; }
}

/* ══════════════════════════════════════════
   ENHANCED MOBILE RESPONSIVE (≤768px)
   ══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Navbar — no horizontal scroll */
  .navbar {
    padding: 5px 10px;
  }
  .navbar-island {
    padding: 4px 10px;
    border-radius: 14px;
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    overflow: visible;
  }
  .logo { flex-shrink: 0; }
  .nav-logo-img { height: 28px; }
  .nav-hamburger { display: flex; flex-shrink: 0; }
  .nav-actions { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: rgba(2,5,16,0.98);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    backdrop-filter: blur(20px);
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    width: 100%;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 13px 20px;
    font-size: 15px;
    color: #ccc;
    border-radius: 0;
  }
  .nav-links a.active {
    border: none;
    border-radius: 0;
    padding: 13px 20px;
    background: rgba(217,164,65,0.1);
    color: #fff;
  }

  /* Hero */
  .hero {
    padding: 100px 16px 50px;
    min-height: auto;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .hero-content { padding-right: 0; }
  .hero-h1 { font-size: 36px; letter-spacing: -1px; }
  .hero-badge { margin: 0 auto 20px; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .hero-buttons { justify-content: center; flex-wrap: wrap; }
  .hero-image-wrap {
    display: flex;
    justify-content: center;
    padding-left: 0;
  }
  .hero-img-frame {
    width: 100%;
    max-width: 340px;
    height: 300px;
  }
  .hero-chart { border-radius: 14px; }
  .ring1 { width: 320px; height: 320px; }
  .ring2 { width: 240px; height: 240px; }
  .hero-float-card { left: 0; bottom: -10px; }
  .hero-float-card2 { right: 0; top: 10px; }

  /* Sections general */
  .struggle { padding: 50px 16px; }
  .apart { padding: 50px 16px; }
  .mentors { padding: 50px 16px 60px; }
  .pricing { padding: 50px 16px 60px; }
  .why-ha { padding: 50px 16px 0; }
  .program { padding: 50px 0 60px; }
  .brochure { padding: 16px 16px 40px; }

  /* Struggle */
  .coin { display: none; }
  .struggle-cards { grid-template-columns: 1fr; }
  .struggle-stats { grid-template-columns: 1fr; }
  .struggle-title { font-size: 28px; }

  /* Apart table */
  .apart-title { font-size: 26px; }
  .apart-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .at-row { 
    grid-template-columns: 1.2fr 1fr 1.3fr;
    min-width: 600px;
  }
  .at-col { 
    font-size: 11px;
    padding: 10px 6px;
  }
  .at-col--feature {
    border-right: 1px solid #222;
  }
  .at-col--other {
    border-right: 1px solid #222;
    text-align: center;
  }
  .at-col--haven {
    text-align: center;
  }

  /* Program */
  .coin-prog-left, .coin-prog-right { display: none; }
  .program-title { font-size: 26px; }
  .program-inner { padding: 0 16px; }
  .tl-line { display: none; }
  .tl-card { width: 95%; align-self: center !important; transform: none !important; margin-bottom: 16px; }
  .tl-card--right::before, .tl-card--left::before { display: none; }
  .timeline { min-height: auto; gap: 0; }

  /* Brochure */
  .brochure-card { flex-direction: column; padding: 24px 16px; text-align: center; gap: 16px; }
  .brochure-text h2 { font-size: 22px; }

  /* Mentors */
  .mentors-list { gap: 24px; }
  .mentor-item { 
    grid-template-columns: 1fr !important;
    gap: 0;
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
  }
  .mentor-item:nth-child(even) .mentor-item-img { order: 0; }
  .mentor-item:nth-child(even) .mentor-item-content { order: 0; }
  .mentor-item-img { 
    height: 750px;
    border-radius: 0;
  }
  .mentor-item-content {
    padding: 20px 18px 24px;
    text-align: center;
  }
  .mentor-item-header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .mentor-item-role {
    background: rgba(217, 164, 65, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
  }
  .mentor-item-meta {
    justify-content: center;
  }
  .mentor-item-exp {
    background: rgba(217, 164, 65, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(217, 164, 65, 0.2);
  }
  .mentor-item-name { font-size: 18px; }
  .mentors-title { font-size: 28px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-title { font-size: 26px; }

  /* Why */
  .why-ha-title { font-size: 28px; }
  .why-ha-grid { grid-template-columns: 1fr 1fr; }
  .orbit-wrap { height: 240px; }
  .orbit-1 { width: 160px; height: 160px; }
  .orbit-2 { width: 240px; height: 240px; }
  .orbit-3 { display: none; }
  .orbit-msg { display: none; }

  /* Testimonials */
  .testi-header h2 { font-size: 28px; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 24px; padding: 32px 16px 24px; }
  .footer-logo-img { height: 80px; margin-bottom: 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px 16px; }

  /* Video wall */
  .vw-grid { overflow-x: auto; padding: 0 12px 12px; min-height: auto; -webkit-overflow-scrolling: touch; }
  .vw-col { min-width: 160px; }
  .vw-col--offset { margin-top: 0; }
  .vw-item { height: 150px; }
  .vw-item--tall, .vw-item--center { height: 190px; }
  .vw-item--sm { height: 120px; }

  /* Float social */
  .float-social { right: 10px; bottom: 50px; }
  .float-yt, .float-wa { width: 38px; height: 38px; font-size: 15px; }

  /* Courses */
  .courses-section { padding: 50px 16px; }
  .courses-title { font-size: 28px; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gm-card { grid-template-columns: 1fr; }
  .gm-card-img { height: 220px; }
  .gm-card-content { padding: 20px 16px; }
  .gm-title { font-size: 20px; }
  .gm-card-actions { flex-direction: column; }
  .gm-btn-primary, .gm-btn-outline { text-align: center; }
}

/* ══════════════════════════════════════════
   SMALL MOBILE (≤480px)
   ══════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero { padding: 90px 14px 40px; }
  .hero-h1 { font-size: 30px; }
  .hero-para { font-size: 14px; }
  .hero-stat-num { font-size: 18px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons a { text-align: center; }
  .hero-img-frame { max-width: 280px; height: 240px; }

  .struggle-title { font-size: 22px; }
  .testi-header h2 { font-size: 22px; }
  .t-card { width: 260px; }
  .apart-title { font-size: 20px; }
  .program-title { font-size: 20px; }
  .brochure-text h2 { font-size: 18px; }
  .mentors-title { font-size: 22px; }
  .pricing-title { font-size: 20px; }
  .why-ha-title { font-size: 22px; }
  .why-ha-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-policies { flex-direction: column; gap: 6px; }
  .footer-socials { gap: 8px; }
  .float-yt, .float-wa { width: 34px; height: 34px; font-size: 13px; }

  .navbar-island { padding: 4px 10px; }
  .nav-logo-img { height: 26px; }
}

/* ══════════════════════════════════════════
   EXTRA SMALL (≤360px)
   ══════════════════════════════════════════ */
@media (max-width: 360px) {
  .hero-h1 { font-size: 26px; }
  .hero-stat-num { font-size: 16px; }
  .courses-grid { grid-template-columns: 1fr; }
  .why-ha-grid { grid-template-columns: 1fr; }
  .hero-img-frame { max-width: 240px; height: 200px; }
  .chart-bar { border-radius: 4px 4px 0 0; }
}

/* ══════════════════════════════════════════
   FIX: BAR CHART VISIBLE ON MOBILE
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-image-wrap {
    display: flex !important;
    justify-content: center;
    padding-left: 0;
    width: 100%;
  }
  .hero-img-frame {
    width: 100%;
    max-width: 360px;
    height: 280px;
  }
  .hero-chart {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    padding: 16px 16px 28px;
  }
  .chart-bars { height: 50%; gap: 7px; }
  .chart-label-up { font-size: 12px; padding: 4px 10px; top: 12px; right: 12px; }
  .hero-float-card { left: 0; bottom: -8px; padding: 10px 14px; }
  .hero-float-card2 { right: 0; top: 8px; padding: 10px 14px; }
  .hero-card-num { font-size: 14px; }
  .hero-card-label { font-size: 10px; }
  .ring1 { width: 300px; height: 300px; }
  .ring2 { width: 220px; height: 220px; }
}

@media (max-width: 480px) {
  .hero-img-frame {
    max-width: 300px;
    height: 240px;
  }
  .chart-bars { gap: 5px; }
}

@media (max-width: 360px) {
  .hero-img-frame {
    max-width: 260px;
    height: 200px;
  }
}

/* ══════════════════════════════════════════
   FIX: MENTOR IMAGES NOT CUT OFF
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .mentor-item-img {
    height: 320px !important;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
  }
  .mentor-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
}

@media (max-width: 480px) {
  .mentor-item-img {
    height: 280px !important;
  }
}

/* ══════════════════════════════════════════
   FIX: HAMBURGER — ALWAYS 3 LINES
   ══════════════════════════════════════════ */
.nav-hamburger span:nth-child(1),
.nav-hamburger span:nth-child(2),
.nav-hamburger span:nth-child(3) {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════
   FIX: HERO CONTENT ALWAYS VISIBLE ON MOBILE
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Force hero content visible — override data-animate opacity:0 */
  .hero-content [data-animate],
  .hero-content .hero-badge,
  .hero-content .hero-h1,
  .hero-content .hero-line1,
  .hero-content .hero-line2,
  .hero-content .hero-para,
  .hero-content .hero-stats,
  .hero-content .hero-buttons,
  .hero-content .media-logos-wrapper,
  .hero-badge,
  .hero-h1,
  .hero-line1,
  .hero-line2,
  .hero-para,
  .hero-stats,
  .hero-buttons {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    -webkit-text-fill-color: unset;
  }
  /* Keep gradient text working */
  .hero-highlight {
    -webkit-text-fill-color: transparent !important;
  }
  .hero-inner {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 28px;
  }
  .hero-content {
    padding-right: 0;
    position: relative;
    z-index: 2;
  }
  .hero-badge {
    display: inline-flex !important;
    margin: 0 auto 20px !important;
  }
  .hero-h1 {
    font-size: 34px !important;
    letter-spacing: -1px !important;
    color: #fff !important;
  }
  .hero-line1, .hero-line2 {
    color: #fff !important;
    display: block !important;
  }
  .hero-para {
    color: #8a9bb0 !important;
    font-size: 15px !important;
  }
  .hero-stats {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
  }
  .hero-stat-num { color: #d9a441 !important; }
  .hero-buttons {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
  .media-logos-wrapper {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ══════════════════════════════════════════
   FIX: HERO SECTION FULLY VISIBLE ON MOBILE
   Force override ALL animation/opacity hiding
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero * {
    opacity: 1 !important;
    transform: none !important;
    animation-fill-mode: forwards !important;
    -webkit-animation-fill-mode: forwards !important;
  }
  .hero-line1,
  .hero-line2 {
    animation: none !important;
    opacity: 1 !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    display: block !important;
  }
  .hero-highlight {
    -webkit-text-fill-color: transparent !important;
    background: linear-gradient(90deg, #d9a441, #ffe8a3, #ffffff, #d9a441) !important;
    background-size: 300% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
  }
  .hero-badge,
  .hero-h1,
  .hero-para,
  .hero-stats,
  .hero-buttons,
  .media-logos-wrapper {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .media-logos {
    animation: logoScroll 14s linear infinite !important;
    display: flex !important;
    width: max-content !important;
  }
  /* Override [data-animate] opacity:0 inside hero */
  .hero [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ══════════════════════════════════════════
   NUCLEAR FIX: HERO ALWAYS VISIBLE MOBILE
   Disable all hero entry animations on mobile
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-badge,
  .hero-line1,
  .hero-line2,
  .hero-para,
  .hero-stats,
  .hero-buttons,
  .media-logos-wrapper,
  .hero-stat,
  .hero-stat-num,
  .hero-stat-label,
  .hero-stat-divider,
  .hero-h1 {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }
  .media-logos {
    animation: logoScroll 14s linear infinite !important;
    display: flex !important;
    width: max-content !important;
  }
  .hero-line1,
  .hero-line2 {
    color: #fff !important;
  }
  .hero [data-animate],
  .hero [data-animate].is-visible,
  .hero [data-animate]:not(.is-visible) {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    visibility: visible !important;
  }

  /* Mobile logo switching */
  .nav-logo-desktop {
    display: none !important;
  }
  
  .nav-logo-mobile {
    display: block !important;
    height: 32px !important;
    width: auto !important;
  }
}
