.wgt-geo-why {
  padding-bottom: var(--gap-2xl-42);
  margin-bottom: var(--gap-section-120);
  background: linear-gradient(
    to top,
    color-mix(in srgb, var(--background-gray) 80%, transparent) 0%,
    color-mix(in srgb, var(--background-gray) 80%, transparent) 52%,
    color-mix(in srgb, var(--background-white) 80%, transparent) 100%
  );
}

.wgt-geo-why .home-inner {
  display: flex;
  flex-direction: column;
  gap: var(--gap-2xl-42);
  align-items: center;
}

.wgt-geo-why .home-section-head {
  align-items: center;
  width: 100%;
}

.wgt-geo-why .home-section-text {
  gap: var(--gap-md-12);
  align-items: center;
}

/* Title: 26px → 38px (375→1920) */
.wgt-geo-why .geo-why-title,
.wgt-geo-why .geo-why-title :is(h1, h2, h3, h4, h5, h6, p) {
  max-width: 808px;
  margin: 0 auto;
  color: var(--text-title);
  font-size: clamp(1.625rem, 1.443rem + 0.7767vw, 2.375rem);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-display);
  text-align: center;
}

/* Description: 14px → 16px (375→1920) */
.wgt-geo-why .geo-why-description,
.wgt-geo-why .geo-why-description p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-body);
  font-size: clamp(0.875rem, 0.8447rem + 0.1294vw, 1rem);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body);
  text-align: center;
}

.geo-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.geo-why-card {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg2-28);
  align-items: flex-start;
  justify-content: space-between;
  min-height: 200px;
  padding: var(--padding-xl-32);
  overflow: hidden;
  border: 1px solid var(--border-default-purple);
  border-radius: var(--radius-sm);
  background: var(--background-white);
}

.geo-why-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.geo-why-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Card text: 14px → 16px (375→1920) */
.geo-why-text,
.geo-why-text p {
  margin: 0;
  color: var(--text-body);
  font-size: clamp(0.875rem, 0.8447rem + 0.1294vw, 1rem);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-body);
}

@media (max-width: 992px) {
  .geo-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .geo-why-card {
    min-height: 0;
    gap: var(--gap-xl-32);
    padding: var(--gap-md-18);
  }

  .geo-why-icon {
    width: 26px;
    height: 26px;
  }

  .geo-why-text,
  .geo-why-text p {
    line-height: var(--line-height-caption);
  }
}

@media (max-width: 768px) {
  .wgt-geo-why {
    padding-bottom: var(--padding-xl-32);
    margin-bottom: var(--padding-4xl-80);
  }

  .wgt-geo-why .home-inner {
    gap: var(--gap-lg-24);
  }
}
