/* ======================================== */
/* GLOBX - WHY WORK WITH US SECTION         */
/* ======================================== */

/* Why Work With Us Section Background */
.gx-why-work-section {
  background: var(--primary-dark-2);
  color: white;
}

/* Header Section */
.gx-why-work-header {
  margin-bottom: 3rem;
}

.gx-why-work-title {
  font-size: 3.5rem;
  font-weight: var(--fw-regular);
  line-height: 1.1;
  margin-bottom: 0;
  color: var(--primary-light-2);
}

.gx-why-work-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--primary-light-2);
  font-weight: 400;
}

/* Separator Lines */
.gx-why-work-separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

/* Statistics Grid */
.gx-why-work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Split bottom row separator for why-work grid */
.gx-why-work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0 2rem;
  align-items: end;
}
.gx-why-work-separator.left,
.gx-why-work-separator.right {
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 0 0 0 0;
  width: 100%;
  margin: 2rem 0 1rem 0;
}
.gx-why-work-separator.left {
  grid-column: 1;
  grid-row: 2;
}
.gx-why-work-separator.right {
  grid-column: 2;
  grid-row: 2;
}

/* Individual Stat Cells */
.gx-why-work-stat {
  padding: 1rem 2rem 0 0;
  /* margin-left: -0.75rem; */
}

/* Special Gradient Cell (Who are we?) */
.gx-why-work-who-are-we {
  background: url('../../assets/img/gradient-bg.png') center center/cover no-repeat;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  display: flex;
  min-height: 200px;
}

.gx-who-are-we-text {
  font-size: 2.5rem;
  font-weight: var(--fw-regular);
  color: var(--primary-light-2);
  text-align: center;
  line-height: 1.2;
}

/* Regular Stat Cells */
.gx-why-work-stat-number {
  font-size: 4rem;
  font-weight: 500;
  color: var(--primary-light-2);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -3px;
}

.gx-why-work-stat-label {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--primary-light-2);
  margin-bottom: 0.9rem;
  text-transform: lowercase;
}

.gx-why-work-stat-description {
  font-size: 1rem;
  color: var(--primary-light-2);
  line-height: 1.4;
  font-weight: 400;
}

/* ======================================== */
/* WHY WORK WITH US RESPONSIVE DESIGN       */
/* ======================================== */
@media (max-width: 991.98px) {
  .gx-why-work-title {
    font-size: 3rem;
  }
  
  .gx-why-work-description {
    font-size: 1.1rem;
  }
  
  .gx-why-work-grid {
    gap: 1.5rem;
  }
  
  .gx-why-work-stat {
    padding: 1.5rem;
  }
  
  .gx-why-work-who-are-we {
    padding: 2rem 1.5rem;
    min-height: 180px;
  }
  
  .gx-who-are-we-text {
    font-size: 2.2rem;
  }
  
  .gx-why-work-stat-number {
    font-size: 3.5rem;
  }
}

@media (max-width: 767.98px) {
  .gx-why-work-title {
    font-size: 2.5rem;
  }
  
  .gx-why-work-description {
    font-size: 1rem;
  }
  
  .gx-why-work-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gx-why-work-stat {
    padding: 1.25rem;
  }
  
  .gx-why-work-who-are-we {
    padding: 1.75rem 1.25rem;
    min-height: 160px;
  }
  
  .gx-who-are-we-text {
    font-size: 2rem;
  }
  
  .gx-why-work-stat-number {
    font-size: 3rem;
  }
  
  .gx-why-work-stat-label {
    font-size: 1rem;
  }
  
  .gx-why-work-stat-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .gx-why-work-title {
    font-size: 2.2rem;
  }
  
  .gx-why-work-description {
    font-size: 0.95rem;
  }
  
  .gx-why-work-stat {
    padding: 1rem;
  }
  
  .gx-why-work-who-are-we {
    padding: 1.5rem 1rem;
    min-height: 140px;
  }
  
  .gx-who-are-we-text {
    font-size: 1.8rem;
  }
  
  .gx-why-work-stat-number {
    font-size: 2.5rem;
  }
  
  .gx-why-work-stat-label {
    font-size: 0.95rem;
  }
  
  .gx-why-work-stat-description {
    font-size: 0.85rem;
  }
} 