/* ============================================================
   JOYELY® — Main Stylesheet
   File: styling/styles.css
   Linked from: index.html
   ============================================================ */

/* ===================== RESET & TOKENS ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #EFC100;
  --gold-dark:   #C9A400;
  --gold-light:  rgba(239,193,0,0.12);
  --dark:        #111111;
  --text:        #1a1a1a;
  --text-mid:    #555;
  --text-light:  #888;
  --white:       #ffffff;
  --grey-bg:     #f7f7f5;
  --grey-light:  #efefed;
  --border:      #e8e8e4;
  --nav-h:       72px;
  --radius:      12px;
  --font:        'Inter', system-ui, sans-serif;
  --ease:        cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a  { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===================== NAV ===================== */
.jy-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s var(--ease);
}
.jy-nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.07); }

.jy-brand { display: flex; align-items: center; }
.jy-logo  { height: 36px; width: auto; }

.jy-menu { display: flex; align-items: center; gap: 2px; list-style: none; }
.jy-menu-btn {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px;
  font-size: 13.5px; font-weight: 600; letter-spacing: .02em;
  color: var(--dark); border-radius: 8px;
  transition: background .2s;
}
.jy-menu-btn:hover { background: var(--grey-light); }
.jy-chevron { width: 13px; height: 13px; transition: transform .2s var(--ease); flex-shrink: 0; }
.jy-menu li { position: relative; }
.jy-menu li:hover .jy-chevron { transform: rotate(180deg); }
.jy-menu li:hover > .jy-dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }

/* dropdown — invisible top padding bridges the gap so mouse stays in hover zone */
.jy-dropdown {
  position: absolute; top: 100%; left: 50%;
  padding-top: 10px;
  transform: translateX(-50%) translateY(-8px);
  min-width: 210px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.jy-dropdown-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,.10);
  padding: 6px;
}

.jy-dropdown-item { position: relative; }
.jy-dropdown-item:hover > .jy-sub-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.jy-dropdown-item:hover > .jy-dd-row { background: var(--grey-light); }

/* sub-dropdown — left padding bridges the gap */
.jy-sub-dropdown {
  position: absolute; top: 0; left: 100%;
  padding-left: 8px;
  min-width: 210px;
  opacity: 0; pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.jy-sub-dropdown-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,.10);
  padding: 6px;
}

.jy-dropdown-inner a,
.jy-dd-row,
.jy-sub-dropdown-inner a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 11px;
  font-size: 13.5px; font-weight: 500;
  color: var(--text); border-radius: 8px;
  transition: background .15s; width: 100%;
}
.jy-dropdown-inner a:hover,
.jy-dd-row:hover,
.jy-sub-dropdown-inner a:hover { background: var(--grey-light); }

.jy-dropdown-icon {
  width: 24px; height: 24px; border-radius: 6px;
  background: var(--grey-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #efc100;
}
.jy-dropdown-inner .jy-dropdown-divider { height: 1px; background: var(--border); margin: 5px 0; }

.jy-nav-right { display: flex; align-items: center; gap: 12px; }
.jy-nav-cta {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 20px;
  background: var(--gold); color: var(--dark);
  font-size: 13px; font-weight: 700;
  border-radius: 50px;
  transition: background .2s, transform .2s; white-space: nowrap;
}
.jy-nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }

.jy-hamburger {
  display: none; width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 8px; background: var(--grey-light);
}
.jy-hamburger-lines { display: flex; flex-direction: column; gap: 5px; }
.jy-hamburger-lines span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: .2s; }

/* ===================== MOBILE DRAWER ===================== */
.jy-mobile-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white); overflow-y: auto; z-index: 999;
  padding: 16px 20px 48px;
  transform: translateX(100%); transition: transform .3s var(--ease);
}
.jy-mobile-nav.open { transform: translateX(0); }
.jy-mobile-section { border-bottom: 1px solid var(--border); }
.jy-mobile-section-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 16px 0;
  font-size: 14px; font-weight: 700; letter-spacing: .04em; color: var(--dark); text-transform: uppercase;
}
.jy-mobile-sub { display: none; padding: 0 0 12px; }
.jy-mobile-sub a { display: block; padding: 9px 12px; font-size: 14px; font-weight: 500; color: var(--text); border-radius: 8px; }
.jy-mobile-sub a:hover { background: var(--grey-light); }
.jy-mobile-sub-label { padding: 10px 12px 4px; font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--text-light); text-transform: uppercase; }
.jy-mobile-sub-sub a { padding-left: 24px; font-size: 13px; color: var(--text-mid); }
.jy-mobile-cta { display: block; margin-top: 24px; padding: 15px; background: var(--gold); color: var(--dark); font-size: 15px; font-weight: 700; text-align: center; border-radius: 12px; }

