﻿/* ===== ABOUT PAGE ===== */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Page Hero */
.page-hero {
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 120px 5% 60px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(232,93,10,0.12) 0%, transparent 60%),
              linear-gradient(180deg, rgba(5,8,16,0.4) 0%, var(--dark) 100%);
  z-index: 0;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,93,10,0.08) 0%, transparent 70%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  margin: 10px 0 16px;
}

.page-subtitle {
  color: var(--text-muted);
  font-size: 17px;
}

/* About Grid */
.about-intro { padding: 80px 0; }

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

.about-image-wrap {
  position: relative;
}

.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-img-badge .badge-icon { font-size: 28px; }
.about-img-badge .badge-title { font-size: 13px; font-weight: 700; color: var(--gold); }
.about-img-badge .badge-sub { font-size: 11px; color: var(--text-muted); }

.about-img-stat {
  position: absolute;
  top: -20px; left: -20px;
  padding: 16px 24px;
  text-align: center;
}

.about-img-stat .stat-num {
  font-size: 32px;
  font-weight: 800;
}

.about-img-stat .stat-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  border-color: rgba(232,93,10,0.3);
  background: var(--glass-hover);
}

.highlight-icon { font-size: 24px; }

.highlight-item strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}

.highlight-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Stats Strip */
.stats-strip { padding: 40px 5%; }

.stats-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}

.stats-item { text-align: center; padding: 10px 20px; }

.stats-num {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stats-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.stats-divider {
  width: 1px;
  height: 50px;
  background: var(--glass-border);
}

/* Values */
.values-section { padding: 80px 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  padding: 36px 24px;
  text-align: center;
  transition-delay: var(--delay, 0s);
}

.value-icon { font-size: 44px; margin-bottom: 16px; display: block; }
.value-card h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Process */
.process-section { padding: 80px 0; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::after {
  content: '';
  position: absolute;
  top: 28px; left: 10%;
  width: 80%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 0;
  opacity: 0.3;
}

.process-step {
  text-align: center;
  transition-delay: var(--delay, 0s);
}

.step-num {
  font-size: 48px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.step-content {
  padding: 28px 20px;
  text-align: left;
}

.step-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.cta-section { text-align: center; }
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(232,93,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content h2 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 800; margin-bottom: 16px; }
.cta-content p { color: var(--text-muted); font-size: 17px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* Responsive */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::after { display: none; }
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { margin-bottom: 60px; }
  .about-img-badge { right: 0; }
  .about-img-stat { left: 0; }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; }
  .stats-divider { width: 80px; height: 1px; }
}

