/* ============================================================
   Fordina SmartLearn — Landing Page CSS
   ============================================================ */

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

:root {
  --green:       #0D6B3A;
  --green-dark:  #084D29;
  --green-light: #E8F5EE;
  --amber:       #F5A623;
  --amber-dark:  #C17A0E;
  --amber-light: #FEF3DC;
  --navy:        #1A3A5C;
  --navy-light:  #E8EEF5;
  --bg:          #F5F7F5;
  --surface:     #FFFFFF;
  --text:        #1C2B20;
  --muted:       #6B7F72;
  --border:      #DDE5E0;
  --font:        'Outfit', sans-serif;
  --radius:      14px;
  --shadow:      0 4px 20px rgba(13,107,58,0.08);
  --shadow-lg:   0 12px 40px rgba(13,107,58,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--surface); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.lp-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-amber { color: var(--amber); }

/* ── NAV ── */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8, 77, 41, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}
.lp-nav-scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.lp-nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.lp-logo {
  display: flex; align-items: center; gap: 10px;
}
.lp-logo-box {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--amber), #e8951a);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.lp-logo strong { display: block; font-size: 0.95rem; font-weight: 800; color: white; line-height: 1; }
.lp-logo span { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.55); }
.lp-nav-links { display: flex; align-items: center; gap: 6px; }
.lp-nav-links a { color: rgba(255,255,255,0.8); padding: 6px 12px; border-radius: 8px; font-size: 0.88rem; font-weight: 500; transition: all 0.2s; }
.lp-nav-links a:hover { background: rgba(255,255,255,0.1); color: white; }
.btn-nav-login { border: 1px solid rgba(255,255,255,0.3) !important; }
.btn-nav-cta {
  background: var(--amber) !important; color: white !important;
  font-weight: 700 !important; padding: 8px 18px !important;
}
.btn-nav-cta:hover { background: var(--amber-dark) !important; }
.lp-hamburger { display: none; background: none; border: none; color: white; font-size: 1.4rem; cursor: pointer; }
.lp-mobile-menu {
  display: none; flex-direction: column;
  background: var(--green-dark);
  padding: 16px 24px;
  gap: 4px;
}
.lp-mobile-menu.open { display: flex; }
.lp-mobile-menu a { color: rgba(255,255,255,0.85); padding: 10px 0; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.lp-mobile-menu .btn-nav-cta { background: var(--amber); color: white; border-radius: 8px; padding: 12px; text-align: center; margin-top: 8px; font-weight: 700; border: none; }

/* ── HERO ── */
.lp-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0d6b3a 60%, #1a7a46 100%);
  padding: 120px 0 80px;
  overflow: hidden;
}
.lp-hero-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.lp-hero-badge {
  display: inline-block;
  background: rgba(245, 166, 35, 0.2);
  border: 1px solid rgba(245, 166, 35, 0.4);
  color: var(--amber);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600;
  margin-bottom: 20px;
}
.lp-hero-text h1 {
  font-size: 2.8rem; font-weight: 900; color: white; line-height: 1.1;
  margin-bottom: 20px;
}
.lp-hero-text p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 32px; max-width: 480px; }
.lp-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-hero-primary {
  background: var(--amber); color: white;
  padding: 14px 28px; border-radius: 10px;
  font-weight: 700; font-size: 1rem; font-family: var(--font);
  transition: all 0.2s; display: inline-block; border: none; cursor: pointer;
}
.btn-hero-primary:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.4); }
.btn-hero-secondary {
  background: rgba(255,255,255,0.12); color: white;
  padding: 14px 24px; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.2s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.2); }

.lp-hero-stats {
  display: flex; gap: 28px; flex-wrap: wrap;
}
.lp-stat { display: flex; flex-direction: column; }
.lp-stat strong { font-size: 1.6rem; font-weight: 800; color: white; line-height: 1; }
.lp-stat span { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 2px; }

