/* ==========================================================================
   ABOUT
   ========================================================================== */

.about-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 20px 64px;
}

/* ── HERO ── */
.about-heroMedia {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-soft);
  background: #fff;
  overflow: hidden;
  margin-bottom: 22px;
}

.about-heroMedia-grid {
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
  align-items: stretch;
}

.about-heroMedia-text {
  padding: 28px 24px;
}

.about-title {
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 10px;
}

.about-subtitle {
  color: #4B5563;
  font-size: 13px;
  line-height: 1.75;
  margin: 0 0 16px;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: #fff;
  font-size: 12px;
  color: #111827;
  white-space: nowrap;
}

.about-heroMedia-image {
  border-left: 1px solid var(--border-soft);
  background: #fff;
  min-height: 260px;
}

.about-heroMedia-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* ── CARDS ── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.about-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-soft);
  background: #fff;
  padding: 18px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.about-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15,23,42,.10);
}

.about-card-ico {
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  font-size: 18px;
  background: #fff;
}

.about-card-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.about-card-text {
  margin: 0;
  font-size: 12px;
  color: #6B7280;
  line-height: 1.75;
}

/* ── SECTIONS TEXTE SIMPLE ── */
.about-section { margin-bottom: 22px; }

.about-section-title {
  font-size: 16px;
  font-weight: 900;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.about-section-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-soft);
  background: #fff;
  padding: 20px 22px;
}

.about-section-card p {
  margin: 0 0 12px;
  font-size: 13px;
  color: #374151;
  line-height: 1.75;
}
.about-section-card p:last-child { margin-bottom: 0; }

.about-emphasis {
  font-style: italic;
  color: #111827 !important;
  font-weight: 600;
}

/* ── SCROLL BLOCK ── */
.about-scrollBlock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 22px;
}

.about-scrollText {
  position: sticky;
  top: 80px;
}

.about-compare {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.about-compare-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 300ms ease;
}

.about-compare-img.is-off { opacity: 1; }
.about-compare-img.is-on  { opacity: 0; }

.about-compare-glass {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06) 0%,
    rgba(255,255,255,0.00) 45%,
    rgba(0,0,0,0.04) 100%
  );
}

/* ── CTA ── */
.about-cta { margin-top: 26px; }

.about-cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-soft);
  background: #fff;
  padding: 18px;
}

.about-cta-title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 900;
}

.about-cta-text {
  margin: 0;
  color: #6B7280;
  font-size: 12px;
  line-height: 1.7;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-heroMedia-grid {
    grid-template-columns: 1fr;
  }
  .about-heroMedia-image {
    border-left: none;
    border-top: 1px solid var(--border-soft);
    min-height: 220px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-scrollBlock {
    grid-template-columns: 1fr;
  }
  .about-scrollText {
    position: relative;
    top: auto;
  }
  .about-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .about-title { font-size: 26px; }
  .about-wrap  { padding: 20px 14px 48px; }
}