/* ===================== BANNER ===================== */


/* ===================== CAMPUS HERO ===================== */
.campus-hero { width: 100%; background: var(--dark); }

.campus-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.campus-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 8s ease;
}
.campus-wrap:hover .campus-img { transform: scale(1.015); }

.campus-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 50%,
    rgba(0,0,0,0.25) 100%
  );
  pointer-events: none;
}

/* building hotspots */
.campus-spot {
  position: absolute;
  cursor: pointer;
  border-radius: 8px;
  background: transparent;
  border: 2px solid transparent;
  transition: background .25s, border-color .25s;
  text-decoration: none;
}

.spot-ring {
  position: absolute; top: 50%; left: 50%;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(239,193,0,.85);
  transform: translate(-50%,-50%) scale(0.6);
  opacity: 0;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 0 0 0 rgba(239,193,0,.6);
}
.campus-spot:hover .spot-ring {
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
  animation: pulse-ring 1.6s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(239,193,0,.6); }
  70%  { box-shadow: 0 0 0 14px rgba(239,193,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,193,0,0); }
}

.campus-spot:hover {
  background: rgba(239,193,0,.10);
  border-color: rgba(239,193,0,.45);
}

.spot-tooltip {
  position: absolute;
  bottom: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 190px; max-width: 230px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  padding: 12px 14px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 10;
  text-align: left;
}
.spot-tooltip strong {
  display: block;
  font-size: 13px; font-weight: 700; color: var(--dark);
  margin-bottom: 4px;
}
.spot-tooltip span {
  display: block;
  font-size: 11.5px; color: var(--text-mid);
  margin-bottom: 6px;
}
.spot-tooltip em {
  display: inline-flex; align-items: center; gap: 5px;
  font-style: normal;
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #C9A400;
  background: rgba(239,193,0,.12);
  border: 1px solid rgba(239,193,0,.35);
  border-radius: 50px;
  padding: 3px 9px;
  margin-top: 2px;
}
.spot-tooltip em::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: #efc100;
  flex-shrink: 0;
}
.spot-tooltip::after {
  content: '';
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--white);
}

.campus-spot:hover .spot-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* keep tooltips on screen for left/right edge spots */
.campus-spot[style*="left:7%"] .spot-tooltip,
.campus-spot[style*="left:12%"] .spot-tooltip { left: 20%; }
.campus-spot[style*="left:74%"] .spot-tooltip,
.campus-spot[style*="left:68%"] .spot-tooltip,
.campus-spot[style*="left:64%"] .spot-tooltip { left: 30%; transform: translateX(-80%) translateY(6px); }
.campus-spot[style*="left:74%"]:hover .spot-tooltip,
.campus-spot[style*="left:68%"]:hover .spot-tooltip,
.campus-spot[style*="left:64%"]:hover .spot-tooltip { transform: translateX(-80%) translateY(0); }

/* ===================== HERO BELOW CAMPUS ===================== */
.hero-below {
  background: var(--grey-bg);
  position: relative; overflow: hidden;
  padding: 80px 40px 100px;
}
.hero-bg-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); }
.hero-bg-orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(239,193,0,.13) 0%, transparent 70%); top: -160px; right: -100px; }
.hero-bg-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(239,193,0,.08) 0%, transparent 70%); bottom: -80px; left: -80px; }

.hero-inner,
.hero-below .hero-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 420px; gap: 72px; align-items: center;
}

