/* c:/xampp/htdocs/ng/ngone/assets/css/homepage.css */
/* Minimal, High-Yield Professional Light Mode Design System for NG One */

:root {
  --hp-bg: #f8fafc;
  --hp-card-bg: #ffffff;
  --hp-surface-subtle: #f1f5f9;
  --hp-border: #e2e8f0;
  --hp-border-hover: #cbd5e1;
  --hp-text-main: #0f172a;
  --hp-text-body: #334155;
  --hp-text-muted: #64748b;
  --hp-text-subtle: #94a3b8;
  --hp-primary: #0284c7;
  --hp-primary-hover: #0369a1;
  --hp-primary-light: #f0f9ff;
  --hp-primary-border: #bae6fd;
  --hp-indigo: #4f46e5;
  --hp-indigo-light: #eef2ff;
  --hp-emerald: #059669;
  --hp-emerald-light: #ecfdf5;
  --hp-amber: #d97706;
  --hp-amber-light: #fffbeb;
  --hp-rose: #e11d48;
  --hp-radius-sm: 8px;
  --hp-radius-md: 12px;
  --hp-radius-lg: 16px;
  --hp-radius-xl: 20px;
  --hp-shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --hp-shadow-sm: 0 4px 12px -2px rgba(15, 23, 42, 0.05);
  --hp-shadow-md: 0 12px 24px -4px rgba(15, 23, 42, 0.06), 0 4px 8px -2px rgba(15, 23, 42, 0.02);
  --hp-shadow-hover: 0 18px 36px -6px rgba(2, 132, 199, 0.12), 0 6px 12px -2px rgba(15, 23, 42, 0.04);
}

/* Base resets & wrapper */
.ng-home-wrapper {
  background: #ffffff;
  color: var(--hp-text-body);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  width: 100%;
}

.ng-home-wrapper * {
  box-sizing: border-box;
}

/* Section Header Utility */
.ng-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem auto;
}

.ng-section-header.text-left {
  text-align: left;
  margin: 0 0 2.5rem 0;
  max-width: 100%;
}

.ng-kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: var(--hp-primary-light);
  border: 1px solid var(--hp-primary-border);
  border-radius: 9999px;
  color: var(--hp-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.ng-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--hp-text-main);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.ng-section-subtitle {
  font-size: 1rem;
  color: var(--hp-text-muted);
  line-height: 1.6;
}

/* ═══════════════ 1. MINIMAL HERO SECTION ═══════════════ */
.ng-hero-section {
  position: relative;
  background: 
    radial-gradient(ellipse 65% 55% at 50% -10%, rgba(2, 132, 199, 0.07) 0%, rgba(255, 255, 255, 0) 70%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 4.5rem 0 3.5rem;
  border-bottom: 1px solid var(--hp-border);
}

.ng-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.ng-hero-content {
  display: flex;
  flex-direction: column;
}

.ng-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: #ffffff;
  border: 1px solid var(--hp-border);
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--hp-text-main);
  width: fit-content;
  margin-bottom: 1.25rem;
  box-shadow: var(--hp-shadow-xs);
}

.ng-hero-badge .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.ng-hero-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.12;
  color: var(--hp-text-main);
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
}

.ng-hero-heading .highlight {
  color: var(--hp-primary);
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ng-hero-lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--hp-text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

.ng-hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.ng-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--hp-radius-md);
  border: 1px solid #0284c7;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
  transition: all 0.2s ease;
  cursor: pointer;
}

.ng-btn-primary:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
}

.ng-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: #ffffff;
  color: var(--hp-text-main) !important;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--hp-radius-md);
  border: 1px solid var(--hp-border);
  text-decoration: none;
  box-shadow: var(--hp-shadow-xs);
  transition: all 0.2s ease;
  cursor: pointer;
}

.ng-btn-secondary:hover {
  background: var(--hp-surface-subtle);
  border-color: var(--hp-border-hover);
  transform: translateY(-1px);
}

/* Hero Social Proof Strip */
.ng-hero-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--hp-border);
}

.ng-proof-avatars {
  display: flex;
  align-items: center;
}

