.about-body {
  background: radial-gradient(1100px 700px at 15% -10%, rgba(0, 26, 61, 0.08), transparent 55%),
    radial-gradient(900px 600px at 85% 0%, rgba(0, 26, 61, 0.06), transparent 55%), var(--surface);
}

/* Hero Section */
.about-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.about-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 18, 0.5) 0%, rgba(5, 10, 18, 0.7) 100%);
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-hero-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 16px;
}

.about-hero-title {
  margin: 0;
  max-width: 900px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.98);
  text-align: center;
  font-weight: 800;
}

.about-hero-lead {
  margin: 24px 0 0;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
}

/* Stats Section - Overlay on Hero */
.about-hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 40px 0;
  background: linear-gradient(0deg, rgba(5, 10, 18, 0.9) 0%, rgba(5, 10, 18, 0.6) 100%);
}

.about-hero-stats .stats-card {
  width: 100%;
  max-width: min(100%, calc(var(--container) - 140px));
  margin-inline: auto;
}

/* Client Logos Marquee Section */
.about-clients-section {
  padding: 40px 0;
  background: #070b13;
  overflow: hidden;
}

.about-clients-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.about-clients-marquee::before,
.about-clients-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.about-clients-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #070b13 0%, rgba(7, 11, 19, 0) 100%);
}

.about-clients-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #070b13 0%, rgba(7, 11, 19, 0) 100%);
}

.about-clients-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.about-clients-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.about-client-logo {
  flex-shrink: 0;
  width: 200px;
  height: 80px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.about-client-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.about-client-logo svg {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.about-client-logo:hover svg {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Story Section */
.about-story-section {
  padding: 100px 0;
}

.about-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 48px;
  align-items: stretch;
}

.about-story-content {
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(196, 198, 207, 0.5);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 255, 0.94));
  box-shadow: 0 24px 60px rgba(10, 20, 35, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-story-text {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.8;
  color: rgba(46, 52, 64, 0.9);
}

.about-story-image {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(196, 198, 207, 0.5);
  box-shadow: 0 24px 60px rgba(10, 20, 35, 0.1);
  height: 100%;
  display: flex;
}

.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* History Timeline Section */
.about-history-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--surface) 0%, rgba(0, 26, 61, 0.03) 100%);
}

.about-history-timeline {
  position: relative;
  max-width: 1000px;
  margin: 48px auto 0;
  padding: 0 20px;
}

.about-history-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(0, 26, 61, 0.2), rgba(0, 26, 61, 0.4));
  transform: translateX(-50%);
}

.about-history-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  align-items: center;
}

.about-history-item:nth-child(even) {
  direction: rtl;
}

.about-history-item:nth-child(even) .about-history-content {
  direction: ltr;
}

.about-history-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 26, 61, 0.95), rgba(0, 26, 61, 0.92));
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 16px rgba(10, 20, 35, 0.2);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.about-history-year {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(0, 26, 61, 0.9);
  text-align: right;
  padding-right: 20px;
}

.about-history-item:nth-child(even) .about-history-year {
  text-align: left;
  padding-right: 0;
  padding-left: 20px;
}

.about-history-content {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(196, 198, 207, 0.5);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(10, 20, 35, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-history-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10, 20, 35, 0.12);
}

.about-history-content .h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: rgba(0, 26, 61, 0.95);
}

.about-history-content p {
  margin: 0;
  line-height: 1.6;
  color: rgba(46, 52, 64, 0.85);
}

@media (max-width: 1100px) {
  .about-hero-stats .stats-card {
    max-width: none;
  }

  .about-story-layout {
    grid-template-columns: 1fr;
  }

  .about-mission-grid,
  .about-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-cta-layout {
    grid-template-columns: 1fr;
  }

  .about-history-timeline::before {
    left: 20px;
  }

  .about-history-item {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: 50px;
  }

  .about-history-item:nth-child(even) {
    direction: ltr;
  }

  .about-history-item::before {
    left: 20px;
  }

  .about-history-year {
    text-align: left;
    padding-right: 0;
    padding-left: 0;
  }

  .about-history-item:nth-child(even) .about-history-year {
    text-align: left;
    padding-left: 0;
  }
}

