.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 0 120px;
  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: 18px 0;
  background: linear-gradient(0deg, rgba(5, 10, 18, 0.8) 0%, rgba(5, 10, 18, 0.5) 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: #ffffff;
  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, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.about-clients-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 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;
  height: 60px;
  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: auto;
  height: 100%;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.about-client-logo img {
  width: auto;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.about-clients-section .section-kicker {
  color: rgba(0, 26, 61, 0.9);
}

.about-client-logo:hover svg,
.about-client-logo:hover img {
  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;
    padding-bottom: 180px;
  }

  .about-hero-stats {
    padding: 24px 0;
  }

  .about-hero-stats .stats-card {
    padding: 20px;
  }

  .about-hero-stats .stat-value {
    font-size: 20px;
  }

  .about-hero-stats .stat-label {
    font-size: 10px;
  }

  .about-mission-grid,
  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .about-mission-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-mission-image {
    order: -1;
    min-height: 200px;
  }

  .about-mission-image img {
    min-height: 200px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-value-card {
    padding: 32px 24px;
  }

  .about-value-number {
    font-size: 36px;
  }

  .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 60px 0;
  background: linear-gradient(180deg, rgba(0, 26, 61, 0.03) 0%, var(--surface) 100%);
}

.about-values-section {
  padding: 60px 0 100px 0;
  background: var(--surface);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.about-businesses-section {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(0, 26, 61, 0.03) 0%, var(--surface) 100%);
}

.about-businesses-layout {
  display: grid;
  gap: 72px;
  margin-top: 48px;
}

.about-business-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  grid-template-areas: "image content";
  gap: 0;
  align-items: stretch;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(10, 20, 35, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.about-business-row:nth-child(even) {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-areas: "content image";
}

.about-business-image,
.about-business-content {
  min-height: inherit;
}

.about-business-image {
  grid-area: image;
  overflow: hidden;
  display: flex;
}

.about-business-content {
  grid-area: content;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

.about-business-image img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.about-business-content .section-kicker {
  margin-bottom: 16px;
}

.about-business-content .h3 {
  margin: 0 0 20px;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.1;
}

.about-business-content p {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(46, 52, 64, 0.86);
}

.about-value-card {
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(0, 26, 61, 0.04), rgba(0, 26, 61, 0.02));
  border-radius: 20px;
  border: 1px solid rgba(0, 26, 61, 0.08);
  transition: all 0.3s ease;
}

.about-value-card:hover {
  background: linear-gradient(135deg, rgba(0, 26, 61, 0.06), rgba(0, 26, 61, 0.03));
  border-color: rgba(0, 26, 61, 0.12);
  transform: translateY(-4px);
}

.about-value-number {
  font-size: 48px;
  font-weight: 800;
  color: rgba(0, 26, 61, 0.15);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.about-value-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: rgba(0, 26, 61, 0.95);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.about-value-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(46, 52, 64, 0.85);
}

.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: 1fr 1.2fr 1fr;
  gap: 32px;
  margin-top: 48px;
  align-items: center;
}

.about-mission-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 26, 61, 0.12);
}

.about-mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.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);
}

@media (max-width: 992px) {
  .about-business-row {
    grid-template-columns: 1fr;
  }

  .about-business-row:nth-child(even) {
    direction: ltr;
  }

  .about-business-image,
  .about-business-content {
    min-height: auto;
  }

  .about-business-image {
    min-height: 280px;
  }
}

@media (max-width: 680px) {
  .about-business-content {
    padding: 32px 24px;
  }

  .about-business-content .h3 {
    font-size: 28px;
  }
}


.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)),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
  background-position: 0 0, 0 0, 0 0;
}

.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;
  }
}
