/* =====================================================
   SKILLFLIX — LANDING PAGE STYLES
   ===================================================== */
.landing-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--navbar-h) + 60px) 4% 80px;
}
.landing-hero-bg { position: absolute; inset: 0; }
.landing-hero-bg video, .landing-hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.3); }
.landing-hero-bg::after { content:''; position: absolute; inset:0; background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(229,9,20,0.08) 100%); }
.landing-hero-content { position: relative; z-index: 2; max-width: 700px; }
.landing-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(229,9,20,0.15); border: 1px solid rgba(229,9,20,0.3); color: var(--red); font-size: 0.8rem; font-weight: 700; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.landing-h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.landing-h1 span { color: var(--red); }
.landing-lead { font-size: clamp(1rem, 1.8vw, 1.2rem); color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 32px; max-width: 560px; }
.landing-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.landing-cta-row .btn-primary { font-size: 1rem; padding: 14px 32px; }
.landing-social-proof { display: flex; align-items: center; gap: 14px; }
.landing-avatars { display: flex; }
.landing-avatars img { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--bg); margin-right: -8px; }
.landing-social-text { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.landing-social-text strong { color: white; }

/* STATS */
.landing-stats { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.landing-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.stat-cell { padding: 28px 20px; text-align: center; border-right: 1px solid var(--border); }
.stat-cell:last-child { border-right: none; }
.stat-cell strong { display: block; font-size: 2rem; font-weight: 900; color: var(--red); }
.stat-cell span { font-size: 0.82rem; color: var(--gray); margin-top: 4px; display: block; }

/* FEATURES */
.landing-section { padding: 80px 4%; }
.section-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--red); margin-bottom: 12px; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 14px; }
.section-subtitle { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 520px; line-height: 1.6; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin-top: 48px; }
.feature-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; padding: 24px; transition: transform 0.2s, border-color 0.2s; }
.feature-card:hover { transform: translateY(-4px); border-color: rgba(229,9,20,0.3); }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(229,9,20,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--red); margin-bottom: 16px; }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* PLANS */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; max-width: 900px; margin-left: auto; margin-right: auto; }
.plan-card { background: var(--bg3); border: 2px solid var(--border); border-radius: 16px; padding: 32px; position: relative; transition: border-color 0.2s, transform 0.2s; }
.plan-card:hover { transform: translateY(-4px); }
.plan-card.featured { border-color: var(--red); background: linear-gradient(135deg, rgba(229,9,20,0.05) 0%, var(--bg3) 100%); }
.plan-card .popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--red); color: white; font-size: 0.7rem; font-weight: 700; padding: 4px 14px; border-radius: 20px; text-transform: uppercase; white-space: nowrap; }
.plan-name { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 8px; }
.plan-price { font-size: 2.8rem; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.plan-price small { font-size: 1rem; font-weight: 400; color: var(--gray); }
.plan-desc { font-size: 0.85rem; color: var(--gray); margin-bottom: 24px; }
.plan-features { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.plan-features li i { color: var(--red); font-size: 0.8rem; width: 14px; }
.plan-features li.disabled { color: var(--gray2); }
.plan-features li.disabled i { color: var(--gray2); }
.plan-btn { display: block; width: 100%; text-align: center; padding: 13px; border-radius: 8px; font-weight: 700; font-size: 0.95rem; transition: all 0.2s; font-family: var(--font); cursor: pointer; border: 2px solid var(--red); }
.plan-btn.primary { background: var(--red); color: white; }
.plan-btn.primary:hover { background: var(--red-hover); transform: translateY(-1px); }
.plan-btn.outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.2); }
.plan-btn.outline:hover { border-color: var(--red); color: var(--red); }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 48px; }
.testimonial-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.testimonial-stars { color: #ffd700; font-size: 0.85rem; margin-bottom: 12px; }
.testimonial-text { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-author img { width: 40px; height: 40px; border-radius: 50%; }
.testimonial-author strong { display: block; font-size: 0.85rem; }
.testimonial-author small { font-size: 0.72rem; color: var(--gray2); }

/* REGISTER FORM */
.register-section { background: linear-gradient(135deg, rgba(229,9,20,0.06) 0%, var(--bg2) 100%); border-top: 1px solid var(--border); padding: 80px 4%; text-align: center; }
.register-box { background: var(--bg3); border: 1px solid var(--border); border-radius: 16px; padding: 40px; max-width: 480px; margin: 40px auto 0; }

/* RESPONSIVE */
@media (max-width: 640px) {
  .landing-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { border-right: 1px solid var(--border); }
  .stat-cell:nth-child(2n) { border-right: none; }
  .stat-cell:nth-child(3), .stat-cell:nth-child(4) { border-top: 1px solid var(--border); }
  .plans-grid { grid-template-columns: 1fr; }
  .register-box { padding: 24px 16px; }
}
