/* ===== About Us — page-local styles ===== */

.card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  padding-right: 25px;
  padding-bottom: 30px;
  padding-left: 25px;
  border-radius: 10px;
  border: 1px solid #ff7043;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Pillar cards (Who / Mission / Vision) */
.ab-pillar-card {
  background: #fff;
  border: 1px solid var(--border-color-light);
  border-radius: 22px;
  padding: 32px 28px;
  height: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.reason-title {
  font-weight: 600;
  margin: 0 0 0 0px;
  line-height: var(--line-height-tight);
  font-size: 22px;
}

.reason-titles {
  font-weight: 600;
  margin: 0 0 4px;
  line-height: var(--line-height-tight);
}

.ab-pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(235, 80, 23, 0.25);
  box-shadow: 0 18px 36px rgba(235, 80, 23, 0.1);
}

.ab-pillar-card--accent {
  background: linear-gradient(160deg, #eb5017 0%, #ff7a45 100%);
  color: #fff;
  border-color: transparent;
}

.ab-pillar-card--accent .ab-pillar-icon i {
  color: #eb5017;
}

.ab-pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

/* Values */
.ab-values-art {
  margin-top: 8px;
  max-width: 420px;
}

.ab-values-art svg {
  width: 100%;
  height: auto;
}

.ab-value-card {
  background: #fff;
  border: 1px solid var(--border-color-light);
  border-radius: 18px;
  padding: 22px 22px 20px;
  position: relative;
  height: 100%;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 12px;
  border-radius: 12px;
}

.ab-value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(235, 80, 23, 0.1);
  border-color: rgba(235, 80, 23, 0.25);
}

.ab-value-card--wide {
  padding: 22px 26px;
}

.ab-value-card h6 {
  font-weight: 600;
}

.ab-value-num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #eb5017;
  letter-spacing: 0.08em;
  background: #fff6f1;
  padding: 4px 10px;
  border-radius: 999px;
}

/* Story */
.ab-story-stage {
  background: linear-gradient(180deg, #fff6f1 0%, #fdeee7 100%);
  border: 1px solid var(--border-color-light);
  border-radius: 22px;
  padding: 20px;
}

.ab-story-stage svg {
  width: 100%;
  height: auto;
  display: block;
}

.ab-stat-card {
  background: #fff;
  border: 1px solid var(--border-color-light);
  border-radius: 16px;
  padding: 18px 16px;
  height: 100%;
  text-align: left;
}

.ab-stat-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.ab-stat-label {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.98rem;
}

.ab-stat-sub {
  color: var(--color-text-secondary);
  font-size: 0.82rem;
  margin-top: 2px;
}

/* Why cards */
.ab-why-card {
  background: #fff;
  border: 1px solid var(--border-color-light);
  border-radius: 18px;
  padding: 20px 18px;
  height: 100%;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.ab-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(235, 80, 23, 0.12);
  border-color: rgba(235, 80, 23, 0.28);
}

.ab-why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-card-bg);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.ab-why-text {
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  font-size: 0.94rem;
}

/* Roadmap */
.ab-roadmap-art {
  max-width: 450px;
  background: #fff;
  border: 1px solid var(--border-color-light);
  border-radius: 18px;
  padding: 14px;
  margin-top: 0px;
}

.ab-roadmap-art svg {
  width: 100%;
  height: auto;
}

.ab-roadmap-list {
  background: #fff;
  border: 1px solid var(--border-color-light);
  border-radius: 22px;
  padding: 8px 24px 4px;
}

.ab-roadmap-item {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  align-items: flex-start;
}

.ab-roadmap-item h6 {
  font-weight: 600;
}

.ab-roadmap-item + .ab-roadmap-item {
  border-top: 1px dashed rgba(235, 80, 23, 0.22);
}

.ab-roadmap-marker {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-card-bg);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

/* The final CTA uses the shared .cta-final block from assets/css/style.css. */

/* Responsive */
@media (max-width: 991.98px) {
  .ab-roadmap-item {
    gap: 14px;
  }
}
