.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-main {
  width: 100%;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 24px 32px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  text-align: center;
  animation: float 4s ease-in-out infinite;
}

.about-badge-number {
  font-size: 3.5rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-content p {
  color: var(--gray-600);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-content p:last-of-type {
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  transition: all var(--transition-base);
}

.about-feature:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateX(6px);
}

.about-feature:hover .about-feature-text h4,
.about-feature:hover .about-feature-text p {
  color: var(--white);
}

.about-feature:hover .about-feature-icon {
  background: var(--white);
  color: var(--accent);
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9375rem;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.about-feature-text h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
  transition: color var(--transition-base);
}

.about-feature-text p {
  font-size: 0.8125rem;
  color: var(--gray-600);
  margin-bottom: 0;
  line-height: 1.4;
  transition: color var(--transition-base);
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-badge {
    left: 20px;
  }
}

@media (max-width: 576px) {
  .about-content h2 {
    font-size: 2rem;
  }
  
  .about-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 24px;
  }
  
  .about-feature {
    flex-direction: column;
    text-align: center;
  }
  
  .about-feature-icon {
    margin: 0 auto;
  }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.pillar-card {
  background: linear-gradient(145deg, var(--white) 0%, #f8f9fc 100%);
  border-radius: var(--border-radius-xl);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: 0 10px 40px rgba(27, 60, 97, 0.08);
  border: 1px solid rgba(74, 144, 217, 0.1);
  opacity: 0;
  transform: translateY(30px);
}

.pillar-card.animate-on-scroll.visible {
  animation: slideInUp 0.6s ease forwards;
}

.value-elaborate-card.animate-on-scroll.visible {
  animation: slideInUp 0.6s ease forwards;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.value-elaborate-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--border-radius-xl);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.value-elaborate-card.animate-on-scroll {
  animation: slideInUp 0.6s ease forwards;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(27, 60, 97, 0.15);
  border: 2px solid var(--accent);
}

.pillar-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 8px 25px rgba(27, 60, 97, 0.25);
  position: relative;
}

.pillar-icon svg {
  width: 40px;
  height: 40px;
  position: absolute;
}

.pillar-icon-svg {
  width: 80px !important;
  height: 80px !important;
  background: var(--gradient-primary) !important;
  border-radius: 50% !important;
  margin: 0 auto 28px !important;
  padding: 20px !important;
  box-shadow: 0 8px 25px rgba(27, 60, 97, 0.25) !important;
  display: block !important;
}

.pillar-icon-circle {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 8px 25px rgba(27, 60, 97, 0.25);
}

.pillar-icon-circle img {
  width: 40px;
  height: 40px;
}

.pillar-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
}

.pillar-card h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--gradient-accent);
  margin: 16px auto 0;
  border-radius: 2px;
}

.pillar-card p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 0;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.value-card:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.value-card:hover h3,
.value-card:hover p {
  color: var(--white);
}

.value-card:hover .value-icon {
  background: var(--white);
  color: var(--accent);
}

.value-icon {
  width: 72px;
  height: 72px;
  background: var(--accent);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.75rem;
  margin: 0 auto 24px;
  box-shadow: 0 4px 15px rgba(74, 144, 217, 0.4);
  transition: all var(--transition-base);
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  transition: color var(--transition-base);
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin-bottom: 0;
  line-height: 1.7;
  transition: color var(--transition-base);
}

.values-elaborate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.value-elaborate-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 144, 217, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.value-elaborate-card:hover::before {
  opacity: 1;
}

.value-elaborate-card:hover {
  background: linear-gradient(145deg, rgba(74, 144, 217, 0.3) 0%, rgba(74, 144, 217, 0.15) 100%);
  border-color: rgba(74, 144, 217, 0.5);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.value-elaborate-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.75rem;
  margin: 0 auto 24px;
  box-shadow: none;
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
}

.value-elaborate-card:hover .value-elaborate-icon {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.value-elaborate-content {
  position: relative;
  z-index: 1;
}

.value-elaborate-content h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.value-elaborate-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .values-grid,
  .pillars-grid,
  .values-elaborate-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
  padding-left: 80px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
  border-radius: var(--border-radius-full);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateX(-30px);
}

.timeline-item.animate-on-scroll.visible {
  animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.timeline-item:hover {
  opacity: 1 !important;
  transform: translateX(0) !important;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateX(12px);
  box-shadow: var(--shadow-lg);
}

.timeline-item:hover h3,
.timeline-item:hover p {
  color: var(--white);
}

.timeline-item:hover .timeline-year {
  background: var(--white);
  color: var(--accent);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -64px;
  top: 32px;
  width: 24px;
  height: 24px;
  background: var(--accent);
  border: 5px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--accent);
  transition: all var(--transition-base);
}

.timeline-item:hover .timeline-dot {
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 6px rgba(74, 144, 217, 0.3);
}

.timeline-year {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--border-radius-full);
  margin-bottom: 12px;
  transition: all var(--transition-base);
}

.timeline-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  transition: color var(--transition-base);
}

.timeline-content p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin-bottom: 0;
  line-height: 1.6;
  transition: color var(--transition-base);
}

@media (max-width: 768px) {
  .timeline {
    padding-left: 60px;
  }
  
  .timeline::before {
    left: 16px;
  }
  
  .timeline-dot {
    left: -44px;
    width: 20px;
    height: 20px;
  }
  
  .timeline-item {
    padding: 20px 24px;
  }
}

.timeline-alt {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 0%;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(74, 144, 217, 0.3) 100%);
  transform: translateX(-50%);
  border-radius: 2px;
  transition: height 0.1s ease-out;
}

.timeline-item-alt {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  opacity: 0;
}

.timeline-item-alt:last-child {
  margin-bottom: 0;
}

.timeline-item-alt.left {
  justify-content: flex-start;
  padding-right: calc(50% + 40px);
  animation: slideInLeft 0.6s ease forwards;
}

.timeline-item-alt.right {
  justify-content: flex-end;
  padding-left: calc(50% + 40px);
  animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.timeline-item-alt.left.visible {
  animation: slideInLeft 0.6s ease forwards;
}

.timeline-item-alt.right.visible {
  animation: slideInRight 0.6s ease forwards;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(27, 60, 97, 0.3);
  z-index: 2;
}

.timeline-marker span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.75rem;
}

.timeline-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: 0 10px 40px rgba(27, 60, 97, 0.1);
  border: 1px solid var(--gray-200);
  max-width: 420px;
  transition: all var(--transition-base);
}

.timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(27, 60, 97, 0.15);
  border-color: var(--accent);
}

.timeline-year-alt {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--border-radius-full);
  margin-bottom: 16px;
}

.timeline-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.timeline-card p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .timeline-alt {
    padding: 20px 0;
  }
  
  .timeline-line {
    left: 30px;
  }
  
  .timeline-item-alt.left,
  .timeline-item-alt.right {
    padding: 0 0 0 80px;
    justify-content: flex-start;
    animation: slideInLeft 0.6s ease forwards;
  }
  
  .timeline-marker {
    left: 30px;
    width: 50px;
    height: 50px;
  }
  
  .timeline-marker span {
    font-size: 0.65rem;
  }
  
  .timeline-card {
    max-width: 100%;
  }
}

.feature-card-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-base);
}

.feature-card-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-card-glass h3 {
  color: var(--white);
}

.feature-card-glass p {
  color: rgba(255, 255, 255, 0.8);
}

.feature-card-glass .feature-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.feature-card-glass:hover .feature-icon {
  background: var(--gradient-accent);
}
