.founder {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--darker) 0%, rgba(16, 185, 129, 0.03) 50%, var(--darker) 100%);
  position: relative;
  overflow: hidden;
}

.founder::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.founder-wrapper {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.founder-photo {
  position: relative;
}

.founder-photo-img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 2px solid var(--card-border);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
}

.founder-photo:hover .founder-photo-img {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow-primary);
}

.founder-photo::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: calc(var(--radius-xl) + 3px);
  z-index: -1;
  opacity: 0;
  transition: var(--transition-base);
}

.founder-photo:hover::before {
  opacity: 0.5;
}

.founder-content {
  text-align: left;
}

.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}

.founder-badge svg {
  width: 18px;
  height: 18px;
}

.founder-name {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.founder-role {
  font-size: 18px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 24px;
}

.founder-description {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 700px;
  margin-bottom: 32px;
}

.founder-achievements {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  margin-bottom: 32px;
  text-align: left;
}

.founder-achievement {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
}

.founder-achievement:not(:last-child) {
  border-bottom: 1px solid var(--card-border);
}

.founder-achievement-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

.founder-achievement-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.founder-stats {
  display: flex;
  justify-content: flex-start;
  gap: 60px;
  margin-bottom: 32px;
}

.founder-stat {
  text-align: left;
}

.founder-stat-value {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.founder-stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

.founder-socials {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
}

.founder-social {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.founder-social svg {
  width: 24px;
  height: 24px;
  fill: var(--text-secondary);
  transition: var(--transition-base);
}

.founder-social:hover {
  border-color: var(--primary);
  background: rgba(16, 185, 129, 0.1);
}

.founder-social:hover svg {
  fill: var(--primary);
}

.founder-social.telegram:hover {
  border-color: #26A5E4;
  background: rgba(38, 165, 228, 0.1);
}

.founder-social.telegram:hover svg {
  fill: #26A5E4;
}

.founder-social.whatsapp:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.1);
}

.founder-social.whatsapp:hover svg {
  fill: #25D366;
}

.founder-social.vk:hover {
  border-color: #0077FF;
  background: rgba(0, 119, 255, 0.1);
}

.founder-social.vk:hover svg {
  fill: #0077FF;
}

@media (max-width: 1024px) {
  .founder-wrapper {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }
  
  .founder-stats {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .founder-wrapper {
    grid-template-columns: 1fr;
  }
  
  .founder-photo {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .founder-content {
    text-align: center;
  }
  
  .founder-description {
    margin: 0 auto 32px;
  }
  
  .founder-stats {
    justify-content: center;
  }
  
  .founder-stat {
    text-align: center;
  }
  
  .founder-socials {
    justify-content: center;
  }
  
  .founder-achievements {
    text-align: center;
  }
  
  .founder-achievement {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .founder-stats {
    flex-wrap: wrap;
    gap: 24px;
  }
  
  .founder-stat {
    flex: 1 1 100px;
  }
  
  .founder-stat-value {
    font-size: 32px;
  }
  
  .founder-achievements {
    padding: 20px 24px;
  }
}
