
.who-we-are {
  background: #ffffff;
}

.text-accent {
  color: #059669;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #a7f3d0;
  background: #ecfdf5;
  color: #047857;
}

/* ===========================================================
   About / Hero section
   =========================================================== */
.about-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 96px 0;
}

.about-container {
  position: relative;
  z-index: 2;
}

.about-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.blob-primary {
  top: -128px;
  left: -128px;
  width: 500px;
  height: 500px;
  background: #a7f3d066;
  animation: blobMove 18s infinite ease-in-out;
}

.blob-accent {
  bottom: -120px;
  right: -80px;
  width: 450px;
  height: 450px;
  background: #99f6e44d;
  animation: blobMoveReverse 22s infinite ease-in-out;
}

.blob-soft {
  top: 33%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translateX(-50%);
  background: #d1fae54d;
  filter: blur(100px);
  animation: softPulse 4s ease-in-out infinite;
}

@keyframes blobMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -40px) scale(1.1); }
  66%      { transform: translate(-20px, 25px) scale(0.95); }
}

@keyframes blobMoveReverse {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-30px, 30px) scale(1.05); }
  66%      { transform: translate(25px, -20px) scale(0.9); }
}

@keyframes softPulse {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}

.about-intro {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.about-title {
  margin-top: 24px;
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.about-description {
  max-width: 680px;
  margin: 16px auto 0;
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
}

@media (min-width: 992px) {
  .about-title { font-size: 40px; }
}

/* feature cards */
.feature-grid {
  max-width: 1100px;
  margin: 56px auto 0;
  position: relative;
  z-index: 2;
}

.vision-card {
  height: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 24px;
  transition: transform 0.5s ease, background-color 0.5s ease;
}

.vision-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.2);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: #a7f3d066;
  color: #047857;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.feature-title {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.feature-text {
  margin-top: 8px;
  font-size: 12px;
  color: #475569;
}

/* hero image */
.about-media {
  position: relative;
  max-width: 1100px;
  margin: 64px auto 0;
}

.about-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.7s ease;
}

.about-image:hover {
  transform: scale(1.02);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255, 255, 255, 0.2);
}

.play-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  0%   { transform: scale(1); opacity: 1; }
  75%, 100% { transform: scale(1.7); opacity: 0; }
}

.play-icon {
  position: relative;
  width: 24px;
  height: 24px;
  color: #ffffff;
}

/* ===========================================================
   Why Choose section
   =========================================================== */
.why-section {
  background: #f8fafc;
  padding: 96px 0;
}

.why-intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.why-badge {
  border-color: #dbeafe;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
  font-weight: 600;
}

.why-title {
  margin-top: 20px;
  font-size: 30px;
  font-weight: 700;
  color: #0f172a;
}

@media (min-width: 992px) {
  .why-title { font-size: 36px; }
}

.why-description {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

.why-grid {
  max-width: 1100px;
  margin: 64px auto 0;
}

.why-card {
  height: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 32px;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
 background: #a7f3d066;
  color: #047857;
  transition: transform 0.3s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.1);
}

.why-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.why-card-title {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
}

.why-card-text {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}

/* ===========================================================
   Stats section
   =========================================================== */
.stats-section {
  background: #047857;
  padding: 64px 0;
}

.stats-grid {
  text-align: center;
  color: #ffffff;
  row-gap: 32px;
}

.stat-number {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
}

.stat-label {
  margin-top: 8px;
  font-size: 14px;
  color: #dbeafe;
}

/* ===========================================================
   Team section
   =========================================================== */
.team-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 96px 0;
}

.team-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.team-lines svg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0.1;
}

.team-intro {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin-bottom: 56px;
}

.team-badge {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
  font-weight: 600;
}

.team-title {
  margin-top: 20px;
  font-size: 30px;
  font-weight: 700;
  color: #0f172a;
}

@media (min-width: 992px) {
  .team-title { font-size: 36px; }
}

.team-description {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

.team-grid {
  position: relative;
  z-index: 2;
}

.team-card {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 24px;
  background: #0f172a;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.7s ease, transform 0.7s ease;
}

.team-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4) 55%, transparent);
  opacity: 0.7;
}

.team-card-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px;
  color: #ffffff;
}

.team-card-inner {
  transform: translateY(32px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.team-card:hover .team-card-inner {
  transform: translateY(0);
  opacity: 1;
}

.team-role {
  font-size: 14px;
  color: #93c5fd;
}

.team-name {
  margin: 8px 0 0;
  font-size: 22px;
  font-weight: 600;
}

.team-bio {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* ===========================================================
   Reduced motion
   =========================================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}