/* ============================================================
   Despre Noi (About) Page Styles — Light Theme
   ============================================================ */

/* ---------- Page Hero ---------- */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 3rem) 2rem 4rem;
  overflow: hidden;
  background: linear-gradient(160deg, #0A1118 0%, #0D1620 60%, #111C29 100%);
}

.page-hero-logo {
  width: clamp(140px, 20vw, 200px);
  height: auto;
  margin-bottom: var(--space-lg);
  filter: drop-shadow(0 0 20px rgba(30, 64, 175, 0.15));
}

.page-hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  color: var(--color-text, #F0F4F8);
  margin-bottom: var(--space-sm);
}

.page-hero-subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text-secondary, #A0AEC0);
  max-width: 500px;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
  overflow: hidden;
}

.timeline-line-inner {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--color-accent, #1E40AF), rgba(30, 64, 175, 0.2));
}

.timeline-node {
  display: flex;
  align-items: flex-start;
  gap: clamp(2rem, 5vw, 4rem);
  padding: 2.5rem 0;
  position: relative;
}

.timeline-node:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-node-dot {
  position: absolute;
  left: 50%;
  top: 3rem;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-accent, #1E40AF);
  z-index: 2;
  box-shadow: 0 0 16px rgba(30, 64, 175, 0.3);
}

.timeline-node-content {
  flex: 1;
}

.timeline-year {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--color-accent, #1E40AF);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.timeline-desc {
  font-size: 1rem;
  color: var(--color-text-secondary, #4A5568);
  line-height: 1.7;
  max-width: 380px;
}

.timeline-node:nth-child(odd) .timeline-desc {
  margin-left: auto;
}

.timeline-node-spacer {
  flex: 1;
}

/* ---------- Values Section ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.value-card {
  padding: clamp(2rem, 3vw, 3rem);
  text-align: center;
  transform-style: preserve-3d;
  background: var(--color-surface-2, rgba(255, 255, 255, 0.05));
}

.value-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
}

.value-card-icon svg {
  width: 100%;
  height: 100%;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--color-accent, #1E40AF);
  margin-bottom: 1rem;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--color-text-secondary, #4A5568);
  line-height: 1.75;
}

/* ---------- Company Info ---------- */
.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.company-info-item {
  margin-bottom: 1.5rem;
}

.company-info-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent, #1E40AF);
  margin-bottom: 0.35rem;
}

.company-info-value {
  font-size: 1rem;
  color: var(--color-text, #0D1B2A);
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-border, rgba(30, 64, 175, 0.1));
  border-bottom: 1px solid var(--color-border, rgba(30, 64, 175, 0.1));
}

.stat-item {
  text-align: center;
  padding: 1.5rem clamp(2rem, 5vw, 4rem);
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  color: var(--color-accent, #1E40AF);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-secondary, #4A5568);
}

.stat-sep {
  width: 1px;
  height: 50px;
  background: var(--color-border-strong, rgba(30, 64, 175, 0.2));
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .company-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 35vh;
    padding: calc(var(--nav-height) + 2rem) 1.5rem 2.5rem;
  }

  .page-hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .page-hero-subtitle {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    max-width: 100%;
    padding: 0 0.5rem;
  }

  .timeline-line { display: none; }
  .timeline-node-dot { display: none; }

  .timeline-node,
  .timeline-node:nth-child(odd) {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1.5rem 0;
  }

  .timeline-node-spacer { display: none; }

  .timeline-node:nth-child(odd) .timeline-desc {
    margin-left: 0;
  }

  .timeline-desc {
    max-width: 100%;
  }

  .stat-sep { display: none; }
  .stats-bar {
    gap: 1rem;
    padding: var(--space-lg) 0;
  }
  .stat-item {
    flex: 1 1 40%;
    padding: 1rem;
  }
  .stat-number {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

@media (max-width: 480px) {
  .page-hero {
    min-height: 30vh;
    padding: calc(var(--nav-height) + 1.5rem) 1rem 2rem;
  }

  .page-hero-title {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem);
  }

  .stat-item {
    flex: 1 1 100%;
  }
}