.ng-proof-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #ffffff;
  margin-left: -8px;
}

.ng-proof-avatar:first-child {
  margin-left: 0;
}

.ng-proof-text {
  font-size: 0.85rem;
  color: var(--hp-text-muted);
}

.ng-proof-text strong {
  color: var(--hp-text-main);
  font-weight: 700;
}

.ng-proof-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Hero Spotlight Card (Right) */
.ng-spotlight-box {
  background: #ffffff;
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius-xl);
  padding: 1.5rem;
  box-shadow: var(--hp-shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.ng-spotlight-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--hp-shadow-hover);
}

.ng-spotlight-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.ng-badge-pill {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  text-transform: uppercase;
}

.ng-badge-pill.featured {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.ng-badge-pill.verified {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.ng-spotlight-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--hp-radius-md);
  overflow: hidden;
  background: #f1f5f9;
  margin-bottom: 1.25rem;
}

.ng-spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ng-spotlight-box:hover .ng-spotlight-media img {
  transform: scale(1.02);
}

.ng-spotlight-media .media-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.ng-spotlight-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--hp-text-main);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.ng-spotlight-title a {
  color: inherit;
  text-decoration: none;
}

.ng-spotlight-title a:hover {
  color: var(--hp-primary);
}

.ng-spotlight-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--hp-text-muted);
  margin-bottom: 1.25rem;
}

.ng-spotlight-meta .author {
  font-weight: 600;
  color: var(--hp-text-main);
}

.ng-spotlight-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--hp-border);
}

.ng-spotlight-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.ng-price-main {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--hp-text-main);
}

.ng-price-strike {
  font-size: 0.95rem;
  color: var(--hp-text-subtle);
  text-decoration: line-through;
}

.ng-price-off {
  font-size: 0.75rem;
  font-weight: 800;
  color: #16a34a;
  background: #dcfce7;
  padding: 2px 6px;
  border-radius: 4px;
}

/* ═══════════════ 2. TRUST STATS STRIP ═══════════════ */
.ng-stats-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--hp-border);
  padding: 2rem 0;
}

.ng-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.ng-stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ng-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--hp-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ng-stat-icon.blue { background: #e0f2fe; color: #0284c7; }
.ng-stat-icon.indigo { background: #e0e7ff; color: #4f46e5; }
.ng-stat-icon.emerald { background: #d1fae5; color: #059669; }
.ng-stat-icon.amber { background: #fef3c7; color: #d97706; }

.ng-stat-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--hp-text-main);
  line-height: 1.15;
}

.ng-stat-lbl {
  font-size: 0.82rem;
  color: var(--hp-text-muted);
  margin-top: 2px;
  line-height: 1.3;
}

/* ═══════════════ 3. DUAL WORKFLOW: HOW NG ONE WORKS ═══════════════ */
.ng-workflow-section {
  padding: 4.5rem 0;
  background: #ffffff;
  border-bottom: 1px solid var(--hp-border);
}

.ng-workflow-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.ng-workflow-nav {
  display: inline-flex;
  background: var(--hp-surface-subtle);
  padding: 4px;
  border-radius: 9999px;
  border: 1px solid var(--hp-border);
}

.ng-workflow-tab {
  padding: 0.6rem 1.6rem;
  border-radius: 9999px;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--hp-text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ng-workflow-tab.active {
  background: #ffffff;
  color: var(--hp-primary);
  box-shadow: var(--hp-shadow-xs);
}

.ng-steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ng-step-card {
  background: #ffffff;
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: all 0.2s ease;
  box-shadow: var(--hp-shadow-xs);
}

.ng-step-card:hover {
  border-color: var(--hp-border-hover);
  box-shadow: var(--hp-shadow-sm);
  transform: translateY(-2px);
}

.ng-step-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: #cbd5e1;
}

.ng-step-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--hp-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.ng-step-icon-box.student {
  background: #f0f9ff;
  color: #0284c7;
  border: 1px solid #bae6fd;
}

.ng-step-icon-box.creator {
  background: #f5f3ff;
  color: #7c3aed;
  border: 1px solid #ddd6fe;
}

.ng-step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--hp-text-main);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.ng-step-desc {
  font-size: 0.9rem;
  color: var(--hp-text-muted);
  line-height: 1.6;
}

/* ═══════════════ 4. CORE PLATFORM FEATURES (BENTO GRID) ═══════════════ */
.ng-features-section {
  padding: 4.5rem 0;
  background: var(--hp-bg);
  border-bottom: 1px solid var(--hp-border);
}

.ng-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ng-bento-card {
  background: #ffffff;
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--hp-shadow-xs);
  transition: all 0.25s ease;
}

