.about-page {
  background: var(--white);
  padding-top: 100px;
}

.about-hero {
  padding: 1.4rem 0 4rem;
}

.about-hero-title {
  font-size: clamp(2.2rem, 4.6vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--brand);
  margin: 1rem 0 0.9rem;
  max-width: 720px;
}

.about-hero-copy {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
  max-width: 660px;
  margin: 0;
}

.about-hero-visual,
.about-image-card,
.about-video-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-gradient);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
}

.about-hero-visual img,
.about-image-card img {
  width: 100%;
  height: 420px;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

.about-hero-visual img {
  aspect-ratio: 4 / 3;
}

.about-highlight-card,
.about-product-card,
.about-team-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  height: 100%;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.about-highlight-card,
.about-product-card,
.about-team-card {
  padding: 1.25rem;
}

.about-highlight-card:hover,
.about-product-card:hover,
.about-team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.about-highlight-card h3,
.about-product-card h3,
.about-team-card h3 {
  color: var(--brand);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 0.55rem;
}

.about-highlight-card p,
.about-product-card p,
.about-team-card p,
.about-location-copy {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.72;
  margin: 0;
}

.about-video-card {
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  font: inherit;
}

.about-video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  object-fit: cover;
  display: block;
  height: 420px;
}

.about-video-card::after {
  content: '';
  position: absolute;
  inset: 1rem;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(7, 47, 61, 0.08),
    rgba(7, 47, 61, 0.32)
  );
  pointer-events: none;
}

.about-video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 70px;
  height: 70px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  transition:
    transform var(--transition),
    background var(--transition);
}

.about-video-card:hover .about-video-play,
.about-video-card:focus-visible .about-video-play {
  transform: translate(-50%, -50%) scale(1.06);
  background: #10627c;
}

.about-product-media {
  height: 170px;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin-bottom: 1rem;
}

.about-product-media img {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
}

.about-stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 1.25rem 1rem;
  height: 100%;
}

.about-stat-card strong {
  display: block;
  color: var(--brand);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.25rem;
}

.about-stat-card span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.about-timeline {
  position: relative;
  display: grid;
  gap: 1.2rem;
  padding: 1rem 0 0;
}

.about-timeline-line {
  position: absolute;
  top: 1rem;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(10, 63, 81, 0),
    rgba(10, 63, 81, 0.28),
    rgba(10, 63, 81, 0)
  );
}

.about-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  min-height: 1px;
}

.about-timeline-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.about-timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about-timeline-item.is-left .about-timeline-card {
  grid-column: 1;
}

.about-timeline-item.is-right .about-timeline-card {
  grid-column: 2;
}

.about-timeline-card::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  width: 14px;
  height: 14px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.about-timeline-item.is-left .about-timeline-card::before {
  right: -8px;
  transform: rotate(45deg);
}

.about-timeline-item.is-right .about-timeline-card::before {
  left: -8px;
  transform: rotate(-135deg);
}

.about-timeline-node {
  position: absolute;
  top: 1.45rem;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
  border: 4px solid var(--brand-3);
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(10, 63, 81, 0.07);
  z-index: 1;
}

.about-timeline-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand-3);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  padding: 0.42rem 0.8rem;
  margin-bottom: 0.85rem;
}

.about-timeline-card h3 {
  color: var(--brand);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 0.55rem;
}

.about-timeline-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.72;
  margin: 0;
}

.about-timeline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(10, 63, 81, 0.12);
  border-radius: 999px;
  background: var(--white);
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 0.45rem 1rem;
  margin-top: 1rem;
  transition: all var(--transition);
}

.about-timeline-link:hover {
  color: var(--white);
  background: var(--brand);
  transform: translateY(-2px);
}

.about-team-card {
  text-align: center;
}

.about-team-card img {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--brand-3);
  margin: 0 auto 1rem;
  display: block;
}

.about-team-card h3 {
  margin-bottom: 0.25rem;
}

.about-team-role {
  color: var(--brand-2);
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.45;
}

.about-team-location {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  margin-top: 0.3rem;
}

.about-address {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  padding: 1rem;
  color: var(--brand);
  font-weight: 700;
  line-height: 1.7;
}

.about-cta-panel {
  background: linear-gradient(135deg, var(--brand) 0%, #11566d 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: 0 24px 60px rgba(10, 63, 81, 0.18);
}

.about-cta-panel .card-kicker,
.about-cta-panel .section-title,
.about-cta-panel .section-copy {
  color: var(--white);
  max-width: 100%;
}

.about-cta-panel .section-copy {
  color: rgba(255, 255, 255, 0.82);
}

.about-video-modal .modal-content {
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-video-modal .modal-header {
  border-bottom: 1px solid var(--border-soft);
}

.about-video-modal .modal-title {
  color: var(--brand);
  font-size: 1.1rem;
  font-weight: 800;
}

.about-video-modal .modal-body {
  padding: 1rem;
}

.about-video-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
}

.about-video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media (max-width: 991.98px) {
  .about-hero {
    padding: 1rem 0 3rem;
  }

  .about-timeline {
    gap: 1rem;
    padding-left: 1.35rem;
  }

  .about-timeline-line {
    left: 9px;
    transform: none;
  }

  .about-timeline-item {
    display: block;
    padding-left: 1.35rem;
  }

  .about-timeline-node {
    left: -1.35rem;
    transform: none;
  }

  .about-timeline-item.is-left .about-timeline-card::before,
  .about-timeline-item.is-right .about-timeline-card::before,
  .about-timeline-card::before {
    left: -8px;
    right: auto;
    transform: rotate(-135deg);
  }

  .about-cta-panel {
    padding: 2rem;
  }
}

@media (max-width: 767.98px) {
  .about-hero-title {
    font-size: 2.15rem;
  }

  .about-hero-visual,
  .about-image-card,
  .about-video-card {
    padding: 0.75rem;
  }

  .about-video-card::after {
    inset: 0.75rem;
  }

  .about-cta-panel {
    border-radius: 24px;
    padding: 1.5rem;
  }
}
