/* ===== ABOUT PAGE - MINIMAL & ELEGANT ===== */

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(245,166,35,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--bg), transparent);
}
.about-hero .container {
  position: relative;
  z-index: 1;
}
.about-hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 24px;
  padding: 8px 20px;
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 50px;
}
.about-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 300;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.1;
}
.about-hero h1 strong {
  font-weight: 700;
  display: block;
}
.about-hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.6;
}

/* Story Section */
.about-story {
  padding: 100px 0;
  background: var(--bg);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-image {
  position: relative;
}
.about-story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.about-story-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--secondary);
  border-radius: 4px;
  z-index: -1;
}
.about-story-content h2 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
}
.about-story-content h3 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.2;
}
.about-story-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Stats Section */
.about-stats-section {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.about-stat-item {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}
.about-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: var(--border);
}
.about-stat-number {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 200;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}
.about-stat-number span {
  font-weight: 600;
  color: var(--secondary);
}
.about-stat-label {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Values Section */
.about-values {
  padding: 100px 0;
  background: var(--bg);
}
.about-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.about-section-header h2 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
}
.about-section-header h3 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.about-section-header p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-value-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}
.about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}
.about-value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(26,43,74,0.05) 0%, rgba(245,166,35,0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.about-value-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.about-value-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA Section */
.about-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(245,166,35,0.1) 0%, transparent 60%);
}
.about-cta .container {
  position: relative;
  z-index: 1;
}
.about-cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  color: white;
  margin-bottom: 16px;
}
.about-cta h2 strong {
  font-weight: 700;
}
.about-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.about-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-story-grid {
    gap: 40px;
  }
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 80px 0 60px;
  }
  .about-story {
    padding: 60px 0;
  }
  .about-story-grid {
    grid-template-columns: 1fr;
  }
  .about-story-image {
    order: -1;
  }
  .about-story-image img {
    height: 300px;
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-stat-item:not(:last-child)::after {
    display: none;
  }
  .about-values-grid {
    grid-template-columns: 1fr;
  }
  .about-value-card {
    padding: 30px 24px;
  }
}
