/* ============================================
   LEGAL NEXUS — About Page Premium v2.0
   ============================================ */

/* ===== HERO ===== */
.about-hero {
  padding: calc(var(--navbar-height) + var(--space-4xl)) 0 var(--space-3xl);
  background: linear-gradient(160deg,
    rgba(10, 10, 10, 0.96) 0%,
    rgba(17, 17, 17, 0.9) 50%,
    rgba(26, 26, 26, 0.85) 100%),
    url('../images/about-office.png') center/cover no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, var(--clr-accent-glow) 0%, transparent 70%);
  opacity: 0.2;
  pointer-events: none;
}

.about-hero h1 {
  font-size: var(--fs-display-sm);
  color: var(--clr-white);
  margin-bottom: var(--space-md);
}

.about-hero p {
  font-size: var(--fs-body-lg);
  color: var(--clr-text-on-dark);
  max-width: 560px;
  margin: 0 auto;
}


/* ===== FOUNDER SECTION ===== */
.founder-section .split__image {
  min-height: 500px;
}

.founder-section .split__image img {
  min-height: 500px;
  object-fit: cover;
}


/* ===== VALUES GRID ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.values-grid .card {
  padding: var(--space-xl);
}

.values-grid .card__icon {
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== VALUE CARDS ===== */
.value-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all 0.5s var(--ease-out-expo);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-border-gold);
}

.value-card__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-accent-subtle);
  border-radius: var(--radius-md);
  transition: all 0.4s var(--ease-out-expo);
}

.value-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--clr-accent);
  fill: none;
  stroke-width: 1.5;
}

.value-card:hover .value-card__icon {
  background: var(--clr-accent);
  box-shadow: var(--shadow-gold);
}

.value-card:hover .value-card__icon svg {
  stroke: var(--clr-white);
}

.value-card h4 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h4);
  color: var(--clr-primary);
  margin-bottom: 0.35rem;
}

.value-card p {
  font-size: var(--fs-small);
  color: var(--clr-text-light);
  line-height: 1.6;
}


/* ===== CREDENTIALS BAR ===== */
.credentials-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.credentials-bar .glass-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.credentials-bar .glass-card h4 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  color: var(--clr-accent);
  margin-bottom: 0.5rem;
}

.credentials-bar .glass-card p {
  font-size: var(--fs-small);
  color: var(--clr-text-on-dark-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

@media (max-width: 768px) {
  .credentials-bar {
    grid-template-columns: 1fr;
  }
}


/* ===== STORY SECTION ===== */
.story-section {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.story-section h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-md);
}

.story-section p {
  font-size: var(--fs-body-lg);
  line-height: 1.9;
  margin-bottom: var(--space-md);
}