/* ===================== SHARED UTILITIES ===================== */
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #efc100; margin-bottom: 18px;
}
.gold-text { color: #efc100; }
.hero-line-2 { display: block; }

.hero-headline {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900; line-height: 1.0; letter-spacing: -.03em;
  color: var(--dark); margin-bottom: 22px;
}
.hero-subhead { font-size: 17px; font-weight: 400; color: var(--text-mid); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-cta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-trust-note { font-size: 12.5px; color: var(--text-light); font-weight: 500; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; background: var(--gold); color: var(--dark);
  font-size: 15px; font-weight: 700; border-radius: 50px;
  transition: background .2s, transform .2s;
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; border: 1.5px solid var(--border);
  color: var(--dark); font-size: 14px; font-weight: 600; border-radius: 50px;
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-dark); }

/* ===================== HERO CARD ===================== */
.hero-card { background: var(--white); border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,.10); border: 1px solid var(--border); overflow: hidden; }
.hero-card-header { background: var(--gold); padding: 28px 28px 24px; position: relative; overflow: hidden; }
.hero-card-header::after { content: ''; position: absolute; bottom: -40px; right: -40px; width: 140px; height: 140px; border-radius: 50%; background: rgba(255,255,255,.15); }
.hero-card-label { font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(0,0,0,.5); margin-bottom: 8px; }
.hero-card-title { font-size: 22px; font-weight: 800; color: var(--dark); line-height: 1.25; }
.hero-card-body { padding: 24px 28px 28px; }
.hero-card-desc { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; margin-bottom: 20px; }

.hero-price-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.price-free { font-size: 40px; font-weight: 900; color: var(--dark); letter-spacing: -.03em; line-height: 1; }
.price-was { display: flex; flex-direction: column; gap: 2px; }
.price-was-label  { font-size: 10.5px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.price-was-amount { font-size: 18px; font-weight: 700; color: var(--text-light); text-decoration: line-through; }

.code-box {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--grey-bg); border: 1.5px dashed var(--border);
  border-radius: 10px; padding: 11px 15px; margin-bottom: 18px; cursor: pointer;
}
.code-box:hover { border-color: var(--gold); }
.code-label { font-size: 10px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 2px; }
.code-value { font-size: 16px; font-weight: 800; color: var(--dark); letter-spacing: .06em; }

.hero-card-cta { display: block; width: 100%; padding: 14px; background: var(--gold); color: var(--dark); font-size: 14px; font-weight: 700; text-align: center; border-radius: 10px; transition: background .2s, transform .2s; }
.hero-card-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }
.card-note { margin-top: 11px; font-size: 11.5px; color: var(--text-light); text-align: center; }

/* ===================== METRICS BAR ===================== */
.metrics-bar { background: var(--grey-bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 44px 40px; }
.metrics-bar-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.metric-item { flex: 1; min-width: 160px; text-align: center; padding: 16px 28px; }
.metric-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--gold-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--gold-dark); }
.metric-value-row { display: flex; align-items: baseline; justify-content: center; gap: 1px; }
.metric-number { font-size: 44px; font-weight: 900; color: var(--dark); line-height: 1; }
.metric-suffix { font-size: 22px; font-weight: 700; color: var(--dark); }
.metric-label  { font-size: 12px; font-weight: 500; color: var(--text-light); margin-top: 6px; letter-spacing: .02em; }
.metric-divider { width: 1px; height: 60px; background: var(--border); }

/* ===================== WHAT SECTION ===================== */
.what-section { padding: 100px 40px; background: var(--white); }
.container-narrow { max-width: 720px; margin: 0 auto; text-align: center; }
.container-narrow h2 { font-size: clamp(28px,3.5vw,44px); font-weight: 800; color: var(--dark); letter-spacing: -.03em; line-height: 1.15; margin-bottom: 18px; }
.lead { font-size: 17px; color: var(--text-mid); line-height: 1.7; }

/* ===================== PILLARS ===================== */
.univ-section { padding: 0 40px 100px; background: var(--white); }
.univ-inner   { max-width: 1060px; margin: 0 auto; }
.univ-header  { text-align: center; margin-bottom: 52px; }
.univ-header h2 { font-size: clamp(28px,3.8vw,48px); font-weight: 800; color: var(--dark); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 14px; }
.univ-header p { font-size: 16px; color: var(--text-mid); line-height: 1.65; max-width: 520px; margin: 0 auto; }

