/*
@author UBPartner
*/
/* ── About Hero ── */
.about-hero {
  min-height: 560px;
  padding-top: 140px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, #7347b3 0%, #5b69b6 45%, #6ea2d9 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Geometric floating shapes */
.about-shape {
  position: absolute;
  border-radius: 18px;
  opacity: 0.13;
  background: #fff;
  transform: rotate(45deg);
}

.about-shape-1 {
  width: 220px;
  height: 220px;
  top: -60px;
  right: 12%;
  animation: rotateCW 22s linear infinite;
}

.about-shape-2 {
  width: 130px;
  height: 130px;
  bottom: 30px;
  right: 28%;
  animation: rotateCCW 18s linear infinite;
}

.about-shape-3 {
  width: 80px;
  height: 80px;
  top: 80px;
  left: 5%;
  animation: rotateCW 14s linear infinite;
  opacity: 0.08;
}

@keyframes rotateCW  { to { transform: rotate(45deg) rotate(360deg); } }
@keyframes rotateCCW { to { transform: rotate(45deg) rotate(-360deg); } }

/* Hero grid */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 18px;
}

.about-hero-title {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 22px;
}

.about-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  max-width: 460px;
}

/* Hexagon image */
.about-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-hexagon-wrap {
  width: 340px;
  height: 340px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.about-hexagon-wrap2 {
  width: 110px;
  height: 110px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.about-hexagon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── CEO Message Section ── */
.about-message-section {
  background: #fff;
  padding: 90px 20px;
}

.about-message-inner {
  max-width: 780px;
  margin: 0 auto;
}

/* titre de section centré */
.about-message-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: #1c2340;
  margin-bottom: 32px;
  line-height: 1.3;
}

.about-message-body p {
  font-size: 15px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-message-body ul {
  padding-left: 0;
  list-style: none;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-message-body ul li {
  font-size: 15px;
  color: #444;
  line-height: 1.65;
  padding-left: 28px;
  position: relative;
}

.about-message-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7347b3, #5b69b6);
}

/* CEO signature */
.about-ceo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #eaecf5;
}

.ceo-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #7347b3;
  flex-shrink: 0;
}

.ceo-avatar-fallback {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7347b3, #5b69b6);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ceo-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ceo-info strong {
  font-size: 16px;
  font-weight: 700;
  color: #1c2340;
}

.ceo-info span {
  font-size: 13px;
  color: #888;
}

/* ── Values Strip ── */
.about-values-section {
  background: #f3f4fb;
  padding: 80px 20px;
}

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

.about-value-item {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #eaecf5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-value-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(115, 71, 179, 0.12);
}

.about-value-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7347b3, #5b69b6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  margin: 0 auto 18px;
}

.about-value-item h5 {
  font-size: 16px;
  font-weight: 700;
  color: #1c2340;
  margin-bottom: 10px;
}

.about-value-item p {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .about-hero-sub {
    margin: 0 auto;
  }
  .about-hero-title {
    font-size: 38px;
  }
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  p{
    font-size: 13px !important;
  }
  .about-hero-title {
    font-size: 30px;
  }
  .about-hexagon-wrap {
    width: 240px;
    height: 240px;
  }
  .about-values-grid {
    grid-template-columns: 1fr;
  }
}