.ng-bento-card:hover {
  transform: translateY(-2px);
  border-color: var(--hp-border-hover);
  box-shadow: var(--hp-shadow-md);
}

.ng-bento-card.span-2 {
  grid-column: span 2;
}

.ng-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  width: fit-content;
}

.ng-feature-pill.blue { background: #eff6ff; color: #1d4ed8; }
.ng-feature-pill.emerald { background: #ecfdf5; color: #047857; }
.ng-feature-pill.indigo { background: #eef2ff; color: #4338ca; }
.ng-feature-pill.amber { background: #fef3c7; color: #b45309; }

.ng-bento-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--hp-text-main);
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.ng-bento-desc {
  font-size: 0.92rem;
  color: var(--hp-text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.ng-bento-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
}

.ng-bento-tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  background: var(--hp-surface-subtle);
  border: 1px solid var(--hp-border);
  border-radius: 6px;
  color: var(--hp-text-body);
}

/* ═══════════════ 5. CATALOG & LIVE FORMAT FILTERS ═══════════════ */
.ng-catalog-section {
  padding: 4.5rem 0;
  background: #ffffff;
  border-bottom: 1px solid var(--hp-border);
}

.ng-catalog-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.ng-filter-tabs {
  display: inline-flex;
  background: var(--hp-surface-subtle);
  padding: 4px;
  border-radius: 9999px;
  border: 1px solid var(--hp-border);
}

.ng-filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: none;
  background: transparent;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--hp-text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.ng-filter-btn.active {
  background: #ffffff;
  color: var(--hp-primary);
  box-shadow: var(--hp-shadow-xs);
}

.ng-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Product Card */
.ng-card {
  background: #ffffff;
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  box-shadow: var(--hp-shadow-xs);
}

.ng-card:hover {
  transform: translateY(-3px);
  border-color: var(--hp-border-hover);
  box-shadow: var(--hp-shadow-md);
}

.ng-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: #f1f5f9;
  overflow: hidden;
}

.ng-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ng-card:hover .ng-card-thumb img {
  transform: scale(1.03);
}

.ng-card-chip {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.ng-card-chip.video {
  background: #1e1b4b;
  color: #e0e7ff;
}

.ng-card-chip.ebook {
  background: #064e3b;
  color: #d1fae5;
}

.ng-card-rating {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: rgba(255, 255, 255, 0.95);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  color: var(--hp-text-main);
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.ng-card-body {
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ng-card-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--hp-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
}

.ng-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hp-text-main);
  line-height: 1.35;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7em;
}

.ng-card-title a {
  color: inherit;
  text-decoration: none;
}

.ng-card-title a:hover {
  color: var(--hp-primary);
}

.ng-card-author {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--hp-text-muted);
  margin-bottom: 1rem;
}

.ng-card-author .avatar-initial {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e2e8f0;
  color: var(--hp-text-main);
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ng-card-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin-top: auto;
  margin-bottom: 1rem;
}

.ng-card-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--hp-text-main);
}

.ng-card-strike {
  font-size: 0.85rem;
  color: var(--hp-text-subtle);
  text-decoration: line-through;
}

.ng-card-off {
  font-size: 0.72rem;
  font-weight: 700;
  color: #16a34a;
  background: #f0fdf4;
  padding: 1px 5px;
  border-radius: 4px;
}

