/* ===== Brand tokens ===== */
:root{
  --miq-blue:   #183B66;
  --miq-orange: #F39200;
  --ink-700:    #23384d;
  --ink-600:    #314b63;
  --line:       #e7edf5;
  --card-shadow: 0 8px 24px rgba(24, 59, 102, .08);

  /* Same diagonal gradient used in Clients band */
  --band-grad: linear-gradient(135deg, #eef3f8 0%, #f7fafc 48%, #fff1df 100%);
}

main{
    overflow: hidden;
}

/* ===== HERO (centered, tidy spacing, clients-like gradient) ===== */
.about-hero{
  background: var(--band-grad);
  min-height: 64vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: hidden;
}
.about-hero__copy{
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 10px 0 10px;
}
.about-hero h1{
  margin: 15px 0 15px;
  line-height: 1.5;
  font-size: 3rem;
}
.about-hero .lead{
  max-width: 920px;
  color: var(--ink-600);
  line-height: 1.7;
  margin: 10px 0 10px;
  font-size: 1.2rem;
}
.about-hero .cta{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Tag styled as a pill */
.tag.tag--pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .15px;
  color: var(--miq-blue);
  background: rgba(24,59,102,.06);
  border: 1px solid rgba(24,59,102,.15);
  box-shadow: 0 2px 10px rgba(24,59,102,.08);
}
.tag.tag--pill::before{
  content:"";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--miq-orange);
  box-shadow: 0 0 0 3px rgba(243,146,0,.20);
}

/* ===== Mission + Vision (side-by-side, gradient cards) ===== */
.about-duo{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 24px auto 0;
  padding: 0 16px;
}
.about-card{
  background: var(--band-grad);
  border: 1px solid var(--line);
  border-left: 6px solid var(--miq-orange);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  padding: 24px;
}

/* Headings with centered accent underline */
.section-title{
  color: var(--miq-blue);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .2px;
  font-size: clamp(1.25rem, 1.2vw + 1rem, 1.625rem);
  text-align: center;
  margin: 0 0 10px;
  position: relative;
}
.section-title::after{
  content: "";
  display: block;
  width: 64px; height: 3px;
  background: var(--miq-orange);
  border-radius: 2px;
  margin: 8px auto 0;
}

/* Card copy */
.about-card p{
  margin: 8px 0 0;
  color: var(--ink-700);
  line-height: 1.85;
  font-size: clamp(1rem, 0.35vw + 0.98rem, 1.125rem);
}

/* Spacing before “What Sets Us Apart” block */
section[aria-labelledby="sets-us-apart-title"]{
  margin-top: 32px;
}

/* ===== Responsive ===== */
@media (max-width: 900px){
  .about-hero{ min-height: 56vh; padding: 24px 0; }
  .about-duo{ grid-template-columns: 1fr; gap: 18px; }
  .about-card{ padding: 20px; border-left-width: 5px; border-radius: 14px; }
  .section-title::after{ width: 56px; }
}
