.about-hero{
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-h));  
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about-bg{
  position: absolute;
  inset: 0;
  background-image: url("../../images/image-3.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.about-inner{
  width: 100%;
  max-width: 1200px;
  padding: clamp(16px, 4vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 3.2vw, 22px);
}
.about-pill{
  background: #0E0062;
  color: #fff;
  font-weight: 900;
  font-size: clamp(18px, 3.3vw, 36px);
  padding: clamp(8px, 1.4vw, 12px) clamp(14px, 2.4vw, 28px);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
  text-align: center;
  margin: 0 auto;
  position: relative;
}
.about-arrow{
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%) rotate(12deg);
  width: 40px;
  height: 40px;
  border: 4px solid #fff;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}
.about-band{
  position: relative;
  width: 100%;    
  max-width: none;     
  
  background: linear-gradient(90deg, #0e2144 0%, #1c3f77 50%, #2b67b6 100%);
  color: #fff;

  padding: clamp(20px, 3vw, 32px);
  border-radius: 0;
  text-align: center;

  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.about-inner{
  width: 100%;
  max-width: none; 
  padding: 0;    
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 3.2vw, 22px);
}
.about-headline{
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 800;
  margin: 0 0 10px;
}

.about-copy{
  margin: 0 auto;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.6;
  max-width: 1000px;
}
.about-headline{
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 800;
  margin: 0 0 10px;
}
.about-copy{
  margin: 0 auto;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.6;
  max-width: 1000px;
}
@media (max-width: 620px){
  .about-hero{ height: auto; min-height: 520px; }
  .about-arrow{ display: none; }
}
