/* ABOUT PAGE - PREMIUM GRID & TIMELINE LAYOUT STYLES */

.about-hero {
  padding: 8rem 0 4rem;
  text-align: center;
  background: linear-gradient(to bottom, var(--c-bg), var(--c-surface));
  border-bottom: 1px solid var(--c-border);
}

.about-hero .label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-primary-l);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.about-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
}

.about-hero p {
  font-size: 1.25rem;
  color: var(--c-text-2);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* SECTION PADDING HELPER */
.section-padding {
  padding: 6rem 0;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--c-text-2);
}

/* WHO WE ARE (GRID) */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 5rem 0;
}

.about-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 24px;
  padding: 2.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.2);
}

.about-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary-l);
  margin-bottom: 1.5rem;
}

.about-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.about-card p {
  color: var(--c-text-2);
  line-height: 1.7;
  font-size: 1rem;
}

/* FOUNDER SECTION */
.founder-section {
  max-width: 1100px;
  margin: 6rem auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 32px;
  padding: 4rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.founder-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 30px rgba(59,130,246,0.1);
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.founder-img-wrapper:hover .founder-img {
  transform: scale(1.03);
}

.founder-badge {
  position: absolute;
  bottom: 1.5rem;
  left: -1rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.founder-badge strong { font-family: 'Outfit', sans-serif; font-size: 1.5rem; color: var(--c-primary-l); }
.founder-badge span { font-size: 0.875rem; color: var(--c-text-2); text-transform: uppercase; letter-spacing: 1px; }

.founder-content .label {
  font-size: 0.875rem;
  color: var(--c-text-2);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
}

.founder-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.founder-content .founder-intro {
  font-size: 1.25rem;
  color: var(--c-primary-l);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.founder-content p {
  color: var(--c-text-2);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* HOW WE WORK (TIMELINE) */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

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

.timeline-item {
  display: flex;
  gap: 2rem;
  position: relative;
}

.timeline-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 2px solid var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px var(--c-bg);
}

.timeline-content {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 2rem;
  flex: 1;
  transition: border-color 0.3s;
}

.timeline-content:hover {
  border-color: rgba(255,255,255,0.2);
}

.timeline-content h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--c-text-2);
  line-height: 1.6;
  margin: 0;
}

/* WHY US (GRID) */
.bg-light-card {
  background: rgba(255,255,255,0.02);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-item { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  font-size: 1.125rem; 
  color: #e2e8f0; 
  background: var(--c-surface);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--c-border);
}

.feature-item svg { 
  flex-shrink: 0; 
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(139,92,246,0.05));
  border: 1px solid var(--c-border);
  border-radius: 32px;
  padding: 5rem 3rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-banner h2 { 
  font-family: 'Outfit', sans-serif; 
  font-size: clamp(2rem, 4vw, 3rem); 
  margin-bottom: 1rem; 
  color: white;
}

.cta-banner p { 
  font-size: 1.25rem; 
  color: var(--c-text-2); 
  margin-bottom: 2.5rem; 
  max-width: 600px; 
  margin-left: auto; 
  margin-right: auto; 
}

.cta-actions { 
  display: flex; 
  justify-content: center; 
  gap: 1rem; 
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .founder-section {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
  }
  .founder-img-wrapper { max-width: 400px; margin: 0 auto; }
  .founder-badge { left: 50%; transform: translateX(-50%); bottom: -1rem; text-align: center; }
}

@media (max-width: 768px) {
  .timeline::before { left: 24px; }
  .timeline-icon { width: 48px; height: 48px; font-size: 1.25rem; box-shadow: 0 0 0 6px var(--c-bg); }
  .timeline-content { padding: 1.5rem; }
  
  .cta-actions { flex-direction: column; }
}

@media (max-width: 576px) {
  .founder-section { padding: 2rem 1.5rem; border-radius: 20px; }
  .founder-content h2 { font-size: 2rem; }
  .cta-banner { padding: 3rem 1.5rem; border-radius: 20px; }
  .feature-item { font-size: 1rem; padding: 1.25rem; }
}

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
