.strategy-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0;
}

.strategy-section::before {
  content: "";
  position: absolute;
  left: 10%;
  top: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(40, 164, 250, 1), transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

.strategy-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Content - Right */
.strategy-content {
  font-family: "Montserrat", sans-serif;
  color: #333;
}

.strategy-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 32px;
}

.strategy-title span {
  opacity: 0.3;
}

.strategy-list li {
  list-style: square;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.5px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  cursor: default;
}

.strategy-list li:hover {
  transform: translateX(6px);
}

.strategy-list li strong {
  background: linear-gradient(90deg, #28a4fa, #60d9d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.strategy-image {
  display: none;
}

.strategy-image img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 900px) {
  .strategy-image {
    display: block;
  }

  .strategy-section {
    padding: 30px 0;
  }

  .strategy-section::before {
    display: none;
  }

  .strategy-inner {
    gap: 5px;
    grid-template-columns: 1fr;
  }

  .strategy-title {
    font-size: 36px;
  }

  .strategy-list li {
    font-size: 28px;
  }
}