.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.pillar-card { border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden; transition: box-shadow .25s, transform .25s; }
.pillar-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.09); transform: translateY(-4px); }
.pillar-top { padding: 30px 26px 24px; background: var(--grey-bg); }
.pillar-badge { display: inline-block; padding: 4px 12px; background: var(--gold-light); color: #efc100; border: 1px solid rgba(239,193,0,.3); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border-radius: 50px; margin-bottom: 14px; }
.pillar-title { font-size: 24px; font-weight: 800; color: var(--dark); letter-spacing: -.02em; }
.pillar-bottom { padding: 20px 26px 26px; background: var(--white); }
.pillar-desc   { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ===================== JOURNEY ===================== */
.journey-section { padding: 100px 40px; background: var(--grey-bg); }
.journey-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 400px; gap: 72px; align-items: center; }
.journey-text .eyebrow { display: block; margin-bottom: 14px; }
.journey-title { font-size: clamp(28px,3.5vw,44px); font-weight: 800; color: var(--dark); letter-spacing: -.03em; line-height: 1.15; margin-bottom: 18px; }
.journey-desc  { font-size: 16px; color: var(--text-mid); line-height: 1.7; margin-bottom: 28px; }

.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; }
.check-icon { width: 22px; height: 22px; border-radius: 6px; background: var(--gold); color: var(--dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.check-item span { font-size: 14.5px; color: var(--text-mid); line-height: 1.55; }

.journey-card { background: var(--white); border-radius: 16px; border: 1px solid var(--border); box-shadow: 0 8px 32px rgba(0,0,0,.08); overflow: hidden; }
.journey-card-top  { background: var(--gold); padding: 24px 26px; }
.journey-card-tag  { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(0,0,0,.5); margin-bottom: 6px; }
.journey-card-name { font-size: 20px; font-weight: 800; color: var(--dark); line-height: 1.2; }
.journey-card-body { padding: 22px 26px 26px; }
.journey-card-desc { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; margin-bottom: 18px; }

.j-price-row  { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.j-free-badge { padding: 6px 16px; background: var(--gold-light); color: #efc100; border: 1.5px solid #efc100; font-size: 13px; font-weight: 800; border-radius: 50px; }
.j-was        { font-size: 13px; color: var(--text-light); text-decoration: line-through; font-weight: 600; }

.journey-cta { display: block; width: 100%; padding: 13px; background: var(--gold); color: var(--dark); font-size: 14px; font-weight: 700; text-align: center; border-radius: 10px; transition: background .2s; }
.journey-cta:hover { background: var(--gold-dark); }
.journey-note { margin-top: 10px; font-size: 11px; color: var(--text-light); text-align: center; }

/* ===================== WHAT YOU'LL LEARN ===================== */
.learn-section { padding: 100px 40px; background: var(--white); }
.learn-inner   { max-width: 960px; margin: 0 auto; }
.learn-header  { text-align: center; margin-bottom: 52px; }
.learn-header h2 { font-size: clamp(28px,4vw,50px); font-weight: 800; color: var(--dark); letter-spacing: -.03em; line-height: 1.1; }
.learn-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.learn-card { padding: 30px; border: 1.5px solid var(--border); border-radius: 16px; background: var(--grey-bg); transition: box-shadow .25s, border-color .25s, transform .25s; }
.learn-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); border-color: var(--gold); transform: translateY(-3px); }
.learn-card-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--gold); display: flex; align-items: center; justify-content: center; color: var(--dark); margin-bottom: 16px; }
.learn-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 9px; letter-spacing: -.01em; }
.learn-card p  { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ===================== STEPS ===================== */
.steps-section { padding: 100px 40px; background: var(--grey-bg); }
.steps-header  { max-width: 600px; margin: 0 auto 56px; text-align: center; }
.steps-header h2 { font-size: clamp(28px,4vw,48px); font-weight: 800; color: var(--dark); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 14px; }
.steps-header p  { font-size: 16px; color: var(--text-mid); line-height: 1.65; }
.steps-grid { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.step-card { padding: 30px 26px; background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; transition: box-shadow .25s, transform .25s; }
.step-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,.08); transform: translateY(-3px); }
.step-number { font-size: 11px; font-weight: 800; letter-spacing: .12em; color: #efc100; text-transform: uppercase; margin-bottom: 14px; }
.step-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--gold-light); display: flex; align-items: center; justify-content: center; color: #efc100; margin-bottom: 14px; }
.step-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 9px; letter-spacing: -.01em; }
.step-card p  { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ===================== CTA SECTION ===================== */
.cta-section {
  padding: 100px 40px; background: var(--grey-bg);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(239,193,0,.10) 0%, transparent 65%); }
