/* =========================================================
   SHE ASSIST — USA add-on styles
   Theme: Old Glory Red, White & Blue · Typeface: Inter
   Loaded AFTER styles.css. Only US-specific additions/overrides.
   (Base palette is remapped inside this folder's styles.css:
    red #bf0a30 · blue #0a3161 · ice-blue backgrounds.)
   ========================================================= */

/* ----- Old Glory tricolor accent: top of navbar ----- */
.navbar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    #bf0a30 0%,   #bf0a30 33.33%,
    #ffffff 33.33%, #ffffff 66.66%,
    #0a3161 66.66%, #0a3161 100%
  );
  z-index: 5;
}
.navbar { padding-top: 4px; }

/* ----- Old Glory tricolor accent: top of footer (overrides gradient bar) ----- */
.footer::before {
  height: 4px;
  background: linear-gradient(
    90deg,
    #bf0a30 0%,   #bf0a30 33.33%,
    #ffffff 33.33%, #ffffff 66.66%,
    #2e63a4 66.66%, #2e63a4 100%
  );
}

/* ----- US flag chip (Windows often won't render 🇺🇸) ----- */
.us-flag {
  display: inline-block;
  width: 22px;
  height: 15px;
  border-radius: 2px;
  border: 0.5px solid rgba(0, 0, 0, .18);
  vertical-align: -3px;
  margin: 0 3px;
  overflow: hidden;
  position: relative;
  background:
    repeating-linear-gradient(
      to bottom,
      #b22234 0, #b22234 2.14px,
      #ffffff 2.14px, #ffffff 4.28px
    );
  flex-shrink: 0;
}
/* blue canton */
.us-flag::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 44%;
  height: 53%;
  background: #3c3b6e;
}

/* ----- "USA" region tag next to the brand ----- */
.sa-brand-region,
.sa-footer-region {
  display: inline-block;
  margin-left: .45rem;
  padding: .1rem .4rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  border-radius: 5px;
  background: var(--gradient);
  color: #fff;
  vertical-align: 3px;
  text-transform: uppercase;
}

/* ----- Global legal disclaimer strip in the footer ----- */
.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 1.1rem;
  padding-top: 1rem;
  font-size: .72rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .55);
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ----- Simple checklist ----- */
.us-checklist {
  list-style: none;
  margin: .6rem 0 0;
  padding: 0;
  display: grid;
  gap: .5rem;
}
.us-checklist li {
  position: relative;
  padding-left: 1.6rem;
  font-size: .95rem;
  line-height: 1.5;
  color: var(--text);
}
.us-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--saffron); /* resolves to Old Glory Red in this folder's palette */
  font-weight: 800;
}

/* ----- US typography tuning (Inter reads tighter than Poppins) ----- */
body { letter-spacing: -0.011em; }
.assist-hero__title,
.section-title { letter-spacing: -0.025em; }
.btn-primary,
.btn-outline { letter-spacing: 0; }
