/*
 * Amaj About Page
 * All selectors are scoped to avoid conflicts with the active theme.
 */
.amaj-hide-theme-title .entry-title,
.amaj-hide-theme-title .page-title,
.amaj-hide-theme-title .wp-block-post-title {
  display: none !important;
}

.amaj-about-shell {
  --amaj-primary: #20427c;
  --amaj-secondary: #315ea6;
  --amaj-accent: #78a9ff;
  --amaj-ink: #10213d;
  --amaj-muted: #65738b;
  --amaj-line: #e6ebf3;
  --amaj-soft: #f5f8fc;
  --amaj-container: min(1180px, calc(100% - 40px));
  --amaj-shadow: 0 24px 70px rgba(18, 43, 84, .13);
  --amaj-shadow-soft: 0 14px 38px rgba(18, 43, 84, .09);
  --amaj-radius-xl: 34px;
  --amaj-radius-lg: 24px;

  direction: rtl;
  font-family: "Vazirmatn", Tahoma, Arial, sans-serif;
  color: var(--amaj-ink);
  line-height: 1.85;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 6%, rgba(64, 108, 177, .09), transparent 26%),
    linear-gradient(180deg, #f8fbff 0, #fff 32%, #f7faff 100%);
}

.amaj-about-shell *,
.amaj-about-shell *::before,
.amaj-about-shell *::after {
  box-sizing: border-box;
}

.amaj-about-shell a {
  color: inherit;
  text-decoration: none;
}

.amaj-about-shell img {
  display: block;
  max-width: 100%;
}

.amaj-about-container {
  width: var(--amaj-container);
  margin-inline: auto;
}

.amaj-icon {
  width: 23px;
  height: 23px;
  display: inline-flex;
  flex: 0 0 auto;
}

.amaj-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amaj-about-hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 10% 20%, rgba(115, 168, 255, .22), transparent 27%),
    linear-gradient(120deg, color-mix(in srgb, var(--amaj-primary) 72%, #071a3c), var(--amaj-primary) 58%, var(--amaj-secondary));
}

.amaj-about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 94%);
  mask-image: linear-gradient(to bottom, #000, transparent 94%);
}

.amaj-about-hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: -160px;
  top: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.11);
  box-shadow:
    0 0 0 75px rgba(255,255,255,.025),
    0 0 0 155px rgba(255,255,255,.018);
}

.amaj-about-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 70px;
  align-items: center;
  padding-block: 90px;
}

.amaj-about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: #dceaff;
  font-size: 12px;
}

.amaj-about-eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amaj-accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--amaj-accent) 17%, transparent);
}

.amaj-about-hero h1 {
  max-width: 760px;
  margin: 22px 0 16px;
  color: #fff;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -2.2px;
}

.amaj-about-hero p {
  max-width: 700px;
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 16px;
}

.amaj-about-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 14px 21px;
  border-radius: 14px;
  background: #fff;
  color: var(--amaj-primary);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 17px 38px rgba(5, 24, 56, .18);
  transition: .25s;
}

.amaj-about-primary-btn:hover {
  transform: translateY(-3px);
}

.amaj-about-hero-visual {
  min-height: 430px;
  display: grid;
  place-items: center;
}

.amaj-about-hero-visual > img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 35px 80px rgba(4, 23, 53, .34);
}

.amaj-about-tech-illustration {
  position: relative;
  width: min(440px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.amaj-about-tech-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
}

.amaj-about-tech-ring.ring-1 {
  width: 95%;
  height: 95%;
}

.amaj-about-tech-ring.ring-2 {
  width: 72%;
  height: 72%;
  border-style: dashed;
  animation: amajSpin 24s linear infinite;
}

.amaj-about-tech-ring.ring-3 {
  width: 48%;
  height: 48%;
  border-color: rgba(255,255,255,.24);
}

.amaj-about-tech-core {
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 28% 20%, rgba(255,255,255,.28), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.26);
  box-shadow: 0 24px 60px rgba(4, 23, 53, .28);
  backdrop-filter: blur(14px);
}

.amaj-about-tech-core .amaj-icon {
  width: 62px;
  height: 62px;
}

.amaj-about-tech-node {
  position: absolute;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #fff;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 42px rgba(4, 23, 53, .18);
}

.amaj-about-tech-node.node-1 {
  top: 7%;
  right: 19%;
}

.amaj-about-tech-node.node-2 {
  left: 4%;
  top: 40%;
}

.amaj-about-tech-node.node-3 {
  bottom: 7%;
  right: 24%;
}