.ng-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.btn-card-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem;
  border-radius: 6px;
  border: 1px solid var(--hp-border);
  background: #ffffff;
  color: var(--hp-text-main);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-card-cart:hover {
  background: var(--hp-surface-subtle);
  border-color: var(--hp-border-hover);
}

.btn-card-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem;
  border-radius: 6px;
  border: 1px solid var(--hp-primary);
  background: var(--hp-primary);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-card-buy:hover {
  background: var(--hp-primary-hover);
}

/* ═══════════════ 6. SPECIALITY TRACKS ═══════════════ */
.ng-tracks-section {
  padding: 4.5rem 0;
  background: var(--hp-bg);
  border-bottom: 1px solid var(--hp-border);
}

.ng-tracks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.ng-track-card {
  background: #ffffff;
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius-md);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.ng-track-card:hover {
  transform: translateY(-2px);
  border-color: var(--hp-primary-border);
  box-shadow: var(--hp-shadow-sm);
}

.ng-track-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--hp-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.ng-track-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--hp-text-main);
  margin-bottom: 0.35rem;
}

.ng-track-desc {
  font-size: 0.82rem;
  color: var(--hp-text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.ng-track-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--hp-primary);
}

/* ═══════════════ 7. CREATOR MONETIZATION CALCULATOR ═══════════════ */
.ng-calc-section {
  padding: 5rem 0;
  background: #ffffff;
  border-bottom: 1px solid var(--hp-border);
}

.ng-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

/* ── Card Box ── */
.ng-calc-box {
  background: #ffffff;
  border: 1.5px solid #e0eeff;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 4px 24px rgba(2,132,199,0.08), 0 1px 4px rgba(0,0,0,0.04);
}

/* ── Card Header ── */
.ng-calc-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid #f0f6ff;
}

.ng-calc-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.ng-calc-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.ng-calc-subtitle {
  font-size: 0.76rem;
  color: #64748b;
  margin-top: 2px;
}

/* ── Slider Groups ── */
.ng-calc-group {
  margin-bottom: 1.35rem;
}

.ng-calc-row-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.6rem;
}

.ng-calc-lbl {
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.ng-calc-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--hp-primary);
  line-height: 1;
}

.ng-calc-val small {
  font-size: 0.65rem;
  font-weight: 600;
  color: #94a3b8;
  margin-left: 2px;
  text-transform: uppercase;
}

/* ── Slider ── */
.ng-slider-wrap {
  position: relative;
  padding: 4px 0;
}

.ng-slider-input {
  width: 100%;
  height: 5px;
  background: #e2e8f0;
  border-radius: 9999px;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.ng-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--hp-primary);
  cursor: pointer;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(2,132,199,0.45);
  transition: transform 0.15s ease;
}

.ng-slider-input::-webkit-slider-thumb:hover,
.ng-slider-input:active::-webkit-slider-thumb {
  transform: scale(1.18);
}

.ng-slider-range-hints {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  font-size: 0.7rem;
  color: #94a3b8;
  font-weight: 500;
}

/* ── Result Panel ── */
.ng-calc-result-panel {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  margin-top: 0.5rem;
}

.ng-calc-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.ng-calc-result-left {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ng-calc-result-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #bae6fd;
  background: rgba(255,255,255,0.15);
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
  width: fit-content;
}

.ng-calc-result-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  line-height: 1.3;
}

.ng-calc-net-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  white-space: nowrap;
}

.ng-calc-result-hint {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 0.5rem;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ═══════════════ 8. VERIFIED TESTIMONIALS ═══════════════ */
.ng-reviews-section {
  padding: 4.5rem 0;
  background: var(--hp-bg);
  border-bottom: 1px solid var(--hp-border);
}

.ng-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ng-review-card {
  background: #ffffff;
  border: 1px solid var(--hp-border);
  border-radius: var(--hp-radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--hp-shadow-xs);
}

.ng-review-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 0.85rem;
}

.ng-review-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--hp-text-body);
  margin-bottom: 1.25rem;
  flex: 1;
}

.ng-review-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hp-border);
}

.ng-review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e0f2fe;
  color: #0284c7;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.ng-review-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--hp-text-main);
}

