/* ============================================================
   KARUWEB — Page À propos
   SECTION 7 : NOS ZONES D'INTERVENTION
   Fichier : section-07-zones.css
   Pas de variables CSS — titres #FFFFFF — texte #ECE9F2
   ============================================================ */

/* ── Reset minimal ── */
.kwz *,
.kwz *::before,
.kwz *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.kwz ul { list-style: none; }

/* ============================================================
   SECTION WRAPPER
   ============================================================ */
.kwz {
  position: relative;
  width: 100%;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;

  background:
    radial-gradient(ellipse at 50% 0%,   #3D0A50 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, #3D0A50 0%, transparent 60%),
    #0A0118;

  border-top:    0.5px solid #241A30;
  border-bottom: 0.5px solid #241A30;
}

/* ── Container ── */
.kwz__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* ============================================================
   EN-TÊTE
   ============================================================ */
.kwz__header {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kwz__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FF7FC2;
}

.kwz__label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: #FF7FC2;
  border-radius: 2px;
}

.kwz__h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #FFFFFF;
}

/* ============================================================
   GRILLE DEUX TERRITOIRES
   ============================================================ */
.kwz__territories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── Carte territoire ── */
.kwz__territory {
  position: relative;
  background: #13082A;
  border: 0.5px solid #3A2D52;
  border-radius: 22px;
  padding: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: border-color 0.25s;
}

.kwz__territory:hover {
  border-color: rgba(255, 127, 194, 0.4);
}

/* Lueur top rose */
.kwz__territory-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FF7FC2, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.kwz__territory:hover .kwz__territory-glow {
  opacity: 1;
}

/* ── Header territoire ── */
.kwz__territory-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.kwz__territory-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 127, 194, 0.08);
  border: 0.5px solid rgba(255, 127, 194, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FF7FC2;
  transition: background 0.25s, border-color 0.25s;
}

.kwz__territory:hover .kwz__territory-icon {
  background: rgba(255, 127, 194, 0.16);
  border-color: rgba(255, 127, 194, 0.4);
}

.kwz__territory-since {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FF7FC2;
  margin-bottom: 4px;
}

.kwz__territory-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.015em;
}

/* ── Villes — grille de pills ── */
.kwz__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.kwz__city {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #ECE9F2;
  padding: 6px 13px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid #3A2D52;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  cursor: default;
}

.kwz__city:hover {
  border-color: rgba(255, 127, 194, 0.4);
  background: rgba(255, 127, 194, 0.08);
  color: #FF7FC2;
}

.kwz__city svg {
  color: #FF7FC2;
  opacity: 0.7;
  flex-shrink: 0;
}

/* ── Note bas de carte ── */
.kwz__territory-note {
  font-size: 0.8rem;
  color: #ECE9F2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 4px;
  border-top: 0.5px solid #241A30;
}

.kwz__territory-aside {
  font-size: 0.72rem;
  color: #FF7FC2;
  background: rgba(255, 127, 194, 0.08);
  border: 0.5px solid rgba(255, 127, 194, 0.22);
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 500;
}

/* ============================================================
   BANNIÈRE — France entière / Remote
   ============================================================ */
.kwz__remote {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 36px;
  background: #13082A;
  border: 0.5px solid #3A2D52;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}

.kwz__remote:hover {
  border-color: rgba(255, 127, 194, 0.4);
}

/* Lueur top */
.kwz__remote::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FF7FC2, transparent);
}

/* Halo central discret */
.kwz__remote::after {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(255, 127, 194, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.kwz__remote-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 127, 194, 0.08);
  border: 0.5px solid rgba(255, 127, 194, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FF7FC2;
}

.kwz__remote-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kwz__remote-title {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.kwz__remote-desc {
  font-size: 0.85rem;
  color: #ECE9F2;
  line-height: 1.5;
}

/* Badge remote */
.kwz__remote-badge {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FF7FC2;
  background: rgba(255, 127, 194, 0.10);
  border: 0.5px solid rgba(255, 127, 194, 0.28);
  padding: 8px 16px;
  border-radius: 30px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Tablette ── */
@media (max-width: 1024px) {
  .kwz__container {
    padding: 72px 28px;
    gap: 36px;
  }

  .kwz__territory {
    padding: 32px;
  }

  .kwz__remote {
    padding: 24px 28px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .kwz__remote-badge {
    margin-left: auto;
  }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .kwz__container {
    padding: 56px 20px 64px;
    gap: 28px;
  }

  .kwz__territories {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .kwz__territory {
    padding: 28px 24px;
    gap: 22px;
  }

  .kwz__territory-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
  }

  .kwz__territory-title {
    font-size: 1rem;
  }

  .kwz__city {
    font-size: 0.74rem;
    padding: 5px 11px;
  }

  .kwz__remote {
    padding: 22px 20px;
    gap: 14px;
  }

  .kwz__remote-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
  }

  .kwz__remote-badge {
    width: 100%;
    text-align: center;
  }
}