/* ============================================================
   JOYELY® — Global Stylesheet
   Fonts: Playfair Display (brand) + DM Sans (UI) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=Playfair+Display:wght@700;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ========================
   CSS VARIABLES
======================== */
:root {
  --gold: #EFC100;
  --gold-light: #F5D34D;
  --gold-dim: rgba(239, 193, 0, 0.12);
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --mid: #374151;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --bg-light: #f5f5f7;
  --white: #ffffff;
  --radius-card: 28px;
  --radius-sm: 14px;
  --nav-h: 72px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: var(--dark-3);
  background: var(--white);
  overflow-x: hidden;
  padding-top: var(--nav-h);
}

/* ========================
   ANIMATIONS
======================== */
@keyframes shimmer {
  to { left: 100%; }
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50%       { transform: rotate(45deg) translateY(6px); opacity: 0.4; }
}
@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 193, 0, 0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(239, 193, 0, 0); }
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ========================
   SCROLL REVEALS
======================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ========================
   CONTAINERS
======================== */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px;  margin: 0 auto; padding: 0 24px; }
.container-wide   { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ========================
   NAV
======================== */
.jy-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s var(--ease), background 0.3s;
}
.jy-nav.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.97);
}

/* Brand */
.jy-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  height: 72px;
}
.jy-brand-wordmark {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--dark);
  line-height: 1;
}
.jy-brand-wordmark em {
  font-style: normal;
  color: var(--gold);
}
.jy-brand-wordmark sup {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 12px;
}
.jy-brand-pill {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 2px 7px;
  border-radius: 100px;
  line-height: 1.6;
}

/* Desktop Menu */
.jy-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;

  flex: 1;                 
  justify-content: center; 
}
.jy-menu > li { position: relative; }
.jy-menu > li > a,
.jy-menu > li > button {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  color: #374151;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 11px;
  border-radius: 10px;
  letter-spacing: 0.01em;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.jy-menu > li > a:hover,
.jy-menu > li > button:hover,
.jy-menu > li.open > button {
  color: var(--dark);
  background: rgba(0, 0, 0, 0.04);
}
.jy-chevron {
  width: 13px; height: 13px;
  transition: transform 0.25s var(--ease);
  opacity: 0.4;
  flex-shrink: 0;
}
.jy-menu > li.open .jy-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown */
.jy-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  z-index: 100;
}
.jy-menu > li.open .jy-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.jy-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  color: #374151;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.jy-dropdown a:hover {
  background: var(--gold-dim);
  color: var(--dark);
}
.jy-dropdown-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8920a;
  flex-shrink: 0;
}
.jy-dropdown a:hover .jy-dropdown-icon {
  background: rgba(239, 193, 0, 0.22);
}
.jy-dropdown-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 6px 4px;
}

/* Hover dropdown */

.jy-menu > li:hover > .jy-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.jy-menu > li:hover .jy-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.jy-menu > li {
  padding-bottom: 12px;
}

/* Nav Right */
.jy-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.jy-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, color 0.25s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.jy-nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
  transform: scale(1.04);
}

/* Hamburger */
.jy-hamburger {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.jy-hamburger:hover { background: rgba(0, 0, 0, 0.05); }
.jy-hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.jy-hamburger-lines span {
  width: 20px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  display: block;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.jy-hamburger.open .jy-hamburger-lines span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.jy-hamburger.open .jy-hamburger-lines span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.jy-hamburger.open .jy-hamburger-lines span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.jy-mobile-nav {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 1999;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  overflow-y: auto;
  max-height: calc(100vh - var(--nav-h));
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
  padding: 16px 20px 32px;
}
.jy-mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.jy-mobile-section { margin-bottom: 4px; }
.jy-mobile-section-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 13px 4px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  cursor: pointer;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.jy-mobile-section-toggle svg {
  transition: transform 0.25s;
  opacity: 0.4;
}
.jy-mobile-section.open .jy-mobile-section-toggle svg {
  transform: rotate(180deg);
  opacity: 1;
}
.jy-mobile-sub {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0 4px;
}
.jy-mobile-section.open .jy-mobile-sub { display: flex; }
.jy-mobile-sub a {
  display: block;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  color: #374151;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.jy-mobile-sub a:hover {
  background: var(--gold-dim);
  color: var(--dark);
}
.jy-mobile-cta {
  margin-top: 16px;
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--dark);
  font-weight: 800;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  padding: 16px;
  border-radius: 14px;
  text-decoration: none;
  letter-spacing: 0.01em;
}

/* ========================
   BUTTONS
======================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition),
              box-shadow var(--transition), color var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 100px;
}
.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  color: var(--dark);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--dark);
  font-size: 18px;
  font-weight: 800;
  padding: 20px 52px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: transform var(--transition), box-shadow var(--transition), background 0.3s;
  animation: pulseGold 2.5s ease-in-out infinite;
}
.btn-gold:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(239, 193, 0, 0.35);
  background: var(--gold-light);
  animation: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  padding: 18px 32px;
  border-radius: 100px;
  border: 1.5px solid #d1d5db;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.btn-secondary:hover {
  border-color: var(--dark);
  background: var(--bg-light);
  transform: scale(1.02);
}

.btn-gold-page {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-size: 16px;
  font-weight: 800;
  padding: 16px 40px;
  border-radius: 100px;
  text-decoration: none;
  margin-top: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-gold-page:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 36px rgba(239, 193, 0, 0.3);
}

/* ========================
   METRICS BAR
======================== */
.metrics-bar {
  background: var(--bg-light);
  padding: 0 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}
.metrics-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}
.metrics-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}
.metric-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 52px 32px;
  gap: 6px;
}
.metric-divider {
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 32px 0;
  flex-shrink: 0;
}
.metric-icon {
  color: rgba(180, 145, 0, 0.5);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.metric-value-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}