.amaj-about-tech-node.node-4 {
  right: 4%;
  top: 45%;
}

@keyframes amajSpin {
  to { transform: rotate(360deg); }
}

.amaj-about-story-section {
  padding: 110px 0 80px;
}

.amaj-about-story-grid {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 70px;
  align-items: center;
}

.amaj-about-story-media {
  position: relative;
}

.amaj-about-story-media > img,
.amaj-about-image-placeholder {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--amaj-radius-xl);
  box-shadow: var(--amaj-shadow);
}

.amaj-about-image-placeholder {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 25% 18%, rgba(115,168,255,.18), transparent 25%),
    linear-gradient(145deg, #e7eef8, #cad8ea);
}

.amaj-about-placeholder-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(32,66,124,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32,66,124,.06) 1px, transparent 1px);
  background-size: 42px 42px;
}

.amaj-about-placeholder-shield {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: 40px;
  color: #fff;
  background: linear-gradient(145deg, var(--amaj-secondary), var(--amaj-primary));
  box-shadow: 0 26px 58px rgba(32,66,124,.26);
}

.amaj-about-placeholder-shield .amaj-icon {
  width: 72px;
  height: 72px;
}

.amaj-about-placeholder-caption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: rgba(32,66,124,.50);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
}

.amaj-about-experience-badge {
  position: absolute;
  right: -24px;
  bottom: 34px;
  min-width: 168px;
  padding: 18px 20px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(145deg, var(--amaj-secondary), var(--amaj-primary));
  box-shadow: 0 18px 42px rgba(32,66,124,.27);
}

.amaj-about-experience-badge strong {
  display: block;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 900;
}

.amaj-about-experience-badge span {
  color: rgba(255,255,255,.76);
  font-size: 12px;
}

.amaj-about-section-label {
  color: var(--amaj-secondary);
  font-size: 13px;
  font-weight: 900;
}

.amaj-about-story-copy h2,
.amaj-about-section-head h2,
.amaj-about-why-copy h2,
.amaj-about-cta h2 {
  margin: 8px 0 16px;
  color: var(--amaj-ink);
  font-size: clamp(29px, 3.4vw, 46px);
  line-height: 1.42;
  letter-spacing: -1.4px;
}

.amaj-about-story-copy p,
.amaj-about-why-copy > p {
  color: var(--amaj-muted);
  font-size: 15px;
  margin: 0 0 16px;
}

.amaj-about-stats-section {
  padding-bottom: 80px;
}

.amaj-about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--amaj-line);
  border-radius: var(--amaj-radius-lg);
  background: #fff;
  box-shadow: var(--amaj-shadow-soft);
}

.amaj-about-stat-card {
  position: relative;
  min-height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 25px;
  text-align: center;
}

.amaj-about-stat-card:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: var(--amaj-line);
}

.amaj-about-stat-card strong {
  display: block;
  color: var(--amaj-primary);
  font-size: 35px;
  font-weight: 900;
  line-height: 1.3;
}

.amaj-about-stat-card span {
  color: var(--amaj-muted);
  font-size: 12.5px;
}

.amaj-about-purpose-section {
  padding: 30px 0 100px;
}

.amaj-about-purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.amaj-about-purpose-card {
  min-height: 290px;
  padding: 34px 28px;
  border: 1px solid var(--amaj-line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--amaj-shadow-soft);
  transition: .3s;
}

.amaj-about-purpose-card:hover {
  transform: translateY(-7px);
}

.amaj-about-purpose-featured {
  color: #fff;
  background:
    radial-gradient(circle at 10% 0, rgba(255,255,255,.16), transparent 34%),
    linear-gradient(145deg, var(--amaj-primary), var(--amaj-secondary));
  border-color: transparent;
}

.amaj-about-purpose-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--amaj-primary);
  background: #edf4ff;
}

.amaj-about-purpose-featured .amaj-about-purpose-icon {
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
}

.amaj-about-purpose-icon .amaj-icon {
  width: 31px;
  height: 31px;
}

.amaj-about-purpose-card h3 {
  margin: 24px 0 9px;
  color: var(--amaj-ink);
  font-size: 22px;
}

.amaj-about-purpose-card p {
  margin: 0;
  color: var(--amaj-muted);
  font-size: 14px;
}

.amaj-about-purpose-featured h3 {
  color: #fff;
}

.amaj-about-purpose-featured p {
  color: rgba(255,255,255,.74);
}

.amaj-about-section {
  padding: 100px 0;
}

