.active-nav { color: var(--primary) !important; }

/* ===== ABOUT HERO ===== */
.about-hero {
  background: linear-gradient(135deg, #0a0300 0%, #150600 40%, #2a1000 100%);
  padding: 150px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.about-hero-content h1 { font-size: 2.8rem; font-weight: 800; color: var(--white); margin: 14px 0; line-height: 1.2; }
.about-hero-content p { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.8; margin-bottom: 36px; }
.about-hero-particles { position: absolute; inset: 0; pointer-events: none; }
.about-hero-particles span { position: absolute; border-radius: 50%; background: rgba(232,96,10,0.1); animation: floatParticle 8s ease-in-out infinite; }
.about-hero-particles span:nth-child(1) { width: 300px; height: 300px; top: -100px; left: -80px; }
.about-hero-particles span:nth-child(2) { width: 200px; height: 200px; bottom: -60px; right: 5%; animation-delay: 2s; }
.about-hero-particles span:nth-child(3) { width: 120px; height: 120px; top: 30%; right: 15%; animation-delay: 4s; }

.about-hero-stats {
  display: inline-flex;
  align-items: center;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px 24px;
  backdrop-filter: blur(12px);
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.ah-stat { text-align: center; padding: 0 20px; }
.ah-stat span { display: block; font-size: 1.8rem; font-weight: 800; color: var(--white); line-height: 1; }
.ah-stat p { font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.ah-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* ===== WHO WE ARE ===== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-intro-img { position: relative; }
.about-intro-img img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); object-fit: cover; height: 420px; }
.about-intro-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}
.about-intro-badge i { font-size: 1.8rem; opacity: 0.8; }
.about-intro-badge span { display: block; font-size: 0.75rem; opacity: 0.8; }
.about-intro-badge p { font-size: 1.1rem; font-weight: 800; margin: 0; }
.about-intro-text p { color: var(--gray); line-height: 1.8; margin-bottom: 14px; font-size: 0.95rem; }
.about-intro-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.about-intro-tags span {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(232,96,10,0.08); color: var(--primary);
  border: 1px solid rgba(232,96,10,0.2);
  padding: 6px 14px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
}

/* ===== MISSION VISION VALUES ===== */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mvv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(232,96,10,0.2); }
.mvv-card.featured { border-color: var(--primary); background: linear-gradient(135deg, #fff8f3, #fff); box-shadow: 0 8px 30px rgba(232,96,10,0.15); }
.mvv-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 8px 24px rgba(232,96,10,0.3); }
.mvv-icon i { font-size: 1.5rem; color: var(--white); }
.mvv-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.mvv-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.8; }

/* ===== ADVANTAGE GRID ===== */
.advantage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.advantage-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
  box-shadow: var(--shadow-sm);
}
.advantage-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--primary-light)); transform: scaleX(0); transition: transform 0.35s; transform-origin: left; }
.advantage-card:hover::after { transform: scaleX(1); }
.advantage-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(232,96,10,0.12); border-color: rgba(232,96,10,0.2); }
.advantage-num { font-size: 3.5rem; font-weight: 900; color: rgba(232,96,10,0.07); line-height: 1; position: absolute; top: 12px; right: 16px; letter-spacing: -2px; }
.advantage-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: 0 6px 20px rgba(232,96,10,0.3); transition: transform 0.3s; }
.advantage-card:hover .advantage-icon { transform: scale(1.1) rotate(-5deg); }
.advantage-icon i { font-size: 1.3rem; color: var(--white); }
.advantage-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.advantage-card p { color: var(--gray); font-size: 0.85rem; line-height: 1.7; }

/* ===== TIMELINE ===== */
.timeline { position: relative; max-width: 750px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 80px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--primary), var(--primary-light)); }
.timeline-item { display: flex; gap: 30px; margin-bottom: 40px; align-items: flex-start; position: relative; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-year {
  min-width: 80px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  text-align: right;
  padding-top: 4px;
  flex-shrink: 0;
}
.timeline-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  flex: 1;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.timeline-content::before {
  content: '';
  position: absolute;
  left: -8px; top: 14px;
  width: 14px; height: 14px;
  background: var(--primary);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(232,96,10,0.2);
}
.timeline-content:hover { border-color: var(--primary); box-shadow: 0 8px 24px rgba(232,96,10,0.12); }
.timeline-content h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.timeline-content p { color: var(--gray); font-size: 0.87rem; line-height: 1.7; }

/* ===== CLIENTS GRID ===== */
.clients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.client-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.client-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(232,96,10,0.12); border-color: rgba(232,96,10,0.2); }
.client-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 6px 20px rgba(232,96,10,0.3); }
.client-icon i { font-size: 1.3rem; color: var(--white); }
.client-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.client-card p { color: var(--gray); font-size: 0.83rem; line-height: 1.7; }

/* ===== CTA STRIP ===== */
.cta-strip { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 60px 24px; }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-strip h2 { font-size: 1.8rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.cta-strip p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.cta-strip-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-strip .btn-primary { background: var(--white); color: var(--primary); box-shadow: none; }
.cta-strip .btn-primary:hover { background: var(--light-bg); transform: translateY(-2px); }
.cta-strip .btn-whatsapp { background: #25D366; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .about-hero-content h1 { font-size: 2rem; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-intro-img img { height: 300px; }
  .about-intro-badge { bottom: -16px; right: -8px; }
  .mvv-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 60px; }
  .timeline-year { min-width: 60px; font-size: 0.85rem; }
}
@media (max-width: 768px) {
  .about-hero { padding: 120px 16px 60px; }
  .about-hero-content h1 { font-size: 1.7rem; }
  .advantage-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .ah-stat { padding: 0 12px; }
  .ah-stat span { font-size: 1.4rem; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-btns { justify-content: center; }
}
@media (max-width: 480px) {
  .about-hero-content h1 { font-size: 1.5rem; }
  .clients-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 0; }
  .timeline::before { left: 50px; }
  .timeline-year { min-width: 50px; font-size: 0.78rem; }
  .ah-divider { display: none; }
  .about-hero-stats { gap: 8px; }
}