.ng-review-role {
  font-size: 0.75rem;
  color: var(--hp-text-muted);
}

/* ═══════════════ 9. FINAL DUAL CALL TO ACTION ═══════════════ */
.ng-cta-section {
  padding: 4.5rem 0;
  background: #ffffff;
  border-bottom: 1px solid var(--hp-border);
}

.ng-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.ng-cta-box {
  border-radius: var(--hp-radius-xl);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.ng-cta-box.student {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
}

.ng-cta-box.creator {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  border: 1px solid #ddd6fe;
}

.ng-cta-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  width: fit-content;
}

.ng-cta-box.student .ng-cta-badge {
  background: #ffffff;
  color: #0284c7;
}

.ng-cta-box.creator .ng-cta-badge {
  background: #ffffff;
  color: #7c3aed;
}

.ng-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--hp-text-main);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.ng-cta-desc {
  font-size: 0.95rem;
  color: var(--hp-text-body);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.ng-cta-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ═══════════════ 10. MINIMAL LIGHT FOOTER ═══════════════ */
.ng-light-footer {
  background: #ffffff;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--hp-border);
}

.ng-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.ng-footer-brand-p {
  font-size: 0.88rem;
  color: var(--hp-text-muted);
  line-height: 1.6;
  margin: 1rem 0 1.5rem;
  max-width: 320px;
}

.ng-footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--hp-text-main);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ng-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ng-footer-links li {
  margin-bottom: 0.75rem;
}

.ng-footer-links a {
  font-size: 0.88rem;
  color: var(--hp-text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.ng-footer-links a:hover {
  color: var(--hp-primary);
}

.ng-footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--hp-border);
  font-size: 0.82rem;
  color: var(--hp-text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.ng-trust-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ng-trust-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  background: var(--hp-surface-subtle);
  border: 1px solid var(--hp-border);
  border-radius: 4px;
  color: var(--hp-text-body);
}

/* ═══════════════ RESPONSIVE MEDIA QUERIES ═══════════════ */
@media (max-width: 1024px) {
  .ng-catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ng-tracks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ng-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .ng-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ng-hero-heading {
    font-size: 2.4rem;
  }
  .ng-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ng-steps-container {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .ng-bento-grid {
    grid-template-columns: 1fr;
  }
  .ng-bento-card.span-2 {
    grid-column: span 1;
  }
  .ng-calc-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ng-cta-grid {
    grid-template-columns: 1fr;
  }
  .ng-reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ng-hero-section {
    padding: 2.5rem 0;
  }
  .ng-hero-heading {
    font-size: 2rem;
    line-height: 1.15;
  }
  .ng-hero-lead {
    font-size: 0.95rem;
  }
  .ng-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .ng-hero-actions .ng-btn-primary,
  .ng-hero-actions .ng-btn-secondary {
    width: 100%;
    text-align: center;
  }
  /* Stats: minimal compact 2x2 on mobile, no icon, just number + label */
  .ng-stats-bar {
    padding: 1.25rem 0;
  }
  .ng-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius-md);
    overflow: hidden;
  }
  .ng-stat-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 1rem 1.1rem;
    border-right: 1px solid var(--hp-border);
    border-bottom: 1px solid var(--hp-border);
  }
  .ng-stat-item:nth-child(2),
  .ng-stat-item:nth-child(4) {
    border-right: none;
  }
  .ng-stat-item:nth-child(3),
  .ng-stat-item:nth-child(4) {
    border-bottom: none;
  }
  .ng-stat-icon {
    display: none;
  }
  .ng-stat-val {
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.1;
  }
  .ng-stat-lbl {
    font-size: 0.75rem;
    color: var(--hp-text-muted);
    margin-top: 0;
  }
  .ng-catalog-grid {
    grid-template-columns: 1fr;
  }
  .ng-tracks-grid {
    grid-template-columns: 1fr;
  }
  .ng-section-title {
    font-size: 1.65rem;
  }
  .ng-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ng-footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ═══════════════ MOBILE MINIMAL OVERRIDES ≤480px ═══════════════ */