.amaj-about-section-head {
  max-width: 740px;
  margin: 0 auto 48px;
  text-align: center;
}

.amaj-about-section-head p {
  margin: 0;
  color: var(--amaj-muted);
  font-size: 15px;
}

.amaj-about-values-section {
  background:
    radial-gradient(circle at 92% 3%, rgba(58,103,174,.10), transparent 28%),
    linear-gradient(180deg, #f4f8fd, #fff);
}

.amaj-about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amaj-about-value-card {
  min-height: 260px;
  padding: 28px 24px;
  border: 1px solid var(--amaj-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(22,49,91,.07);
  transition: .3s;
}

.amaj-about-value-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 50px rgba(22,49,91,.13);
}

.amaj-about-value-icon,
.amaj-about-service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--amaj-primary);
  background: linear-gradient(145deg, #edf4ff, #dceaff);
}

.amaj-about-value-icon .amaj-icon,
.amaj-about-service-icon .amaj-icon {
  width: 29px;
  height: 29px;
}

.amaj-about-value-card h3,
.amaj-about-service-card h3 {
  margin: 21px 0 7px;
  color: var(--amaj-ink);
  font-size: 19px;
}

.amaj-about-value-card p,
.amaj-about-service-card p {
  margin: 0;
  color: var(--amaj-muted);
  font-size: 13.5px;
}

.amaj-about-why-grid {
  display: grid;
  grid-template-columns: 1fr .96fr;
  gap: 70px;
  align-items: center;
}

.amaj-about-check-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.amaj-about-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid var(--amaj-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(23,52,97,.05);
}

.amaj-about-check-item > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(145deg, var(--amaj-secondary), var(--amaj-primary));
}

.amaj-about-check-item > span .amaj-icon {
  width: 18px;
  height: 18px;
}

.amaj-about-check-item strong {
  color: var(--amaj-ink);
  font-size: 13px;
}

.amaj-about-why-media > img,
.amaj-about-dashboard-placeholder {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--amaj-radius-xl);
  box-shadow: var(--amaj-shadow);
}

.amaj-about-dashboard-placeholder {
  overflow: hidden;
  border: 1px solid rgba(32,66,124,.14);
  background: linear-gradient(145deg, #eef3f9, #dce6f2);
}

.amaj-about-dashboard-top {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-inline: 18px;
  background: rgba(255,255,255,.64);
  border-bottom: 1px solid rgba(32,66,124,.10);
}

.amaj-about-dashboard-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--amaj-primary) 28%, #fff);
}

.amaj-about-dashboard-layout {
  height: calc(100% - 54px);
  display: grid;
  grid-template-columns: 90px 1fr;
}

.amaj-about-dashboard-side {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px 18px;
  background: color-mix(in srgb, var(--amaj-primary) 91%, #071a3c);
}

.amaj-about-dashboard-side i {
  height: 12px;
  border-radius: 6px;
  background: rgba(255,255,255,.18);
}

.amaj-about-dashboard-main {
  padding: 28px;
}

.amaj-about-dashboard-chart {
  height: 235px;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255,255,255,.74);
}

.amaj-about-dashboard-chart b {
  flex: 1;
  min-width: 22px;
  border-radius: 10px 10px 3px 3px;
  background: linear-gradient(180deg, var(--amaj-accent), var(--amaj-primary));
}

.amaj-about-dashboard-chart b:nth-child(1) { height: 38%; }
.amaj-about-dashboard-chart b:nth-child(2) { height: 72%; }
.amaj-about-dashboard-chart b:nth-child(3) { height: 53%; }
.amaj-about-dashboard-chart b:nth-child(4) { height: 88%; }
.amaj-about-dashboard-chart b:nth-child(5) { height: 67%; }

.amaj-about-dashboard-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 18px;
}

.amaj-about-dashboard-cards span {
  min-height: 90px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--amaj-primary);
  background: rgba(255,255,255,.74);
}

.amaj-about-dashboard-cards .amaj-icon {
  width: 32px;
  height: 32px;
}

