/* --- Strategy Section --- */
.strategy-section {
  background: #fff;
  padding: 100px 25px 80px 25px;
  font-family: 'SoehneKraeftig', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.strategy-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.strategy-header {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  margin-bottom: 60px;
  align-items: flex-start;
}

.strategy-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: #1f264e;
  flex: 1;
  max-width: 650px;
}

.strategy-description {
  font-size: 20px;
  line-height: 1.4;
  color: #333;
  flex: 1;
  max-width: 500px;
}

/* Cards */
.strategy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.strategy-card {
  background: #f8f9fc;
  padding: 36px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(45, 100, 173, 0.15);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.strategy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(31, 38, 78, 0.15);
  background: #fff;
}

.card-icon {
  margin-bottom: 24px;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.card-content {
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  color: #1f264e;
  margin-bottom: 10px;
}

.card-text {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
}

/* --- Responsiveness --- */
@media (max-width: 1024px) {
  .strategy-header {
    flex-direction: column;
    gap: 30px;
    text-align: left;
  }

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

  .strategy-description {
    font-size: 18px;
  }

  .strategy-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .strategy-section {
    padding: 60px 20px;
  }

  .strategy-title {
    font-size: 30px;
    text-align: center;
  }

  .strategy-description {
    text-align: center;
    font-size: 17px;
  }

  .strategy-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Layout mobile: SVG izquierda (toda altura) | Título arriba + Texto abajo */
  .strategy-card {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 22px 20px;
    gap: 16px;
  }

  .card-icon {
    margin-bottom: 0;
    width: 44px;
    height: 44px;
    align-self: center;
  }

  .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .card-title {
    font-size: 18px;
    margin-bottom: 0;
  }

  .card-text {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 4px;
  }
}

@media (max-width: 480px) {
  .strategy-section {
    padding: 50px 15px;
  }

  .strategy-card {
    padding: 18px;
    gap: 14px;
  }

  .card-icon {
    width: 40px;
    height: 40px;
  }

  .card-title {
    font-size: 17px;
  }

  .card-text {
    font-size: 14px;
  }
}