.metric-number {
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--dark);
  line-height: 1;
}
.metric-suffix {
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
  opacity: 0.45;
  line-height: 1;
}
.metric-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.4;
  margin-top: 4px;
}

/* ========================
   EYEBROW LABEL
======================== */
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

/* ========================
   HERO
======================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 140px 24px 100px;
  background: var(--white);
}
.hero-bg-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-bg-orb-1 {
  width: 700px; height: 700px;
  top: -250px; right: -200px;
  background: radial-gradient(circle, rgba(239, 193, 0, 0.07) 0%, transparent 70%);
}
.hero-bg-orb-2 {
  width: 500px; height: 500px;
  bottom: -150px; left: -150px;
  background: radial-gradient(circle, rgba(10, 10, 10, 0.04) 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 28px;
  padding: 7px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 100px;
  background: var(--bg-light);
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(239, 193, 0, 0.25);
  animation: heroFloat 3s ease-in-out infinite;
}
.hero-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.04em;
}
.hero-line-1 {
  font-size: clamp(28px, 5.2vw, 50px);
  white-space: nowrap;
  line-height: 1.05;
  display: block;
}
.hero-line-2 {
  font-size: clamp(52px, 11vw, 100px);
  line-height: 0.92;
  display: block;
  letter-spacing: -0.05em;
}
.hero-headline .gold-text { color: var(--gold); }
.hero-subhead {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 48px;
}
.hero-subhead strong { color: var(--dark); font-weight: 700; }
.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-trust-note {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hero-trust-note::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}
.hero-scroll-hint {
  margin-top: 64px;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid #d1d5db;
  border-bottom: 2px solid #d1d5db;
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ========================
   WHAT SECTION
======================== */
.what-section {
  padding: 120px 24px;
  background: var(--white);
  text-align: center;
}
.what-section h2 {
  font-size: clamp(32px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--dark);
  max-width: 900px;
  margin: 0 auto 24px;
}
.what-section .lead {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 72px;
  line-height: 1.7;
}
.what-section .lead strong { color: var(--dark); font-weight: 700; }

/* ========================
   LEARN GRID
======================== */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.learn-card {
  padding: 40px 36px;
  border: 1.5px solid #e5e7eb;
  border-radius: 20px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.learn-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(239, 193, 0, 0.10);
}
.learn-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.learn-card:hover::before { transform: scaleX(1); }
.learn-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(239, 193, 0, 0.10);
  border: 1.5px solid rgba(239, 193, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.learn-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.learn-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ========================
   STATEMENT SECTION
======================== */
.statement-section {
  background: var(--dark);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.statement-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(239, 193, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.statement-section .eyebrow { color: var(--gold); }
.statement-section h2 {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.statement-section .statement-body {
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255, 255, 255, 0.55);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ========================
   STEPS SECTION
======================== */
.steps-section {
  padding: 100px 24px;
  background: var(--bg-light);
}
.steps-header {
  text-align: center;
  margin-bottom: 64px;
}
.steps-header h2 {
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.1;
}
.steps-header p {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.step-card {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.08);
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}
.step-number {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-number::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(239, 193, 0, 0.2);
}
.step-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.step-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.step-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(239, 193, 0, 0.10);
  border: 1.5px solid rgba(239, 193, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
}

/* ========================
   CTA SECTION
======================== */
.cta-section {
  padding: 120px 24px;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  top: -250px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(239, 193, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .eyebrow {
  position: relative;
  z-index: 1;
  display: block;
}
.cta-section h2 {
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-section p {
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255, 255, 255, 0.55);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.cta-sub {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

/* ========================
   FAQ SECTION
======================== */
.faq-section {
  padding: 120px 24px;
  background: var(--white);
}
.faq-header {
  text-align: center;
  margin-bottom: 72px;
}
.faq-header h2 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dark);
  line-height: 1.1;
}
.faq-group-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 64px 0 24px;
}
.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 24px 0;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
}
.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 3000px;
  margin-top: 16px;
}
.faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

/* ========================
   INNER PAGE HERO
======================== */
.page-hero {
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  top: -200px; left: 50%;
  width: 600px; height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(239, 193, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.page-hero p {
  font-size: clamp(17px, 2vw, 22px);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* Inner page content */
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 100px;
}
.content-card {
  background: #f9f9f9;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 48px;
  margin-bottom: 24px;
}
.content-card h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.content-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 12px;
}
.content-card a { color: var(--gold); font-weight: 600; }

/* ========================
   FOOTER
======================== */
.jy-footer {
  background: #050505;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'DM Sans', sans-serif;
  position: relative;
  overflow: hidden;
}
.jy-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}
.jy-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 64px;
}
.jy-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.jy-footer-wordmark {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--white);
}
.jy-footer-wordmark em { font-style: normal; color: var(--gold); }
.jy-footer-wordmark sup { font-family: sans-serif; font-weight: 400; font-size: 14px; }
.jy-footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.38);
  max-width: 280px;
}
.jy-footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.jy-social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.22s;
}
.jy-social-btn:hover {
  background: var(--gold-dim);
  border-color: rgba(239, 193, 0, 0.25);
  color: var(--gold);
  transform: translateY(-2px);
}
.jy-footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}
.jy-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.jy-footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.jy-footer-col ul li a:hover { color: var(--gold); }
.jy-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.jy-footer-copy { font-size: 12px; color: rgba(255, 255, 255, 0.18); }
.jy-footer-legal { display: flex; gap: 20px; }
.jy-footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
  text-decoration: none;
  transition: color 0.2s;
}
.jy-footer-legal a:hover { color: var(--gold); }

