.section-3 {
  padding: 90px 0;
  overflow: hidden;
}

.section3-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* ZONE GLOBE */
.section3-globe-zone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-globe {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Anneaux */
.globe-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed var(--border-color);
}

.ring-1 {
  transform: rotate(18deg);
  animation: globeRotate 22s linear infinite;
}

.ring-2 {
  transform: rotate(-20deg) scale(0.82);
  animation: globeRotateReverse 18s linear infinite;
}

/* Cartes */
.globe-card {
  position: absolute;
  width: 118px;
  height: 78px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--card-bg), rgba(255,255,255,0.08));
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-color);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
}

.globe-card span {
  opacity: 0.75;
}

/* Placement anneau 1 */
.card-1 { top: 6%; left: 39%; }
.card-2 { top: 36%; right: 2%; }
.card-3 { bottom: 6%; left: 39%; }
.card-4 { top: 36%; left: 2%; }

/* Placement anneau 2 */
.card-5 { top: 17%; left: 18%; }
.card-6 { top: 17%; right: 18%; }
.card-7 { bottom: 17%; right: 18%; }
.card-8 { bottom: 17%; left: 18%; }

/* Centre */
.globe-core {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 3rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
  z-index: 3;
}

.globe-core img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.globe-core::before,
.globe-core::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
}

.globe-core::before {
  width: 180px;
  height: 180px;
}

.globe-core::after {
  width: 220px;
  height: 220px;
}

/* Texte */
.section3-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section3-line {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-left: 5px solid var(--primary-color);
  padding: 18px 20px;
  border-radius: 14px;
  line-height: 1.8;
  font-size: 1.04rem;
  color: var(--text-color);
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.section3-btn {
  margin-top: 8px;
  width: fit-content;
}

/* Animations */
@keyframes globeRotate {
  from {
    transform: rotate(18deg);
  }
  to {
    transform: rotate(378deg);
  }
}

@keyframes globeRotateReverse {
  from {
    transform: rotate(-20deg) scale(0.82);
  }
  to {
    transform: rotate(-380deg) scale(0.82);
  }
}

/* Thèmes sombres */
body.theme-dark .globe-card,
body.theme-brown .globe-card,
body.theme-dark .section3-line,
body.theme-brown .section3-line {
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}

/* Responsive */
@media (max-width: 992px) {
  .section3-container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .section3-globe-zone {
    order: 1;
  }

  .section3-text {
    order: 2;
  }

  .image-globe {
    width: min(430px, 100%);
  }
}

@media (max-width: 768px) {
  .section-3 {
    padding: 65px 0;
  }

  .image-globe {
    width: min(320px, 100%);
  }

 .globe-card {
  position: absolute;
  width: 118px;
  height: 78px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--card-bg), rgba(255,255,255,0.08));
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-color);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.globe-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

  .globe-core {
    width: 98px;
    height: 98px;
    font-size: 2rem;
  }

  .globe-core::before {
    width: 130px;
    height: 130px;
  }

  .globe-core::after {
    width: 165px;
    height: 165px;
  }

  .section3-line {
    font-size: 0.98rem;
    line-height: 1.7;
  }

.globe-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
}