.amaj-about-timeline-section {
  background:
    radial-gradient(circle at 8% 0, rgba(75,120,191,.11), transparent 28%),
    linear-gradient(180deg, #f4f8fd, #fff);
}

.amaj-about-timeline {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
}

.amaj-about-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 31px;
  width: 2px;
  background: linear-gradient(var(--amaj-secondary), color-mix(in srgb, var(--amaj-primary) 14%, #fff));
}

.amaj-about-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  margin-bottom: 24px;
}

.amaj-about-timeline-marker {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(145deg, var(--amaj-secondary), var(--amaj-primary));
  box-shadow: 0 12px 28px rgba(32,66,124,.22);
}

.amaj-about-timeline-marker span {
  font-size: 18px;
  font-weight: 900;
}

.amaj-about-timeline-card {
  padding: 24px 26px;
  border: 1px solid var(--amaj-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(25,54,99,.06);
}

.amaj-about-timeline-card small {
  color: var(--amaj-secondary);
  font-size: 11px;
  font-weight: 900;
}

.amaj-about-timeline-card h3 {
  margin: 5px 0 7px;
  color: var(--amaj-ink);
  font-size: 19px;
}

.amaj-about-timeline-card p {
  margin: 0;
  color: var(--amaj-muted);
  font-size: 13.5px;
}

.amaj-about-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.amaj-about-service-card {
  min-height: 250px;
  padding: 28px 24px;
  border: 1px solid var(--amaj-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(22,49,91,.07);
  transition: .3s;
}

.amaj-about-service-card:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--amaj-secondary) 22%, #fff);
  box-shadow: 0 24px 50px rgba(22,49,91,.13);
}

.amaj-about-cta-section {
  padding: 0 0 100px;
}

.amaj-about-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  padding: 44px 48px;
  border-radius: var(--amaj-radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 5% 10%, rgba(255,255,255,.13), transparent 30%),
    linear-gradient(110deg, color-mix(in srgb, var(--amaj-primary) 76%, #071a3c), var(--amaj-secondary));
  box-shadow: var(--amaj-shadow);
}

.amaj-about-cta::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  left: -100px;
  bottom: -160px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255,255,255,.035);
}

.amaj-about-cta > * {
  position: relative;
  z-index: 2;
}

.amaj-about-cta h2 {
  margin-top: 0;
  color: #fff;
  font-size: clamp(27px, 3vw, 40px);
}

.amaj-about-cta p {
  max-width: 700px;
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: 14px;
}

.amaj-about-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.amaj-about-light-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: 13px;
  color: var(--amaj-primary);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.amaj-about-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.amaj-about-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: .75s ease;
}

.amaj-about-reveal.amaj-about-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  .amaj-about-hero-grid,
  .amaj-about-story-grid,
  .amaj-about-why-grid {
    grid-template-columns: 1fr;
  }

  .amaj-about-hero-copy {
    max-width: 800px;
  }

  .amaj-about-hero-visual {
    min-height: 380px;
  }

  .amaj-about-tech-illustration {
    width: min(400px, 88%);
  }

  .amaj-about-story-grid,
  .amaj-about-why-grid {
    gap: 45px;
  }

  .amaj-about-values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .amaj-about-services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .amaj-about-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .amaj-about-shell {
    --amaj-container: min(100% - 24px, 1180px);
  }

  .amaj-about-hero {
    min-height: auto;
  }

  .amaj-about-hero-grid {
    padding-block: 65px;
    gap: 42px;
  }

  .amaj-about-hero h1 {
    font-size: 39px;
  }

  .amaj-about-hero-visual {
    min-height: 310px;
  }

  .amaj-about-tech-node {
    width: 58px;
    height: 58px;
    border-radius: 17px;
  }

  .amaj-about-tech-core {
    width: 102px;
    height: 102px;
    border-radius: 27px;
  }

  .amaj-about-story-section,
  .amaj-about-section {
    padding: 72px 0;
  }

  .amaj-about-story-media > img,
  .amaj-about-image-placeholder,
  .amaj-about-why-media > img,
  .amaj-about-dashboard-placeholder {
    height: 390px;
  }

  .amaj-about-experience-badge {
    right: 14px;
    bottom: 14px;
  }

  .amaj-about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .amaj-about-stat-card:nth-child(2)::after {
    display: none;
  }

  .amaj-about-stat-card:nth-child(-n+2) {
    border-bottom: 1px solid var(--amaj-line);
  }

  .amaj-about-purpose-grid,
  .amaj-about-values-grid,
  .amaj-about-services-grid {
    grid-template-columns: 1fr;
  }

  .amaj-about-purpose-card {
    min-height: auto;
  }

  .amaj-about-timeline::before {
    right: 25px;
  }

  .amaj-about-timeline-item {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }

  .amaj-about-timeline-marker {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .amaj-about-cta {
    padding: 30px 22px;
  }

  .amaj-about-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .amaj-about-light-btn {
    justify-content: center;
  }

  .amaj-about-phone-link {
    justify-content: center;
  }
}
