:root {
  --ecx-orange: #ff7a00;
  --ecx-orange-dark: #e35f00;
  --ecx-ink: #162033;
  --ecx-muted: #667085;
  --ecx-line: #e7eaf0;
  --ecx-bg: #f5f6f8;
  --ecx-card: #ffffff;
  --ecx-shadow: 0 16px 46px rgba(15, 23, 42, 0.08);
}

.ecx-about-body {
  background: var(--ecx-bg);
  color: var(--ecx-ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ecx-about-body a {
  color: inherit;
}

.ecx-about-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.ecx-about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.75fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 12px;
}

.ecx-about-hero-copy,
.ecx-about-hero-card,
.ecx-about-stats article,
.ecx-about-story,
.ecx-about-grid article,
.ecx-about-values,
.ecx-about-process,
.ecx-about-cta {
  border-radius: 6px;
  background: var(--ecx-card);
  box-shadow: var(--ecx-shadow);
  border: 1px solid rgba(231, 234, 240, 0.92);
}

.ecx-about-hero-copy {
  min-height: 470px;
  padding: clamp(30px, 5vw, 62px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ecx-about-hero-copy::before,
.ecx-about-hero-copy::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.ecx-about-hero-copy::before {
  right: -130px;
  top: -110px;
  width: 320px;
  height: 320px;
  background: rgba(255, 122, 0, 0.12);
}

.ecx-about-hero-copy::after {
  left: -70px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  background: rgba(22, 32, 51, 0.05);
}

.ecx-about-hero-copy > span,
.ecx-about-story span,
.ecx-section-title > span,
.ecx-about-cta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ecx-orange-dark);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.ecx-about-hero-copy h1 {
  max-width: 820px;
  margin: 14px 0 16px;
  font-size: clamp(36px, 5.6vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

.ecx-about-hero-copy p {
  max-width: 760px;
  color: var(--ecx-muted);
  font-size: 17px;
  line-height: 1.72;
  margin: 0;
  position: relative;
  z-index: 1;
}

.ecx-about-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.ecx-about-actions a,
.ecx-about-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--ecx-orange);
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
}

.ecx-about-actions a:nth-child(2),
.ecx-about-cta a:nth-child(2) {
  background: #162033;
}

.ecx-about-hero-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(160deg, rgba(255, 122, 0, 0.12), rgba(255, 255, 255, 0.86)),
    var(--ecx-card);
  min-height: 470px;
}

.ecx-about-hero-card img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 6px;
  background: white;
  padding: 10px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  margin-bottom: auto;
}

.ecx-about-hero-card strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 900;
  margin-bottom: 12px;
}

.ecx-about-hero-card p {
  color: var(--ecx-muted);
  line-height: 1.7;
  margin: 0;
}

.ecx-about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.ecx-about-stats article {
  padding: 22px;
}

.ecx-about-stats strong {
  display: block;
  color: var(--ecx-orange-dark);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.ecx-about-stats span {
  display: block;
  margin-top: 8px;
  color: var(--ecx-muted);
  font-size: 13px;
  font-weight: 800;
}

.ecx-about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  padding: clamp(26px, 4vw, 46px);
  margin-bottom: 18px;
}

.ecx-about-story h2,
.ecx-section-title h2,
.ecx-about-cta h2 {
  margin: 12px 0 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.ecx-about-story p,
.ecx-about-cta p {
  margin: 0;
  color: var(--ecx-muted);
  line-height: 1.8;
  font-size: 16px;
}

.ecx-about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.ecx-about-grid article {
  padding: 26px;
}

.ecx-about-grid article span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255, 122, 0, 0.12);
  color: var(--ecx-orange-dark);
  font-weight: 900;
  margin-bottom: 18px;
}

.ecx-about-grid h3,
.ecx-values-list strong,
.ecx-process-steps h3 {
  display: block;
  margin: 0 0 9px;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.ecx-about-grid p,
.ecx-values-list p,
.ecx-process-steps p {
  margin: 0;
  color: var(--ecx-muted);
  line-height: 1.72;
  font-size: 14px;
}

.ecx-about-values,
.ecx-about-process {
  padding: clamp(26px, 4vw, 44px);
  margin-bottom: 18px;
}

.ecx-section-title {
  max-width: 780px;
  margin-bottom: 24px;
}

.ecx-values-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ecx-values-list article,
.ecx-process-steps article {
  border: 1px solid var(--ecx-line);
  border-radius: 6px;
  padding: 20px;
  background: #fbfcfd;
}

.ecx-process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ecx-process-steps b {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ecx-orange);
  color: #fff;
  font-weight: 900;
  margin-bottom: 16px;
}

.ecx-about-cta {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.12), rgba(255, 255, 255, 0.92)),
    var(--ecx-card);
}

.ecx-about-cta p {
  max-width: 700px;
  margin-top: 12px;
}

.ecx-about-cta > div:last-child {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 260px;
}

.ecx-about-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 34px;
  padding: 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--ecx-line);
}

.ecx-about-footer p {
  margin: 8px 0 0;
  color: var(--ecx-muted);
  font-size: 13px;
}

.ecx-about-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.ecx-about-footer nav a {
  color: var(--ecx-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1020px) {
  .ecx-about-hero,
  .ecx-about-story,
  .ecx-about-cta {
    grid-template-columns: 1fr;
  }

  .ecx-about-hero {
    display: block;
  }

  .ecx-about-hero-card {
    margin-top: 16px;
    min-height: 260px;
  }

  .ecx-about-stats,
  .ecx-values-list,
  .ecx-process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .ecx-about-page {
    width: min(100% - 24px, 1180px);
    padding-top: 16px;
  }

  .ecx-about-hero-copy,
  .ecx-about-hero-card,
  .ecx-about-story,
  .ecx-about-values,
  .ecx-about-process,
  .ecx-about-cta {
    padding: 22px;
  }

  .ecx-about-hero-copy {
    min-height: auto;
  }

  .ecx-about-stats,
  .ecx-about-grid,
  .ecx-values-list,
  .ecx-process-steps {
    grid-template-columns: 1fr;
  }

  .ecx-about-cta {
    display: block;
  }

  .ecx-about-cta > div:last-child {
    justify-content: flex-start;
    margin-top: 20px;
    min-width: 0;
  }

  .ecx-about-footer {
    display: block;
  }

  .ecx-about-footer nav {
    justify-content: flex-start;
    margin-top: 18px;
  }
}
