/* ═══════════════════════════════════════════════════
   Globe Section
   ═══════════════════════════════════════════════════ */

.global-reach {
  position: relative;
  min-height: 85vh;
  background: var(--color-cream);
  overflow: hidden;
  border-radius: var(--border-radius);
}

.global-reach__grid {
  position: relative;
  margin: 0 auto;
  min-height: 85vh;
  width: 100%;
  max-width: 2500px;
  display: grid;
  border-radius: var(--border-radius);
}

@media (min-width: 520px) {
  .global-reach__grid {
    grid-template-columns: 2fr 3fr;
    position: relative;
  }
}

@media (min-width: 1024px) {
  .global-reach__grid { grid-template-columns: 1fr 1fr; }
}

/* Globe container */
.global-reach__globe {
  position: relative;
  height: 50vh;
  border-radius: var(--border-radius);
}

/* Mobile side-by-side: enlarge the globe canvas and let it bleed off
   the left edge so only the right ~40% of the sphere is visible inside
   the 40% column. The section's overflow:hidden clips the off-screen part. */
@media (min-width: 520px) and (max-width: 1023.98px) {
  .global-reach__globe {
    position: absolute;
    top: 0;
    left: -40%;
    width: 80%;
    height: 100%;
    border-radius: 0;
    pointer-events: none;
  }
  .global-reach__content {
    grid-column: 2;
  }
}

@media (min-width: 1024px) {
  .global-reach__globe { height: auto; }
}

.global-reach__globe-fade-r {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, transparent, var(--color-cream));
  pointer-events: none;
  border-radius: var(--border-radius);
  display: none;
}

@media (min-width: 520px) {
  .global-reach__globe-fade-r { display: block; }
}

.global-reach__globe-fade-b {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-cream), transparent);
  pointer-events: none;
  border-radius: var(--border-radius);
}

@media (min-width: 520px) {
  .global-reach__globe-fade-b { display: none; }
}

.global-reach .text-label { color: var(--color-primary); }

/* Content side */
.global-reach__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 1.5rem;
  border-radius: var(--border-radius);
}

@media (min-width: 520px) {
  .global-reach__content { padding: 3rem 1.5rem 3rem 1rem; }
}

@media (min-width: 768px) {
  .global-reach__content { padding: 4rem 2rem 4rem 1.5rem; }
}

@media (min-width: 1024px) {
  .global-reach__content { padding: 6rem 4rem; }
}

/* Stat cards */
.global-reach__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.global-reach__stat-card {
  position: relative;
  overflow: hidden;
}

.global-reach__stat-card-border {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, var(--color-primary), rgba(206, 68, 5, 0.8), rgba(206, 68, 5, 0.6));
  border-radius: 8px;
}

.global-reach__stat-card-bg {
  position: absolute;
  inset: 2px;
  background: #fff;
  border-radius: 6px;
}

.global-reach__stat-card-content {
  position: relative;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.global-reach__stat-card-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(206, 68, 5, 0.05);
  border-bottom-left-radius: 24px;
  margin-right: -8px;
  margin-top: -8px;
}

.global-reach__stat-value {
  position: relative;
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 900;
  color: #1a1a1a;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.global-reach__stat-underline {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 9999px;
  transition: width var(--duration-slow);
}

.global-reach__stat-card:hover .global-reach__stat-underline { width: 100%; }

.global-reach__stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.25rem;
}

/* Title */
.global-reach__title-block { margin-bottom: 2rem; }
.global-reach__title-block .text-display {
  font-size: clamp(2rem, 6.5vw, 4.125rem);
}

.global-reach__title .text-display { color: #1a1a1a; }
.global-reach__title .text-blue { color: #004C99; }

.global-reach__title-line { display: block; }
.global-reach__title-line--dark { color: #1a1a1a; }
.global-reach__title-line--blue { color: #004C99; }

/* Body text */
.global-reach__body {
  font-size: 0.9375rem;
  color: #3a3a3a;
  line-height: 1.6;
  max-width: 32rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .global-reach__body { font-size: 1.125rem; }
}

/* Decorative line */
.global-reach__accent-line {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 1px;
  background: linear-gradient(to left, var(--color-primary), transparent);
}
