/* ============================================
   Tiger Net BD — About Page Styles
   ============================================ */

.mission-vision {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.mv-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
}

.mv-card .mv-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(20, 184, 166, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.mv-card .mv-icon .icon-svg { width: 24px; height: 24px; }

.mv-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.mv-card p { color: var(--text-secondary); line-height: 1.8; }

/* Stats */
.about-stats { background: var(--bg-card); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.stat-card { text-align: center; padding: 1.75rem; }

.stat-card .stat-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-light);
  margin-bottom: 0.4rem;
}

.stat-card .stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* Why Choose */
.why-choose { background: var(--bg-dark); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-card { padding: 1.75rem; text-align: center; }

.why-card .why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary-light);
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.12);
}

.why-card .why-icon .icon-svg { width: 26px; height: 26px; }

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.why-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

@media (max-width: 768px) {
  .mv-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* Premium Card Design for About Page */
.premium-card {
  position: relative;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--radius-lg, 1rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.premium-card .card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 60%);
  pointer-events: none;
  animation: pulse-glow 8s infinite alternate ease-in-out;
}
@keyframes pulse-glow {
  0% { transform: scale(0.8) translate(0, 0); }
  100% { transform: scale(1.1) translate(5%, 5%); }
}
.premium-card .premium-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 15px rgba(20, 184, 166, 0.3));
}
.premium-card .premium-badge {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-gold, linear-gradient(90deg, #FACC15, #F59E0B));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.premium-card .premium-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}
.premium-card .premium-text strong {
  color: var(--primary-light, #5eead4);
  font-weight: 600;
}