.lp-hero-img-placeholder {
  background: rgba(255,255,255,0.08);
  border: 2px dashed rgba(255,255,255,0.25);
  border-radius: 16px;
  height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.placeholder-inner { text-align: center; color: rgba(255,255,255,0.6); padding: 24px; }
.placeholder-icon { font-size: 3rem; margin-bottom: 12px; }
.placeholder-inner p { font-size: 0.82rem; margin: 4px 0; }
.placeholder-inner code { background: rgba(255,255,255,0.1); padding: 2px 8px; border-radius: 4px; font-size: 0.75rem; }
.lp-hero-img { width: 100%; height: 380px; object-fit: cover; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }

/* ── SECTION SHARED ── */
.lp-section-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--green);
  margin-bottom: 8px;
}
.lp-section-title { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.lp-section-sub { color: var(--muted); max-width: 560px; margin-bottom: 40px; }

/* ── WHO IS THIS FOR ── */
.lp-for { padding: 80px 0; background: var(--bg); }
.lp-for-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-for-card {
  background: white; border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s;
}
.lp-for-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.lp-for-icon { font-size: 2rem; margin-bottom: 12px; }
.lp-for-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.lp-for-card p { font-size: 0.85rem; color: var(--muted); }

/* ── PROJECTS ── */
.lp-projects { padding: 80px 0; }
.lp-projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.lp-project-card {
  border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s;
}
.lp-project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.lp-project-green { background: var(--green-light); border-color: #b3d9c4; }
.lp-project-amber { background: var(--amber-light); border-color: #fde4a0; }
.lp-project-navy  { background: var(--navy-light); border-color: #c6d4e6; }
.lp-project-emoji { font-size: 2.2rem; margin-bottom: 12px; }
.lp-project-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.lp-project-card p { font-size: 0.85rem; color: var(--muted); margin-bottom: 14px; }
.lp-project-tag { font-size: 0.72rem; font-weight: 600; color: var(--green); background: white; display: inline-block; padding: 3px 10px; border-radius: 100px; border: 1px solid var(--border); }

.lp-project-photo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.lp-photo-placeholder {
  background: var(--bg); border: 2px dashed var(--border); border-radius: 12px;
  height: 180px; display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--muted); font-size: 0.78rem; padding: 16px;
}
.lp-photo-placeholder code { font-size: 0.72rem; color: var(--green); }

/* ── MODULES ── */
.lp-modules { padding: 80px 0; background: var(--bg); }
.lp-modules-list { display: flex; flex-direction: column; gap: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.lp-module-row {
  display: flex; align-items: center; gap: 20px;
  padding: 18px 24px; background: white;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.lp-module-row:last-child { border-bottom: none; }
.lp-module-row:hover { background: var(--bg); }
.lp-module-free { background: linear-gradient(90deg, #fff9ec, white) !important; border-left: 4px solid var(--amber); }
.lp-module-num {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem; flex-shrink: 0;
}
.lp-module-free .lp-module-num { background: var(--amber); }
.lp-module-info { flex: 1; }
.lp-module-tier { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); margin-bottom: 2px; }
.lp-module-info h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.lp-module-info p { font-size: 0.8rem; color: var(--muted); }
.lp-module-badge { padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }
.lp-badge-free     { background: var(--green-light); color: var(--green); }
.lp-badge-premium  { background: var(--amber-light); color: var(--amber-dark); }
.lp-badge-full     { background: var(--navy-light); color: var(--navy); }

/* ── OUTCOMES ── */
.lp-outcomes { padding: 80px 0; }
.lp-outcomes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.lp-outcome {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--green-light); border-radius: 10px;
  padding: 16px 18px;
}
.lp-outcome span { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.lp-outcome p { font-size: 0.88rem; color: var(--text); font-weight: 500; }

/* ── PRICING ── */
.lp-pricing { padding: 80px 0; background: var(--bg); }
.lp-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 28px; }
.lp-price-card {
  background: white; border-radius: var(--radius); padding: 28px 24px;
  border: 1px solid var(--border); position: relative;
  display: flex; flex-direction: column;
}
.lp-price-featured {
  border-color: var(--green); border-width: 2px;
  box-shadow: 0 8px 30px rgba(13,107,58,0.15);
}
.lp-price-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: white;
  padding: 4px 16px; border-radius: 100px; font-size: 0.72rem; font-weight: 700;
  white-space: nowrap;
}
.lp-price-tier { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); margin-bottom: 8px; }
.lp-price-amount { font-size: 2.4rem; font-weight: 900; color: var(--text); margin-bottom: 2px; }
.lp-price-label { font-size: 0.78rem; color: var(--muted); margin-bottom: 20px; }
.lp-price-features { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; margin-bottom: 24px; }
.lp-price-features li { font-size: 0.82rem; color: var(--text); line-height: 1.4; }
.lp-price-features small { color: var(--muted); font-size: 0.72rem; }
.lp-price-btn {
  display: block; text-align: center; padding: 12px;
  border-radius: 10px; font-weight: 700; font-size: 0.9rem;
  transition: all 0.2s;
}
.lp-price-btn-primary { background: var(--green); color: white; }
.lp-price-btn-primary:hover { background: var(--green-dark); }
.lp-price-btn-outline { border: 2px solid var(--green); color: var(--green); }
.lp-price-btn-outline:hover { background: var(--green); color: white; }

.lp-payment-note {
  text-align: center; font-size: 0.85rem; color: var(--muted);
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px;
}
.lp-payment-methods { display: flex; gap: 24px; justify-content: center; margin: 10px 0; font-weight: 600; color: var(--text); }

/* ── INSTRUCTOR ── */
.lp-instructor { padding: 80px 0; }
.lp-instructor-inner { display: grid; grid-template-columns: 280px 1fr; gap: 60px; align-items: center; }
.lp-instructor-img-placeholder {
  width: 260px; height: 260px; border-radius: 50%;
  background: var(--bg); border: 3px dashed var(--border);
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--muted); font-size: 0.75rem; padding: 20px;
}
.lp-instructor-img { width: 260px; height: 260px; border-radius: 50%; object-fit: cover; border: 4px solid var(--green); }
.lp-instructor-creds { color: var(--green); font-weight: 600; font-size: 0.9rem; margin-bottom: 16px; }
.lp-instructor-bio p { color: var(--muted); font-size: 0.9rem; margin-bottom: 12px; }
.lp-instructor-bio h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 4px; }

/* ── CTA ── */
.lp-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  text-align: center;
}
.lp-cta h2 { font-size: 1.8rem; font-weight: 800; color: white; margin-bottom: 16px; }
.lp-cta p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 32px; }

