/* ════════════════════════════════════════════════════════════
   NOVEX — About Page Extra Styles
════════════════════════════════════════════════════════════ */

/* ── Stats bar ───────────────────────────────────────────── */
.about-stats-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 60px 0 80px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--card);
  backdrop-filter: blur(20px);
}
.about-stat {
  flex: 1;
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid var(--card-border);
  transition: background 0.2s ease;
}
.about-stat:last-child { border-right: none; }
.about-stat:hover { background: var(--surface-light); }
.about-stat-num {
  font-weight: 900;
  font-size: 2.6rem;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 6px;
  color: #04111a;
}
body.dark-mode .about-stat-num { color: #ffffff; }
.about-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ── Process steps ───────────────────────────────────────── */
.about-process { padding: 80px 0 60px; }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  position: relative;
  text-align: center;
}
.process-step h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 12px 0 8px;
  color: var(--foreground);
}
.process-step p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.process-step-num {
  position: absolute;
  top: 16px; left: 18px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--primary);
  opacity: 0.7;
}
.process-icon {
  font-size: 2.2rem;
  margin-bottom: 4px;
  display: block;
}
.process-connector {
  flex-shrink: 0;
  align-self: center;
  color: var(--muted);
  font-size: 1.3rem;
  padding: 0 6px;
  margin-top: -24px;
  opacity: 0.5;
}

/* ── Specialty cards ─────────────────────────────────────── */
.about-specialties { padding: 80px 0 60px; }

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.specialty-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.specialty-card:hover {
  transform: translateY(-4px);
}
.specialty-icon {
  font-size: 2rem;
  line-height: 1;
}
.specialty-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--foreground);
  margin: 0;
}
.specialty-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Tools grid ──────────────────────────────────────────── */
.about-tools { padding: 80px 0 60px; }

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tool-card {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tool-icon { font-size: 1.8rem; line-height: 1; }
.tool-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--foreground);
}
.tool-level {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tool-bar {
  flex: 1;
  height: 4px;
  background: var(--card-border);
  border-radius: 99px;
  overflow: hidden;
}
.tool-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 99px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.tool-level span {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  white-space: nowrap;
}

/* ── Values strip ────────────────────────────────────────── */
.about-values { padding: 60px 0 80px; }

.values-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 28px 36px;
  border-radius: var(--radius-xl);
  gap: 0;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 24px;
  white-space: nowrap;
}
.value-icon { font-size: 1.1rem; }
.value-text {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--foreground);
  letter-spacing: -0.01em;
}
.value-divider {
  width: 1px;
  height: 28px;
  background: var(--card-border);
  flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 992px) {
  .specialty-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid     { grid-template-columns: repeat(2, 1fr); }
  .process-steps  { flex-direction: column; }
  .process-connector { display: none; }
}
@media (max-width: 768px) {
  .about-stats-bar  { flex-wrap: wrap; border-radius: var(--radius-lg); }
  .about-stat       { flex: 1 1 40%; border-right: none; border-bottom: 1px solid var(--card-border); }
  .specialty-grid   { grid-template-columns: 1fr; }
  .tools-grid       { grid-template-columns: 1fr; }
  .values-banner    { gap: 8px; padding: 20px; }
  .value-divider    { display: none; }
}
