.where-section {
  position: relative;
  margin-top: -1px;
  background: var(--color1);
  padding: var(--section-padding) 1.25rem;
  overflow: hidden;
}

.where-section::before {
  content: "";
  position: absolute;
  inset: 8% -14rem auto auto;
  width: min(36rem, 80vw);
  height: min(36rem, 80vw);
  background: radial-gradient(
    circle,
    rgba(241, 167, 5, 0.12),
    rgba(241, 167, 5, 0) 68%
  );
  pointer-events: none;
}

.where-content {
  position: relative;
  width: min(100%, var(--container-width));
  margin: 0 auto;
}

.where-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.where-heading h2 {
  font-family: var(--font-title);
  font-size: clamp(4rem, 8vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.where-heading p {
  margin-top: 1.25rem;
  max-width: 680px;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  color: var(--color-text-muted);
}

.where-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.where-card {
  position: relative;
  min-height: 20rem;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(1.75rem, 3vw, 2.4rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.035)
    ),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.where-card::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 11rem;
  height: 11rem;
  border-radius: 999px;
  background: rgba(241, 167, 5, 0.08);
  pointer-events: none;
}

.where-icon {
  position: relative;
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color1);
}

.where-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  display: block;
}

.where-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.where-icon circle {
  fill: currentColor;
}

.where-card-body {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.where-card h3 {
  max-width: 17rem;
  min-height: 6.6rem;
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.where-line {
  width: 100%;
  height: 1px;
  margin: auto 0 1.35rem;
  background: rgba(255, 255, 255, 0.18);
}

.where-card p {
  color: var(--color-text-muted);
  font-weight: 600;
}

@media (max-width: 900px) {
  .where-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .where-heading p {
    margin-left: auto;
    margin-right: auto;
  }

  .where-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }

  .where-card {
    min-height: 15rem;
  }

  .where-card h3 {
    min-height: auto;
  }

  .where-line {
    margin-top: 2rem;
  }
}

@media (max-width: 520px) {
  .where-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .where-heading h2 {
    font-size: clamp(3.4rem, 17vw, 4.6rem);
  }

  .where-card {
    min-height: 14rem;
    border-radius: var(--radius-md);
  }

  .where-icon {
    width: 3rem;
    height: 3rem;
  }

  .where-card h3 {
    font-size: clamp(2.3rem, 13vw, 3rem);
  }
}