.cta-section .eyebrow { color: #efc100; position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(30px,4.5vw,58px); font-weight: 800; color: var(--dark); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-section > p { font-size: 17px; color: var(--text-mid); max-width: 500px; margin: 0 auto 36px; line-height: 1.65; position: relative; z-index: 1; }
.cta-section .btn-gold { position: relative; z-index: 1; }
.cta-sub { margin-top: 20px !important; font-size: 13px !important; color: var(--text-light) !important; position: relative; z-index: 1; }

/* ===================== FAQ ===================== */
.faq-section { padding: 100px 40px; background: var(--white); }
.faq-section .container-narrow { text-align: left; }
.faq-header { text-align: center; margin-bottom: 52px; }
.faq-header h2 { font-size: clamp(26px,3.5vw,42px); font-weight: 800; color: var(--dark); letter-spacing: -.03em; }
.faq-group-title { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #efc100; padding: 22px 0 8px; border-bottom: 1px solid rgba(239,193,0,.2); margin-bottom: 4px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 17px 0; font-size: 15px; font-weight: 600; color: var(--dark); text-align: left; gap: 16px; }
.faq-icon { width: 26px; height: 26px; border-radius: 8px; background: var(--grey-light); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; color: #efc100; transition: background .2s, transform .2s; }
.faq-item.open .faq-icon { background: var(--gold); color: var(--dark); transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 18px; }
.faq-answer p { font-size: 14.5px; color: var(--text-mid); line-height: 1.7; margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { color: var(--dark); }

/* ===================== FOOTER ===================== */
.jy-footer { background: #2a2a28; }
.jy-footer-top { max-width: 1200px; margin: 0 auto; padding: 72px 40px 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.jy-footer-logo-link { display: inline-block; margin-bottom: 14px; }
.jy-footer-logo { height: 40px; width: auto; }
.jy-footer-wordmark { font-size: 26px; font-weight: 900; color: var(--white); letter-spacing: -.02em; margin-bottom: 14px; }
.jy-footer-wordmark em  { font-style: normal; color: #efc100; }
.jy-footer-wordmark sup { font-size: 11px; vertical-align: super; }
.jy-footer-tagline { font-size: 13.5px; color: rgba(255,255,255,.4); line-height: 1.65; margin-bottom: 24px; }
.jy-footer-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.jy-social-btn { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45); transition: background .2s, color .2s; }
.jy-social-btn:hover { background: var(--gold); color: var(--dark); }
.jy-footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #efc100; margin-bottom: 16px; }
.jy-footer-col ul { list-style: none; }
.jy-footer-col ul li { margin-bottom: 10px; }
.jy-footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.45); transition: color .2s; }
.jy-footer-col ul li a:hover { color: var(--white); }
.jy-footer-bottom { max-width: 1200px; margin: 0 auto; padding: 22px 40px; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.jy-footer-copy  { font-size: 12px; color: rgba(255,255,255,.28); }
.jy-footer-legal { display: flex; gap: 20px; }
.jy-footer-legal a { font-size: 12px; color: rgba(255,255,255,.32); transition: color .2s; }
.jy-footer-legal a:hover { color: #efc100; }

/* ===================== REVEAL ANIMATIONS ===================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1040px) {
  .jy-menu { display: none; }
  .jy-hamburger { display: flex; }
  .jy-mobile-nav { display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .journey-inner { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid { grid-template-columns: 1fr; }
  .jy-footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .campus-wrap { aspect-ratio: 4/3; }
  .spot-tooltip { min-width: 150px; font-size: 11px; }
}
@media (max-width: 680px) {
  .jy-nav { padding: 0 20px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .learn-grid { grid-template-columns: 1fr; }
  .metrics-bar-inner { flex-direction: column; }
  .metric-divider { width: 60px; height: 1px; }
  .what-section, .univ-section, .learn-section, .journey-section,
  .steps-section, .cta-section, .faq-section { padding-left: 20px; padding-right: 20px; }
  .jy-footer-top { grid-template-columns: 1fr; padding: 48px 20px 32px; }
  .jy-footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .campus-wrap { aspect-ratio: 1/1; }
}
