/* ===== HERO ===== */
.glob-hero {
  background: linear-gradient(135deg, var(--zinc-900) 0%, var(--zinc-800) 100%);
  padding: 10rem 0 8rem;
  color: white;
  position: relative;
  overflow: hidden;
}


.glob-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .glob-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.glob-hero-text .page-hero-overtitle { color: var(--emerald-400, #34d399); }

.glob-hero-text .page-hero-title {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: white;
}

.glob-hero-text .page-hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.glob-hero-img {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.glob-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== SPLIT SECTIONS ===== */
.glob-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .glob-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .glob-split--img-first .glob-split-img { order: 2; }
  .glob-split--img-first > *:not(.glob-split-img) { order: 1; }
}

.glob-split-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.glob-split-intro {
  color: var(--zinc-600);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.glob-split-img {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.glob-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== ITEM LIST ===== */
.glob-item-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.glob-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1.5px solid var(--zinc-200);
  border-left: 3px solid var(--emerald-500, #10b981);
  border-radius: 0.875rem;
  padding: 1rem 1.25rem;
  background: var(--zinc-50);
}

.glob-item-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.glob-item-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--zinc-900);
}

.glob-item-text {
  color: var(--zinc-600);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}

/* ===== STATS ===== */
.glob-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .glob-stats-grid { grid-template-columns: 1fr; }
}

.glob-stat-card {
  background: var(--zinc-50);
  border: 1.5px solid var(--zinc-200);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.glob-stat-icon { margin-bottom: 0.875rem; line-height: 0; }

.glob-stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--emerald-600, #059669);
  margin-bottom: 0.375rem;
  letter-spacing: -0.02em;
}

.glob-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--zinc-500);
  margin-bottom: 0.75rem;
}

.glob-stat-desc {
  color: var(--zinc-600);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
}

/* ===== COMPARISON TABLE ===== */
.table-wrapper { overflow-x: auto; }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.comparison-table th {
  background: var(--zinc-900, #18181b);
  color: white;
  font-weight: 700;
  text-align: left;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
}

.comparison-table th:first-child { border-radius: 0.75rem 0 0 0; }
.comparison-table th:last-child  { border-radius: 0 0.75rem 0 0; }

.comparison-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--zinc-200);
  color: var(--zinc-700);
}

.comparison-table tbody tr:hover td { background: var(--zinc-50); }

.comparison-table tr.highlight-row td {
  background: linear-gradient(135deg, #064e3b, #065f46);
  color: white;
  font-weight: 600;
}

.comparison-table tr.highlight-row td strong { color: #6ee7b7; }

/* ===== BENEFIT SECTION (DARK) ===== */
#glob-social .section-title { color: white; }

.glob-benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .glob-benefit-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.glob-benefit-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  color: white;
  margin-bottom: 0.875rem;
}

.glob-benefit-intro {
  color: rgba(255,255,255,0.65);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.glob-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.glob-benefit-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.glob-benefit-num {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  background: var(--emerald-600, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1rem;
}

.glob-benefit-item-title {
  font-weight: 700;
  color: white;
  margin-bottom: 0.3rem;
}

.glob-benefit-item-text {
  color: rgba(255,255,255,0.65);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}

.glob-benefit-img {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.glob-benefit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
