﻿/* ============================
   NFA TRUST PAGE STYLES
   ============================ */

:root {
  --bg-dark: #0b0b0b;
  --text-light: #f5f5f5;
  --accent-red: #ff0000;
  --accent-gold: #d4af37;
  --font-header: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* HERO */
.hero-nfa {
  padding: 4rem 1.5rem;
  text-align: center;
  color: #fff;
  border-bottom: 3px solid var(--accent-red);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-nfa::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.9)
  );
}

.hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.hero-nfa h1 {
  font-family: var(--font-header);
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-nfa p {
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero-highlight {
  font-size: 1.1rem;
  color: #ffdddd;
  margin-top: 1rem;
  font-weight: 600;
}

.hero-cta {
  margin-top: 2rem;
}

.hero-cta a {
  display: inline-block;
  background-color: var(--accent-red);
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background 0.25s ease;
}

.hero-cta a:hover {
  background-color: #cc0000;
}

/* SECTION TITLES */
.section-title {
  font-size: 2rem;
  font-family: var(--font-header);
  color: var(--accent-red);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.section-subtext {
  max-width: 900px;
  margin: 0.5rem auto 0;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #ddd;
}

/* TWO COLUMN */
.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.two-column > div {
  flex: 1 1 300px;
  min-width: 0;
}

/* INFO CARDS */
.info-card {
  background-color: #161616;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 1.5rem;
  flex: 1 1 260px;
  max-width: 350px;
}

.info-card h3 {
  font-family: var(--font-header);
  font-size: 1.3rem;
  color: var(--accent-gold);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.info-card p {
  margin: 0;
  font-size: 0.98rem;
  color: #e0e0e0;
  line-height: 1.6;
}

/* PRICING CARDS */
.card-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 0 1rem;
  flex-wrap: wrap;
}

.card-col {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-card {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 0 12px rgba(255, 153, 0, 0.15);
  padding: 2rem 1.5rem;
  text-align: center;
  width: 100%;
  background-color: #161616;
}

.pricing-card h3 {
  font-family: var(--font-header);
  font-size: 1.6rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.pricing-amount {
  font-size: 2rem;
  color: #fff;
  margin: 0.5rem 0 0.25rem;
}

.pricing-note {
  font-size: 0.95rem;
  color: #ccc;
  margin-top: 0.25rem;
}

/* POPULAR TAG */
.pricing-card .popular-tag {
  display: block;
  text-align: center;
  background-color: var(--accent-gold);
  color: #000;
  font-family: var(--font-header);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin: 0 auto 0.75rem auto;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  width: fit-content;
}

/* DISCLAIMER */
.disclaimer-box {
  background-color: #111;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 1.5rem;
  font-size: 0.9rem;
  color: #b0b0b0;
  max-width: 900px;
  margin: 1.5rem auto 0;
  text-align: center;
}

/* FAQ */
.faq-item {
  margin-bottom: 1.2rem;
  text-align: left;
}

.faq-item strong {
  color: var(--accent-gold);
}

/* CTA BUTTONS */
.add-trust-btn {
  display: inline-block;
  background-color: var(--accent-red);
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background 0.25s ease;
  margin-top: 1.5rem;
  cursor: pointer;
  border: none;
}

.add-trust-btn:hover {
  background-color: #cc0000;
}

.cta-center {
  text-align: center;
  margin-top: 1.5rem;
}

.cta-center a {
  display: inline-block;
  background-color: var(--accent-red);
  color: #fff;
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background 0.25s ease;
}

.cta-center a:hover {
  background-color: #cc0000;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-nfa {
    padding: 3rem 1rem;
  }
  .hero-nfa h1 {
    font-size: 2.2rem;
  }
}