@media (max-width: 480px) {
  /* Hero */
  .ng-hero-section {
    padding: 2rem 0 1.5rem;
  }
  .ng-hero-badge {
    font-size: 0.72rem;
    padding: 0.28rem 0.65rem;
  }
  .ng-hero-heading {
    font-size: 1.75rem;
    letter-spacing: -0.025em;
    margin-bottom: 0.9rem;
  }
  .ng-hero-lead {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.35rem;
  }
  .ng-hero-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding-top: 1rem;
  }
  .ng-proof-text {
    font-size: 0.78rem;
  }
  /* Hide spotlight card completely on very small phones — hero-only view */
  .ng-hero-spotlight {
    display: none;
  }

  /* Workflow tabs: stacked pill */
  .ng-workflow-nav {
    flex-direction: column;
    border-radius: 12px;
    width: 100%;
  }
  .ng-workflow-tab {
    padding: 0.65rem 1rem;
    font-size: 0.82rem;
    border-radius: 8px;
    justify-content: center;
  }
  .ng-workflow-toggle-wrap {
    margin-bottom: 2rem;
  }

  /* Step cards: compact */
  .ng-step-card {
    padding: 1.35rem 1.25rem;
  }
  .ng-step-title {
    font-size: 1.05rem;
  }
  .ng-step-desc {
    font-size: 0.85rem;
  }
  .ng-step-number {
    font-size: 1rem;
    top: 1.2rem;
    right: 1.2rem;
  }
  .ng-step-icon-box {
    width: 40px;
    height: 40px;
    margin-bottom: 0.85rem;
  }

  /* Sections: tighter vertical padding */
  .ng-workflow-section,
  .ng-features-section,
  .ng-catalog-section,
  .ng-tracks-section,
  .ng-reviews-section,
  .ng-cta-section {
    padding: 2.5rem 0;
  }
  .ng-calc-section {
    padding: 2.5rem 0;
  }

  /* Section headers */
  .ng-section-header {
    margin-bottom: 1.75rem;
  }
  .ng-section-title {
    font-size: 1.5rem;
  }
  .ng-section-subtitle {
    font-size: 0.88rem;
  }
  .ng-kicker-pill {
    font-size: 0.72rem;
    padding: 0.25rem 0.65rem;
    margin-bottom: 0.6rem;
  }

  /* Bento: compact */
  .ng-bento-card {
    padding: 1.35rem;
  }
  .ng-bento-title {
    font-size: 1.1rem;
  }
  .ng-bento-desc {
    font-size: 0.85rem;
  }

  /* Catalog cards: compact */
  .ng-catalog-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .ng-card-body {
    padding: 0.9rem;
  }
  .ng-card-title {
    font-size: 0.95rem;
    height: auto;
    -webkit-line-clamp: 2;
  }
  .ng-card-price {
    font-size: 1.1rem;
  }

  /* Category tracks: horizontal scroll on mobile */
  .ng-tracks-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .ng-track-card {
    padding: 1.15rem;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .ng-track-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 0;
    flex-shrink: 0;
    font-size: 1.1rem;
  }
  .ng-track-desc {
    display: none;
  }
  .ng-track-name {
    font-size: 1rem;
    margin-bottom: 0;
  }
  .ng-track-footer {
    margin-top: 0;
    margin-left: auto;
  }

  /* Creator calc: compact */
  .ng-calc-box {
    padding: 1.35rem;
  }
  .ng-calc-net-number {
    font-size: 2.1rem;
  }

  /* CTA cards: compact */
  .ng-cta-box {
    padding: 1.75rem 1.35rem;
  }
  .ng-cta-title {
    font-size: 1.35rem;
  }

  /* Reviews: compact */
  .ng-review-card {
    padding: 1.35rem;
  }

  /* Footer */
  .ng-light-footer {
    padding: 2.5rem 0 1.5rem;
  }
}

/* ═══════════════ TARGETED MOBILE FIX — screenshots ═══════════════ */

/* 1. Workflow tabs — show short label on mobile, hide full */
.tab-short { display: none; }

