.about-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-color: var(--primary);
  overflow: hidden;
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 194, 168, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 194, 168, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.about-hero__bg-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 194, 168, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.about-hero__bg-glow-2 {
  position: absolute;
  bottom: -150px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 194, 168, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.about-hero__bg-shape {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 48%;
  background: linear-gradient(135deg, rgba(0,194,168,0.07) 0%, rgba(11,31,58,0) 60%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Floating decorative dots */
.about-hero__dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.about-hero__dot {
  position: absolute;
  border-radius: 50%;
  background: var(--secondary);
  opacity: 0.18;
  animation: heroFloat linear infinite;
}
.about-hero__dot:nth-child(1) { width:6px; height:6px; top:18%; left:12%; animation-duration:9s; animation-delay:0s; }
.about-hero__dot:nth-child(2) { width:4px; height:4px; top:60%; left:8%;  animation-duration:12s; animation-delay:2s; }
.about-hero__dot:nth-child(3) { width:8px; height:8px; top:35%; left:28%; animation-duration:14s; animation-delay:1s; }
.about-hero__dot:nth-child(4) { width:5px; height:5px; top:75%; left:40%; animation-duration:11s; animation-delay:3s; }
.about-hero__dot:nth-child(5) { width:3px; height:3px; top:22%; left:55%; animation-duration:8s;  animation-delay:0.5s; }

@keyframes heroFloat {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-18px); }
}

/* Content layout */
.about-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-xl) 0;
  width: 100%;
}

/* Left — text */
.about-hero__content {}

.about-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: var(--space-md);
}
.about-hero__eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.about-hero__title {
  font-family: var(--font-primary);
  font-size: clamp(2.4rem, 4.2vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}
.about-hero__title em {
  font-style: normal;
  color: var(--secondary);
  position: relative;
}
.about-hero__title em::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--secondary), transparent);
  border-radius: 2px;
}

.about-hero__desc {
  font-family: var(--font-secondary);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: var(--space-lg);
}

.about-hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(0,194,168,0.3);
}
.btn-primary:hover {
  background: #00d9bb;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,194,168,0.45);
}
.btn-primary svg { flex-shrink: 0; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.25);
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}
.btn-outline:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  background: rgba(0,194,168,0.06);
  transform: translateY(-2px);
}

/* Right — image/visual card */
.about-hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.about-hero__img-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.about-hero__img-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #0d2744, #0f3358);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,194,168,0.12);
}

.about-hero__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  transition: opacity 0.4s;
}
.about-hero__img-frame img:hover { opacity: 1; }

/* Teal border accent top-left */
.about-hero__img-frame::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px;
  width: 80px; height: 80px;
  border-top: 3px solid var(--secondary);
  border-left: 3px solid var(--secondary);
  border-radius: var(--radius-md) 0 0 0;
  z-index: 2;
}
/* Bottom-right */
.about-hero__img-frame::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: 80px; height: 80px;
  border-bottom: 3px solid var(--secondary);
  border-right: 3px solid var(--secondary);
  border-radius: 0 0 var(--radius-md) 0;
  z-index: 2;
}

/* Overlay gradient at bottom */
.about-hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,0.55) 0%, transparent 55%);
  z-index: 1;
}

/* Floating badge on image */
.about-hero__badge {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  z-index: 4;
  min-width: 190px;
}
.about-hero__badge-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), #1a3a5e);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-hero__badge-icon svg { color: var(--secondary); }
.about-hero__badge-text strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}
.about-hero__badge-text span {
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  color: var(--text-light);
  white-space: nowrap;
}

/* Stats strip floating top-right */
.about-hero__stats-pill {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--secondary);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 30px rgba(0,194,168,0.4);
  z-index: 4;
}
.about-hero__stats-pill-item {
  text-align: center;
}
.about-hero__stats-pill-item strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}
.about-hero__stats-pill-item span {
  font-family: var(--font-secondary);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(11,31,58,0.75);
  white-space: nowrap;
}
.about-hero__stats-pill-divider {
  width: 1px;
  height: 32px;
  background: rgba(11,31,58,0.2);
}

/* Scroll indicator */
.about-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}
.about-hero__scroll span {
  font-family: var(--font-secondary);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.about-hero__scroll-line {
  width: 1.5px;
  height: 36px;
  background: linear-gradient(to bottom, var(--secondary), transparent);
  border-radius: 2px;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}
/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .about-hero__inner { gap: var(--space-lg); }
}

@media (max-width: 900px) {
  .about-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 80px 0 100px;
  }
  .about-hero__desc { margin-inline: auto; }
  .about-hero__cta-group { justify-content: center; }
  .about-hero__visual { justify-content: center; }
  .about-hero__img-wrap { max-width: 460px; }
  .about-hero__stats-pill { top: auto; right: 0; bottom: -16px; }
  .about-hero__badge { left: 0; bottom: -20px; }
  .about-hero__bg-shape { display: none; }
}

@media (max-width: 640px) {
  .about-hero { min-height: auto; }
  .about-hero__title { font-size: 2rem; }
  .about-hero__img-wrap { max-width: 100%; }
  .about-hero__stats-pill { display:none; }
  .about-hero__badge { left: 16px; }
}