/* ── FOOTER ── */
.lp-footer { background: var(--green-dark); padding: 60px 0 0; }
.lp-footer .lp-logo-box { background: var(--amber); }
.lp-footer .lp-logo strong { color: white; }
.lp-footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.lp-footer h4 { color: white; font-size: 0.9rem; margin-bottom: 12px; }
.lp-footer a:hover { color: white; }
.lp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex; justify-content: space-between;
  color: rgba(255,255,255,0.5); font-size: 0.82rem;
}
.lp-footer-bottom a { color: rgba(255,255,255,0.5); margin: 0 8px; }
.lp-footer-bottom a:hover { color: white; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .lp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-hero-text h1 { font-size: 2rem; }
  .lp-hero-img-placeholder { height: 280px; }
  .lp-for-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-projects-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-project-photo-row { grid-template-columns: 1fr; }
  .lp-pricing-grid { grid-template-columns: 1fr; }
  .lp-outcomes-grid { grid-template-columns: 1fr; }
  .lp-instructor-inner { grid-template-columns: 1fr; }
  .lp-footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .lp-nav-links { display: none; }
  .lp-hamburger { display: block; }
}
@media (max-width: 600px) {
  .lp-for-grid { grid-template-columns: 1fr; }
  .lp-projects-grid { grid-template-columns: 1fr; }
  .lp-hero-text h1 { font-size: 1.7rem; }
  .lp-hero-stats { gap: 18px; }
  .lp-section-title { font-size: 1.5rem; }
  .lp-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