@media (max-width: 820px) {
  .about-hero {
    min-height: 100vh;
  }

  .about-mission-grid,
  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .about-story-content {
    padding: 32px 24px;
  }

  .about-mission-card,
  .about-team-card {
    padding: 32px 24px;
  }

  .about-history-timeline {
    padding: 0 10px;
  }

  .about-history-item {
    padding-left: 40px;
  }

  .about-history-item::before {
    left: 10px;
    width: 16px;
    height: 16px;
  }

  .about-history-timeline::before {
    left: 10px;
  }
}
.about-mission-section {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(0, 26, 61, 0.03) 0%, var(--surface) 100%);
}

.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.about-mission-card {
  padding: 40px 32px;
  border-radius: 24px;
  border: 1px solid rgba(196, 198, 207, 0.5);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 50px rgba(10, 20, 35, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(10, 20, 35, 0.12);
}

.about-mission-primary {
  background: linear-gradient(135deg, rgba(0, 26, 61, 0.95), rgba(0, 26, 61, 0.92));
  border-color: rgba(0, 26, 61, 0.3);
}

.about-mission-primary .about-mission-icon {
  color: rgba(255, 255, 255, 0.95);
}

.about-mission-primary .h3,
.about-mission-primary p {
  color: rgba(255, 255, 255, 0.95);
}

.about-mission-secondary {
  background: linear-gradient(135deg, rgba(0, 26, 61, 0.92), rgba(0, 26, 61, 0.88));
  border-color: rgba(0, 26, 61, 0.3);
}

.about-mission-secondary .about-mission-icon {
  color: rgba(255, 255, 255, 0.95);
}

.about-mission-secondary .h3,
.about-mission-secondary p {
  color: rgba(255, 255, 255, 0.95);
}

.about-mission-accent {
  background: linear-gradient(135deg, rgba(0, 26, 61, 0.88), rgba(0, 26, 61, 0.85));
  border-color: rgba(0, 26, 61, 0.3);
}

.about-mission-accent .about-mission-icon {
  color: rgba(255, 255, 255, 0.95);
}

.about-mission-accent .h3,
.about-mission-accent p {
  color: rgba(255, 255, 255, 0.95);
}

.about-mission-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  color: rgba(0, 26, 61, 0.85);
}

.about-mission-icon svg {
  width: 100%;
  height: 100%;
}

.about-mission-card .h3 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
}

.about-mission-card p {
  margin: 0;
  line-height: 1.7;
}

/* Team Section */
.about-team-section {
  padding: 100px 0;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.about-team-card {
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(196, 198, 207, 0.5);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 50px rgba(10, 20, 35, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(10, 20, 35, 0.12);
}

.about-team-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(196, 198, 207, 0.5);
  background: linear-gradient(135deg, rgba(0, 26, 61, 0.08), rgba(0, 26, 61, 0.12));
}

.about-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-team-initials {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 48px;
  letter-spacing: 0.04em;
  font-weight: 800;
  color: rgba(0, 26, 61, 0.92);
}

.about-team-card .h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
}

.about-team-role {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: rgba(0, 26, 61, 0.68);
  margin-bottom: 12px;
}

.about-team-card p {
  margin: 0;
  line-height: 1.6;
}

/* CTA Section */
.about-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0, 26, 61, 0.95), rgba(0, 26, 61, 0.92));
}

.about-cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.about-cta-content {
  color: rgba(255, 255, 255, 0.95);
}

.about-cta-content .h2 {
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
}

.about-cta-content .muted {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.7;
  margin-bottom: 32px;
}

.about-cta-content .btn-primary {
  background: rgba(255, 255, 255, 0.95);
  color: rgba(0, 26, 61, 0.95);
  border-color: rgba(255, 255, 255, 0.95);
}

.about-cta-content .btn-primary:hover {
  background: rgba(255, 255, 255, 1);
  color: rgba(0, 26, 61, 1);
}

.about-cta-image {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.about-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

/* Responsive */
@media (max-width: 1100px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-story-layout {
    grid-template-columns: 1fr;
  }

  .about-mission-grid,
  .about-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-cta-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .about-hero {
    min-height: 80vh;
  }

  .about-stats-grid,
  .about-mission-grid,
  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .about-story-content {
    padding: 32px 24px;
  }

  .about-mission-card,
  .about-team-card {
    padding: 32px 24px;
  }
}