@media (max-width: 520px) {
  /* --- Workflow toggle tabs: single-line pills --- */
  .tab-full  { display: none; }
  .tab-short { display: inline; }

  .ng-workflow-nav {
    flex-direction: row;
    border-radius: 9999px;
    width: auto;
    align-self: center;
  }
  .ng-workflow-tab {
    padding: 0.55rem 1.1rem;
    font-size: 0.82rem;
    gap: 0.35rem;
    white-space: nowrap;
  }
  .ng-workflow-tab svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
  .ng-workflow-toggle-wrap {
    margin-bottom: 1.75rem;
  }

  /* --- Bento tag pills: limit to 2 per row, smaller --- */
  .ng-bento-tag-list {
    flex-wrap: wrap;
    gap: 0.35rem;
  }
  .ng-bento-tag {
    font-size: 0.72rem;
    padding: 0.25rem 0.55rem;
    white-space: nowrap;
  }
  /* Limit visible tags to 2 on bento cards — hide overflow */
  .ng-bento-tag:nth-child(n+3) {
    display: none;
  }
  .ng-bento-desc {
    font-size: 0.83rem;
    line-height: 1.55;
    margin-bottom: 0.85rem;
  }
  .ng-feature-pill {
    font-size: 0.7rem;
    padding: 0.2rem 0.55rem;
    margin-bottom: 0.65rem;
  }

  /* --- Catalog filter tabs: no wrap, single row scroll --- */
  .ng-catalog-nav-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
  }
  .ng-filter-tabs {
    width: 100%;
    justify-content: stretch;
    border-radius: 10px;
    padding: 3px;
  }
  .ng-filter-btn {
    flex: 1;
    justify-content: center;
    padding: 0.55rem 0.6rem;
    font-size: 0.78rem;
    gap: 0.3rem;
    border-radius: 8px;
    white-space: nowrap;
  }
  .ng-filter-btn svg {
    display: none;
  }

  /* --- Creator section CTA: tighter heading --- */
  .ng-calc-section .ng-section-title,
  [style*="font-size:2.4rem"] {
    font-size: 1.65rem !important;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }
  .ng-calc-section p {
    font-size: 0.88rem !important;
    line-height: 1.6;
    margin-bottom: 1.35rem !important;
  }
  .ng-kicker-pill {
    font-size: 0.7rem;
    padding: 0.22rem 0.6rem;
  }

  /* --- Earnings Calculator: compact & crisp on mobile --- */
  .ng-calc-box {
    padding: 1.15rem;
  }
  .ng-calc-header {
    gap: 0.65rem;
    margin-bottom: 1.1rem;
    padding-bottom: 0.85rem;
  }
  .ng-calc-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    border-radius: 10px;
  }
  .ng-calc-title {
    font-size: 0.95rem;
  }
  .ng-calc-subtitle {
    font-size: 0.7rem;
  }
  .ng-calc-group {
    margin-bottom: 1rem;
  }
  .ng-calc-lbl {
    font-size: 0.72rem;
  }
  .ng-calc-val {
    font-size: 1.15rem;
  }
  .ng-slider-range-hints {
    font-size: 0.65rem;
  }
  .ng-calc-result-panel {
    padding: 0.85rem 1rem;
    border-radius: 12px;
  }
  .ng-calc-result-badge {
    font-size: 0.62rem;
  }
  .ng-calc-result-label {
    font-size: 0.72rem;
  }
  .ng-calc-net-number {
    font-size: 1.65rem;
  }
  .ng-calc-result-hint {
    font-size: 0.68rem;
    padding-top: 0.4rem;
  }

  /* --- Section headers on mobile: compact --- */
  .ng-section-header {
    margin-bottom: 1.5rem;
  }
  .ng-section-title {
    font-size: 1.5rem;
    margin-bottom: 0.45rem;
  }
  .ng-section-subtitle {
    font-size: 0.85rem;
  }

  /* --- Step cards (How it works): tighter --- */
  .ng-step-card {
    padding: 1.15rem;
  }
  .ng-step-desc {
    font-size: 0.83rem;
    line-height: 1.55;
  }
}
