:root {
  --ein-navy: #001938;
  --ein-gold: #FFD700;
}

/* ========================
   TITLES & HEADINGS
======================== */
.ein-title {
  font-weight: 800;
  color: var(--ein-navy);
  font-size: 1.85rem;
  position: relative;
  display: inline-block;
}
.ein-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  margin-top: .4rem;
  background: var(--ein-gold);
  border-radius: 2px;
}

.ein-subtitle {
  font-weight: 700;
  color: var(--ein-navy);
  margin-bottom: .25rem;
  position: relative;
  display: inline-block;
  font-size: 1rem;
}
.ein-subtitle::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin-top: .25rem;
  background: var(--ein-gold);
  border-radius: 2px;
}

/* ========================
   CTA SECTION
======================== */
.ein-cta {
  background: linear-gradient(135deg, var(--ein-navy), #05244f);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  border-radius: 1rem;
}
.ein-cta::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,215,0,0.35), rgba(255,215,0,0));
}
.ein-cta .ein-title {
  color: #fff;
  font-size: 1.85rem;
}
.ein-cta .ein-title::after {
  margin: .5rem auto 0;
  width: 80px;
}

/* Buttons */
.btn-ein-primary {
  background: var(--ein-gold);
  color: #000;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: .75rem 1.5rem;
  transition: all .3s ease;
}
.btn-ein-primary:hover {
  background: #e6c200;
}

.btn-outline-ein {
  border: 2px solid var(--ein-gold);
  color: #fff !important;
  font-weight: 700;
  border-radius: 12px;
  padding: .75rem 1.5rem;
  background: transparent;
  transition: all .3s ease;
}
.btn-outline-ein:hover {
  background: var(--ein-gold);
  color: #000 !important;
}

/* ========================
   IDENTITY LIST
======================== */
.ein-check {
  list-style: none;
  padding-left: 0;
  margin-top: 1.25rem;
}
.ein-check li {
  margin: 0.75rem 0;
  font-size: 1.05rem;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
}
.ein-check i {
  flex-shrink: 0;
  margin-top: .25rem;
  margin-right: .65rem;
  color: var(--ein-gold);
  font-size: 1.1rem;
}

/* ========================
   PROMISE CARDS
======================== */
.ein-promise-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.ein-promise {
  background: #fff;
  border: 1px solid #eee;
  border-left: 4px solid var(--ein-gold);
  border-radius: 10px;
  padding: 1rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ein-promise:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
}

/* ========================
   DIVISION CARDS
======================== */
.ein-division {
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid #eee;
  display: block;
  transition: all .3s ease;
  height: 100%;
}
.ein-division:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.ein-tag {
  display: inline-block;
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ein-navy);
  margin-bottom: 0.75rem;
}
.ein-division p {
  font-size: 0.85rem;
  margin: 0;
  color: #444;
}