/* ========================
   RESPONSIVE — TABLET (≤1100px)
======================== */
@media (max-width: 1100px) {
  .jy-nav { padding: 0 24px; }
  .jy-menu > li > a,
  .jy-menu > li > button { font-size: 12px; padding: 7px 8px; }
}

/* ========================
   RESPONSIVE — TABLET (≤900px)
======================== */
@media (max-width: 900px) {
  .hero { padding: 120px 20px 80px; }
  .metrics-bar-inner { flex-wrap: wrap; }
  .metric-item { flex: 0 0 50%; min-width: 50%; padding: 40px 20px; }
  .metric-divider { display: none; }
  .metric-item:nth-child(1),
  .metric-item:nth-child(2) { border-bottom: 1px solid rgba(0,0,0,0.07); }
  .metric-item:nth-child(1),
  .metric-item:nth-child(3) { border-right: 1px solid rgba(0,0,0,0.07); }
  .learn-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; max-width: 560px; }
}

/* ========================
   RESPONSIVE — MOBILE (≤860px)
======================== */
@media (max-width: 860px) {
  .jy-menu { display: none; }
  .jy-nav-cta { display: none; }
  .jy-hamburger { display: flex; }
  .jy-footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 24px 48px; }
}

/* ========================
   RESPONSIVE — MOBILE (≤640px)
======================== */
@media (max-width: 640px) {
  .hero { padding: 100px 16px 64px; min-height: auto; }
  .hero-line-1 { font-size: clamp(18px, 5.5vw, 32px); white-space: normal; text-align: center; }
  .hero-line-2 { font-size: clamp(48px, 18vw, 80px); }
  .hero-subhead { font-size: 16px; margin-bottom: 36px; }
  .hero-cta-row { flex-direction: column; gap: 12px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; font-size: 16px; padding: 16px 24px; }
  .btn-gold { font-size: 16px; padding: 17px 32px; width: 100%; justify-content: center; }
  .metric-item { flex: 0 0 50%; padding: 32px 12px; gap: 4px; }
  .metric-number { font-size: clamp(36px, 10vw, 52px); }
  .metric-suffix { font-size: clamp(16px, 4vw, 22px); }
  .metric-label { font-size: 11px; }
  .what-section { padding: 64px 16px; }
  .what-section .lead { margin-bottom: 48px; }
  .learn-grid { grid-template-columns: 1fr; gap: 12px; }
  .learn-card { padding: 32px 24px; }
  .statement-section { padding: 64px 16px; }
  .steps-section { padding: 56px 16px; }
  .step-card { padding: 36px 24px; }
  .cta-section { padding: 64px 16px; }
  .faq-section { padding: 80px 16px; }
  .faq-question { font-size: 16px; }
  .page-hero { padding: 120px 16px 60px; }
  .content-card { padding: 32px 24px; }
}

/* ========================
   RESPONSIVE — SMALL (≤580px)
======================== */
@media (max-width: 580px) {
  .jy-nav { padding: 0 16px; }
  .jy-footer-top { grid-template-columns: 1fr; gap: 32px; padding: 48px 20px 40px; }
  .jy-footer-bottom { padding: 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
}


.jy-nav img.jy-logo {
  height: 22px;
  max-height: 22px;
  width: auto ;
  display: block;
}
