/* ============================================================
   Adcellent ESG OS — Landing Page Styles
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

.landing-body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0f172a;
  color: #f1f5f9;
  overflow-x: hidden;
}

/* ── Navbar ─────────────────────────────────────────────── */
.landing-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 16px 40px;
  transition: background 0.3s, box-shadow 0.3s;
}
.landing-nav.nav-scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}
.ln-brand { display: flex; align-items: center; gap: 10px; }
.ln-logo {
  width: 36px; height: 36px; border-radius: 10px;
  background: #16a34a;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: white;
}
.ln-logo-sm { width: 28px; height: 28px; border-radius: 8px; font-size: 14px; }
.ln-name { font-size: 18px; font-weight: 800; color: white; }

.ln-links { display: flex; gap: 28px; flex: 1; }
.ln-links a {
  color: #94a3b8; font-size: 14px; font-weight: 500;
  text-decoration: none; transition: color 0.15s;
}
.ln-links a:hover { color: #f1f5f9; }

.ln-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }

/* ── Hero ────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #0d2a1e 50%, #0f172a 100%);
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(22,163,74,0.12) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(14,165,233,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.hero-container {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(22,163,74,0.15);
  border: 1px solid rgba(22,163,74,0.3);
  color: #86efac;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.08;
  color: #f8fafc;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}
.hero-headline-accent {
  background: linear-gradient(90deg, #16a34a, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: #94a3b8;
  max-width: 580px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-btn-primary  { font-size: 16px; font-weight: 700; padding: 14px 28px; }
.hero-btn-secondary {
  font-size: 16px; font-weight: 600; padding: 14px 28px;
  border-color: rgba(255,255,255,0.25); color: #f1f5f9;
}
.hero-btn-secondary:hover { background: rgba(255,255,255,0.08); color: #f1f5f9; border-color: rgba(255,255,255,0.5); }
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #64748b;
}

/* ── Stats bar ───────────────────────────────────────────── */
.stats-bar {
  background: #1e293b;
  border-top: 1px solid #334155;
  border-bottom: 1px solid #334155;
  padding: 32px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item { text-align: center; padding: 8px 48px; }
.stat-num  { font-size: 40px; font-weight: 900; color: #f1f5f9; line-height: 1; }
.stat-plus { font-size: 28px; color: #16a34a; }
.stat-label { font-size: 12px; color: #64748b; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: #334155; }

/* ── Section common ──────────────────────────────────────── */
.features-section,
.frameworks-section,
.roles-section,
.lp-pricing-section {
  padding: 96px 0;
}
.features-section  { background: #0f172a; }
.frameworks-section { background: #1e293b; }
.roles-section     { background: #0f172a; }
.lp-pricing-section { background: #1e293b; }

.section-label {
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: #16a34a; margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-sub { font-size: 16px; color: #64748b; max-width: 560px; }

/* ── Feature cards ───────────────────────────────────────── */
.feature-card {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: #16a34a; transform: translateY(-2px); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.feature-title { font-size: 15px; font-weight: 700; color: #f1f5f9; margin-bottom: 8px; }
.feature-desc  { font-size: 13px; color: #64748b; line-height: 1.6; margin: 0; }

/* soft bgs on dark */
.bg-success-soft { background: rgba(22,163,74,0.15); }
.bg-primary-soft { background: rgba(59,130,246,0.15); }
.bg-info-soft    { background: rgba(14,165,233,0.15); }
.bg-warning-soft { background: rgba(234,179,8,0.15); }
.bg-purple-soft  { background: rgba(124,58,237,0.15); }
.text-success    { color: #22c55e !important; }
.text-primary    { color: #60a5fa !important; }
.text-info       { color: #38bdf8 !important; }
.text-warning    { color: #fbbf24 !important; }
.text-purple     { color: #a78bfa !important; }

/* ── Framework cards ─────────────────────────────────────── */
.frameworks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.fw-card {
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 14px;
  padding: 24px 20px;
  transition: border-color 0.2s;
}
.fw-card:hover { border-color: #475569; }
.fw-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 12px;
}
.fw-name { font-size: 15px; font-weight: 700; color: #f1f5f9; margin-bottom: 6px; }
.fw-desc { font-size: 12px; color: #64748b; line-height: 1.5; }

/* ── Role cards ──────────────────────────────────────────── */
.role-card {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  transition: border-color 0.2s;
}
.role-card:hover { border-color: #475569; }
.role-icon {
  font-size: 32px; margin-bottom: 14px;
}
.role-sme      .role-icon { color: #22c55e; }
.role-principal .role-icon { color: #60a5fa; }
.role-associate .role-icon { color: #38bdf8; }
.role-manager  .role-icon { color: #94a3b8; }

.role-card h5  { font-size: 17px; font-weight: 700; color: #f1f5f9; margin-bottom: 10px; }
.role-card p   { font-size: 13px; color: #64748b; line-height: 1.6; }
.role-list     { list-style: none; padding: 0; margin: 0; }
.role-list li  {
  font-size: 12px; color: #94a3b8; padding: 4px 0;
  display: flex; align-items: center; gap: 6px;
}
.role-list li::before { content: '→'; color: #16a34a; font-weight: 700; }

/* ── Landing pricing cards ───────────────────────────────── */
.lp-plan-card {
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  position: relative;
  transition: border-color 0.2s;
}
.lp-plan-card:hover { border-color: #475569; }
.lp-plan-popular {
  border-color: #16a34a;
  background: linear-gradient(135deg, #0d2a1e 0%, #0f172a 100%);
}
.lp-plan-pro { border-color: #3b82f6; }
.lp-popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #16a34a; color: white;
  font-size: 11px; font-weight: 700; padding: 4px 14px;
  border-radius: 20px; white-space: nowrap;
}
.lp-plan-name   { font-size: 14px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.lp-plan-price  { font-size: 48px; font-weight: 900; color: #f1f5f9; line-height: 1; margin-bottom: 8px; }
.lp-currency    { font-size: 22px; font-weight: 700; vertical-align: super; }
.lp-period      { font-size: 14px; font-weight: 500; color: #64748b; }
.lp-plan-desc   { font-size: 13px; color: #64748b; margin-bottom: 20px; line-height: 1.5; }
.lp-plan-features { list-style: none; padding: 0; margin: 0; }
.lp-plan-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #94a3b8; padding: 6px 0;
  border-bottom: 1px solid #1e293b;
}
.lp-plan-features li:last-child { border-bottom: none; }
.lp-plan-features .bi-check { color: #22c55e; font-size: 15px; flex-shrink: 0; }
.lp-plan-features .bi-x     { color: #475569; font-size: 15px; flex-shrink: 0; }

/* ── CTA section ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #0d2a1e 0%, #0f172a 60%);
  padding: 96px 0;
  border-top: 1px solid #1e293b;
}
.cta-leaf    { font-size: 48px; color: #16a34a; margin-bottom: 20px; }
.cta-heading { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: #f1f5f9; margin-bottom: 16px; letter-spacing: -0.5px; }
.cta-sub     { font-size: 16px; color: #64748b; max-width: 560px; margin: 0 auto 36px; line-height: 1.7; }

/* ── Footer ──────────────────────────────────────────────── */
.landing-footer {
  background: #020817;
  border-top: 1px solid #1e293b;
  padding: 60px 0 32px;
}
.footer-heading { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #475569; margin-bottom: 12px; }
.footer-link    { display: block; font-size: 13px; color: #64748b; text-decoration: none; margin-bottom: 8px; transition: color 0.15s; }
.footer-link:hover { color: #f1f5f9; }
.footer-fw-badge {
  font-size: 11px; font-weight: 600; background: #1e293b;
  border: 1px solid #334155; color: #94a3b8;
  padding: 3px 10px; border-radius: 6px;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid #1e293b;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .landing-nav { padding: 12px 20px; gap: 16px; }
  .hero-container { padding: 60px 0; }
  .stat-item { padding: 8px 24px; }
  .stat-divider { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}
