/**
 * Features page (/features/) — brochure layout, scoped to avoid Bootstrap/global clashes.
 * Header/footer keep site navy/gold; page body matches the approved Features overview.
 */
.fa-features-hero {
  --fa-navy: #0f1e36;
  --fa-gold: #c9a24d;
  --fa-gold-light: #e1c27a;
  width: min(1180px, calc(100% - 40px));
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 0 56px;
  text-align: left;
}

.fa-features-hero .fa-features-eyebrow {
  color: var(--fa-gold-light);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 0 0 14px;
}

.fa-features-hero h1 {
  color: #ffffff;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.15;
  max-width: 900px;
  margin: 0 0 22px;
  font-weight: 600;
}

.fa-features-hero p {
  color: #eef4f8;
  max-width: 880px;
  font-size: 1.12rem;
  line-height: 1.6;
  margin: 0 0 12px;
}

.fa-features-hero .fa-features-audience {
  margin-top: 18px;
  color: var(--fa-gold-light);
  font-weight: 700;
}

.fa-features-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.fa-features-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none !important;
  font-weight: 700;
  line-height: 1.2;
  border: 2px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.fa-features-btn:hover,
.fa-features-btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.fa-features-btn--gold {
  background: linear-gradient(135deg, #ddb548, #c9a24d);
  color: #0f1e36;
}

.fa-features-btn--gold:hover {
  box-shadow: 0 8px 18px rgba(201, 162, 77, 0.28);
  color: #0f1e36;
}

.fa-features-btn--outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
  background: transparent;
}

.fa-features-btn--outline:hover {
  border-color: #c9a24d;
  color: #ffffff;
}

.fa-features-btn--navy-outline {
  border-color: rgba(15, 30, 54, 0.35);
  color: #0f1e36;
  background: transparent;
}

.fa-features-btn--navy-outline:hover {
  border-color: #c9a24d;
  color: #0f1e36;
}

body:has(.fa-features) .banner.hero-banner-inner-page {
  border-bottom: 7px solid #c9a24d;
}

.fa-features {
  --fa-navy: #0f1e36;
  --fa-navy-2: #173a59;
  --fa-gold: #c9a24d;
  --fa-gold-light: #e1c27a;
  --fa-ink: #18324a;
  --fa-muted: #667587;
  --fa-line: #d5dee5;
  --fa-soft: #f4f6f8;
  --fa-white: #ffffff;
  --fa-max: 1180px;
  --fa-radius: 20px;
  --fa-shadow: 0 10px 30px rgba(16, 43, 70, 0.08);
  color: var(--fa-ink);
  background: var(--fa-white);
  line-height: 1.6;
}

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

.fa-features a {
  color: inherit;
}

.fa-features-wrap {
  width: min(var(--fa-max), calc(100% - 40px));
  margin: 0 auto;
}

.fa-features-section {
  padding: 72px 0;
}

.fa-features-section--soft {
  background: var(--fa-soft);
}

.fa-features h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--fa-navy);
  font-weight: 650;
}

.fa-features h3 {
  font-size: 1.15rem;
  line-height: 1.3;
  margin: 0 0 10px;
  color: var(--fa-navy);
  font-weight: 700;
}

.fa-features-intro {
  max-width: 900px;
  color: var(--fa-muted);
  margin: 0 0 34px;
  font-size: 1.05rem;
}

.fa-features-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.fa-features-cards--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fa-features-card,
.fa-features-step {
  background: var(--fa-white);
  border: 1px solid var(--fa-line);
  border-radius: var(--fa-radius);
  padding: 26px;
  box-shadow: var(--fa-shadow);
  position: relative;
  transform: translateY(0) scale(1);
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.fa-features-card:hover,
.fa-features-card:focus-within,
.fa-features-step:hover,
.fa-features-step:focus-within {
  z-index: 1;
  transform: translateY(-4px) scale(1.025);
  background: #f8f4ea;
  border-color: var(--fa-gold-light);
  box-shadow: 0 18px 38px rgba(16, 43, 70, 0.14);
}

@media (prefers-reduced-motion: reduce) {
  .fa-features-card,
  .fa-features-step {
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .fa-features-card:hover,
  .fa-features-card:focus-within,
  .fa-features-step:hover,
  .fa-features-step:focus-within {
    transform: none;
  }
}

.fa-features-card h3 {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.fa-features-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--fa-gold);
  flex: 0 0 12px;
  margin-top: 6px;
}

.fa-features-card p {
  margin: 0;
  color: var(--fa-ink);
}

.fa-features-pricing {
  margin-top: 30px;
  background: linear-gradient(135deg, #ddb548, #c9a24d);
  color: var(--fa-navy);
  border-radius: var(--fa-radius);
  padding: 30px;
}

.fa-features-pricing h3 {
  font-size: 1.45rem;
  margin-bottom: 16px;
  color: var(--fa-navy);
}

.fa-features-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 14px;
}

.fa-features-price {
  font-size: 1.35rem;
  font-weight: 800;
}

.fa-features-pricing p {
  margin: 0 0 10px;
}

.fa-features-pricing p:last-child {
  margin-bottom: 0;
}

.fa-features-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.fa-features-step p {
  margin: 0;
}

.fa-features-step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--fa-gold);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 800;
  margin-bottom: 18px;
}

.fa-features-control {
  margin-top: 34px;
  padding: 30px;
  border-radius: var(--fa-radius);
  background: var(--fa-navy);
  color: #ffffff;
}

.fa-features-control h3 {
  font-size: 1.4rem;
  color: #ffffff;
}

.fa-features-control p {
  color: #eef4f8;
  margin: 0 0 12px;
}

.fa-features-control p:last-child {
  margin-bottom: 0;
}

.fa-features-workflow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.fa-features-workflow span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--fa-line);
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fa-ink);
}

.fa-features-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 18px;
}

.fa-features-industries a {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  color: var(--fa-navy);
  font-weight: 650;
}

.fa-features-industries a:hover,
.fa-features-industries a:focus-visible {
  color: #8a6d2c;
  outline: none;
}

.fa-features-final {
  background: var(--fa-navy);
  color: #ffffff;
  border-radius: var(--fa-radius);
  padding: 38px;
}

.fa-features-final h2 {
  color: #ffffff;
}

.fa-features-final p {
  color: #eef4f8;
  margin: 0 0 14px;
  max-width: 860px;
}

.fa-features-final strong {
  color: var(--fa-gold-light);
}

@media (max-width: 900px) {
  .fa-features-hero {
    padding: 16px 0 40px;
  }

  .fa-features-cards,
  .fa-features-cards--three,
  .fa-features-steps,
  .fa-features-price-grid {
    grid-template-columns: 1fr;
  }

  .fa-features-section {
    padding: 54px 0;
  }

  .fa-features-final,
  .fa-features-pricing,
  .fa-features-control {
    padding: 26px;
  }
}
