/* About Page Styles */

/* Company intro */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-label {
  text-transform: uppercase;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.about-intro-text h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--text);
}

.about-intro-text p {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-visual-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-code-lines {
  margin-bottom: 30px;
}

.code-line {
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  margin-bottom: 10px;
}

.visual-stats {
  display: flex;
  justify-content: space-around;
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
}

.stat-label {
  font-size: 14px;
  opacity: 0.8;
}

.stat-desc {
  display: block;
  font-size: 12px;
  opacity: 0.6;
  margin-top: 4px;
}

/* Founder section */
.founder-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.avatar-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -10px auto 20px;
  overflow: hidden;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.avatar-placeholder span {
  color: white;
  font-size: 36px;
  font-weight: 800;
}

.founder-avatar {
  text-align: center;
}

.founder-avatar h3 {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
}

.founder-title-desc {
  color: var(--text-secondary);
  font-size: 14px;
}

.founder-credentials {
  margin-top: 20px;
  text-align: left;
  padding: 16px;
  background: var(--primary-light);
  border-radius: 8px;
}

.founder-credentials p {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text);
}

.founder-credentials ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.founder-credentials li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.founder-credentials li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Timeline */
.founder-timeline {
  position: relative;
  padding-left: 30px;
}

.founder-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 30px;
  padding-left: 30px;
}

.timeline-dot {
  position: absolute;
  left: -30px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--primary-light);
}

.timeline-content h4 {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 15px;
}

/* Projects Section */
.projects-section {
  background: var(--white);
}

.projects-list {
  max-width: 800px;
  margin: 0 auto;
}

.project-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  transition: var(--transition);
}

.project-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.project-icon {
  color: var(--primary);
  font-size: 18px;
}

.project-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

/* Team Features */
.team-features {
  max-width: 800px;
  margin: 0 auto;
}

.team-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-feature-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.feature-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.team-feature-item p {
  font-size: 16px;
  color: var(--text);
  margin: 0;
}

/* Team description */
.team-desc {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.team-desc p {
  color: var(--text-secondary);
  line-height: 1.9;
}

/* Advantages */
.advantages-list {
  max-width: 900px;
  margin: 0 auto;
}

.advantage-item {
  display: flex;
  gap: 30px;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  transition: var(--transition);
}

.advantage-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.advantage-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.advantage-content h3 {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 600;
}

.advantage-content p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
  }
  
  .founder-grid {
    grid-template-columns: 1fr;
  }
  
  .advantage-item {
    flex-direction: column;
    gap: 16px;
  }
  
  .advantage-number {
    font-size: 36px;
  }
  
  .about-visual-box {
    min-height: auto;
    padding: 30px;
  }
}
