/* ICTech About page — Mobilax-inspired layout, ICTech colors */
.ictech-about-page {
  --ab-primary: var(--ictech-primary, #2937E9);
  --ab-purple: #A458F7;
  --ab-navy: #0B1F3A;
  --ab-ink: #111827;
  --ab-muted: #4b5563;
  width: 100%;
  max-width: 100%;
  background: #f8fafc;
  color: var(--ab-ink);
}
@media (min-width: 901px) {
  .ictech-about-page {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    max-width: 100vw;
  }
}
.ictech-about-page * { box-sizing: border-box; }
.ictech-about-page__wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 56px;
}
.ab-hero {
  background: transparent;
  color: var(--ab-ink);
  padding: 40px 20px 8px;
}
.ab-hero__inner { max-width: 1100px; margin: 0 auto; }
.ab-hero__kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ab-primary);
  margin-bottom: 14px;
}
.ab-hero__title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ab-navy) !important;
}
.ab-hero__text {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ab-muted);
}
.ab-section { padding: 48px 0 8px; }
.ab-section__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ab-primary);
  margin: 0 0 8px;
}
.ab-section__title {
  margin: 0 0 16px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--ab-navy);
  line-height: 1.2;
}
.ab-section__text {
  margin: 0 0 20px;
  color: var(--ab-muted);
  font-size: 15.5px;
  line-height: 1.65;
}
.ab-timeline {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  border-left: 3px solid #dbe0ff;
}
.ab-timeline li {
  position: relative;
  padding: 12px 0 12px 22px;
  color: var(--ab-muted);
  font-size: 14.5px;
}
.ab-timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 18px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ab-primary);
  box-shadow: 0 0 0 3px #eef0ff;
}
.ab-timeline strong { color: var(--ab-navy); margin-right: 8px; }
.ab-band {
  margin: 36px 0;
  padding: 28px;
  border-radius: 16px;
  background: var(--ab-navy);
  color: #fff;
  display: grid;
  gap: 8px;
}
.ab-band h3 { margin: 0; font-size: 22px; font-weight: 800; color: #fff !important; }
.ab-band p { margin: 0; color: rgba(255,255,255,.92); line-height: 1.5; }
.ab-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.ab-stat {
  background: #fff;
  border-radius: 14px;
  padding: 22px 18px;
  border: 1px solid #eef0f3;
  box-shadow: 0 8px 22px rgba(15,23,42,.05);
  text-align: center;
}
.ab-stat__num {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(120deg, var(--ab-primary), var(--ab-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ab-stat__label { margin: 0; font-size: 13px; color: var(--ab-muted); line-height: 1.4; }
.ab-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.ab-value {
  border-radius: 14px;
  padding: 22px 18px 20px;
  color: var(--ab-ink);
  min-height: 160px;
  background: #fff;
  border: 1px solid #eef0f3;
  box-shadow: 0 8px 22px rgba(15,23,42,.05);
}
.ab-value h3 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ab-primary) !important;
}
.ab-value p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ab-muted); }
.ab-value--trust,
.ab-value--quality,
.ab-value--modernity,
.ab-value--humanity,
.ab-value--passion,
.ab-value--b2b {
  background: #fff;
}
.ab-why {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin-top: 18px;
  padding: 0;
}
.ab-why li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 12px;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ab-navy);
}
.ab-why li::before { content: "\2713"; color: var(--ab-primary); font-weight: 800; flex: 0 0 auto; }
.ab-quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.ab-quote {
  background: #fff;
  border-radius: 14px;
  padding: 20px 18px;
  border: 1px solid #eef0f3;
  box-shadow: 0 8px 22px rgba(15,23,42,.05);
}
.ab-quote p { margin: 0 0 14px; font-size: 14px; line-height: 1.55; color: var(--ab-muted); }
.ab-quote__who { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: var(--ab-navy); }
.ab-quote__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: #eef0ff; color: var(--ab-primary);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 800;
}
.ab-cta {
  margin-top: 40px;
  padding: 36px 28px;
  border-radius: 18px;
  background: var(--ab-navy);
  color: #fff;
  text-align: center;
}
.ab-cta h2 { margin: 0 0 10px; font-size: clamp(22px, 3vw, 28px); font-weight: 800; color: #fff !important; }
.ab-cta p { margin: 0 auto 20px; max-width: 560px; color: rgba(255,255,255,.85); line-height: 1.55; }
.ab-cta__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
@media (max-width: 900px) {
  .ab-stats, .ab-values, .ab-quotes { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ab-stats, .ab-values, .ab-quotes, .ab-why { grid-template-columns: 1fr; }
  .ab-hero { padding: 40px 20px 48px; }
}

/* Let About prose use the full content column (no artificial ~720px cap). */
body.page-id-54 .entry-content > .ictech-about-page,
body.page-slug-a-propos .entry-content > .ictech-about-page {
  max-width: none;
}
.ab-hero__title,
.ab-hero__text,
.ab-section__title,
.ab-section__text {
  max-width: none;
}
