/* ============================================================
   FEATURE / PRODUCT PAGES — AI Screening, ATS Integration, Career Paths
   ============================================================ */

/* ---------- Hero ---------- */
.ftr-hero {
  position: relative;
  padding: 64px 0 56px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--asb-navy) 0%, #1A2240 100%);
  color: var(--paper);
}
.ftr-hero-inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.ftr-hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  margin: 0 auto 32px;
  max-width: 720px;
  line-height: 1.7;
}
.ftr-hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.ftr-hero-actions .btn-ink { background: var(--asb-orange); color: #fff; }
.ftr-hero-actions .btn-ink:hover { background: var(--gold-deep); }
.ftr-hero-actions .btn-ghost { color: var(--paper); border-color: rgba(255,255,255,0.3); }
.ftr-hero-actions .btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* ---------- Stats inline ---------- */
.ftr-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.ftr-hero-stat { text-align: center; }
.ftr-hero-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--asb-orange-bright);
  letter-spacing: -0.02em;
  line-height: 1;
}
body.lang-bn .ftr-hero-stat-num { font-family: var(--font-bn); }
.ftr-hero-stat-label {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* ---------- Generic section heads ---------- */
.ftr-section { padding: 72px 0; background: var(--surface); }
.ftr-bg-paper { background: var(--paper); }
.ftr-section-head { text-align: center; margin-bottom: 40px; max-width: 720px; margin-left: auto; margin-right: auto; }
.ftr-section-eyebrow {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--gold-mist);
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ftr-section-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  text-wrap: balance;
}
body.lang-bn .ftr-section-title { font-family: var(--font-bn); font-size: 32px; }
.ftr-section-sub {
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1.6;
  margin: 0 auto;
}

/* ---------- How it works (steps) ---------- */
.ftr-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  position: relative;
}
.ftr-step {
  position: relative;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: all 0.22s ease;
}
.ftr-step:hover {
  border-color: var(--asb-orange);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(42, 54, 86, 0.08);
}
.ftr-step-num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 800;
  color: var(--asb-orange);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.ftr-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.ftr-step-title {
  font-family: var(--font-bn), var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.ftr-step-desc {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Features grid ---------- */
.ftr-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.ftr-feature {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: all 0.22s ease;
  display: flex;
  flex-direction: column;
}
.ftr-feature:hover {
  border-color: var(--asb-orange);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(42, 54, 86, 0.08);
}
.ftr-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-mist);
  color: var(--asb-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.ftr-feature-icon svg { width: 24px; height: 24px; }
.ftr-feature-title {
  font-family: var(--font-bn), var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.ftr-feature-desc {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Comparison ---------- */
.ftr-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}
.ftr-compare-col {
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
}
.ftr-compare-without { background: var(--paper); }
.ftr-compare-with {
  background: linear-gradient(180deg, #FFFCF5 0%, var(--surface) 100%);
  border-color: var(--asb-orange);
  box-shadow: 0 16px 40px rgba(245, 130, 32, 0.12);
}
.ftr-compare-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ftr-compare-without .ftr-compare-label { color: var(--ink-muted); }
.ftr-compare-with .ftr-compare-label { color: var(--asb-orange); }
.ftr-compare-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
body.lang-bn .ftr-compare-title { font-family: var(--font-bn); }
.ftr-compare-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ftr-compare-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.ftr-compare-without .ftr-compare-item { color: var(--ink-muted); }
.ftr-compare-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.ftr-compare-without .ftr-compare-icon {
  background: var(--paper-2);
  color: var(--ink-soft);
}
.ftr-compare-with .ftr-compare-icon {
  background: var(--gold-mist);
  color: var(--asb-orange);
}
.ftr-compare-icon svg { width: 12px; height: 12px; }

/* ---------- Integration / partner grid ---------- */
.ftr-int-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.ftr-int-card {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  align-items: flex-start;
}
.ftr-int-card:hover { border-color: var(--asb-orange); transform: translateY(-2px); }
.ftr-int-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.ftr-int-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.ftr-int-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.ftr-int-desc {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.5;
}

/* ---------- Filter pills (used on Career Paths) ---------- */
.ftr-filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.ftr-filter-pill {
  padding: 9px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  font-family: var(--font-bn), var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-3);
  cursor: pointer;
  transition: all 0.18s ease;
}
.ftr-filter-pill:hover { border-color: var(--asb-orange); color: var(--asb-orange); }
.ftr-filter-pill.is-on {
  background: var(--asb-navy);
  color: var(--paper);
  border-color: var(--asb-navy);
}

/* ---------- Path detail card (Career Paths) ---------- */
.ftr-paths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
}
.ftr-path-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.22s ease;
  display: flex;
  flex-direction: column;
}
.ftr-path-card:hover {
  border-color: var(--asb-orange);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(42, 54, 86, 0.10);
}
.ftr-path-cover {
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ftr-path-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.ftr-path-name {
  font-family: var(--font-bn), var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.ftr-path-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--asb-orange);
  text-transform: uppercase;
}
.ftr-path-body {
  padding: 18px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ftr-path-desc {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.6;
  margin: 0 0 16px;
}
.ftr-path-stages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  padding: 14px;
  border-radius: 12px;
  background: var(--paper);
}
.ftr-path-stage {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink);
}
.ftr-path-stage-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  flex-shrink: 0;
}
.ftr-path-stage.is-cur .ftr-path-stage-dot { background: var(--asb-orange); box-shadow: 0 0 0 4px var(--gold-mist); }
.ftr-path-stage-name {
  font-family: var(--font-bn), var(--font-body);
  font-weight: 600;
}
.ftr-path-stage-yrs {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  font-weight: 700;
}
.ftr-path-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.ftr-path-meta-cell {
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.ftr-path-meta-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 2px;
}
.ftr-path-meta-val {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}
.ftr-path-foot {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.ftr-path-foot .btn { width: 100%; justify-content: center; padding: 10px 14px; font-size: 13px; }
.ftr-path-foot .btn-ink svg { width: 14px; height: 14px; }

/* ---------- CTA ---------- */
.ftr-cta-section { padding: 64px 0 96px; background: var(--paper); }
.ftr-cta {
  background: linear-gradient(135deg, var(--asb-navy) 0%, #1A2240 100%);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.ftr-cta::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--asb-orange);
  opacity: 0.18;
  filter: blur(80px);
}
.ftr-cta-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  position: relative;
}
body.lang-bn .ftr-cta-title { font-family: var(--font-bn); font-size: 30px; }
.ftr-cta-sub {
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  margin: 0 auto 28px;
  max-width: 560px;
  line-height: 1.6;
  position: relative;
}
.ftr-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.ftr-cta-actions .btn-ink { background: var(--asb-orange); color: #fff; }
.ftr-cta-actions .btn-ink:hover { background: var(--gold-deep); }
.ftr-cta-actions .btn-ghost { color: var(--paper); border-color: rgba(255,255,255,0.3); }
.ftr-cta-actions .btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .ftr-section-title { font-size: 28px; }
  body.lang-bn .ftr-section-title { font-size: 24px; }
  .ftr-compare { grid-template-columns: 1fr; }
  .ftr-cta { padding: 40px 24px; }
  .ftr-cta-title { font-size: 26px; }
  body.lang-bn .ftr-cta-title { font-size: 22px; }
  .ftr-hero-stats { gap: 24px; }
}
